Page 2 of 2

Re: Problem installing Wordpress manually

Posted: 13 Apr 2021, 05:00
by markpaulo
Make sure Apache and MySQL services in the XAMPP control panel are up and running.

Apply this code once you are done with Installation throug XAMPP:

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'newwpsite' );
/** MySQL database username */
define( 'DB_USER', 'root' );
/** MySQL database password */
define( 'DB_PASSWORD', '' );

Furthermore, You can go with managed WordPress hosting that offers 1 click installation which I am using, Its more easier to install there in 5 minutes.

Re: Problem installing Wordpress manually

Posted: 14 Apr 2021, 00:04
by salogarzon
I have a similar problem: unable to make mysqli load in apache.
This is what i've found in /var/log/http_error_log:
PHP Warning: PHP Startup: Unable to load dynamic library 'mysqli.so' (tried: /usr/lib/php/mysqli.so (/usr/lib/php/mysqli.so: undefined symbol: mysqlnd_global_stats), /usr/lib/php/mysqli.so.so (/usr/lib/php/mysqli.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
The library is in the path /usr/lib/php but unable to load. Someone, perhaps, can explain what's happening.
Many tanks.

Re: Problem installing Wordpress manually

Posted: 08 May 2021, 19:02
by mXampp
I, personally, would never recommend installing a functional server, with access to my network with Xampp, since it is made to do it on local computers. Still, you can try to install the latest versions of mysql separately.

Here is a url in case you are interested in the process from scratch, I hope it helps you: Install Wordpress on Xampp

Re: Problem installing Wordpress manually

Posted: 10 May 2021, 18:47
by TMzethar
Regarding the missing issue of mysqli.so, we have submitted a modification. You can update the TOS version or the PHP application version to make it work again.

Re: Problem installing Wordpress manually

Posted: 11 May 2021, 07:17
by tatay
{L_BUTTON_AT}TMzethar

Do you have the same update for ARM based F4-210???
There is NO update available from TOS automatic update....
4.2.08-2101111540

Thanks!

OR a link to the patch...
OR the requires patch detail...

Re: Problem installing Wordpress manually

Posted: 12 May 2021, 18:18
by TMzethar
{L_BUTTON_AT}tatay

The latest version has not yet implemented this fix, it is expected to be fixed on TOS 4.3.x.

Re: Problem installing Wordpress manually

Posted: 25 Jan 2022, 04:08
by dimmrus
hello, you must edit /etc/nginx/nginx.conf
dont edit the " listen 8181; " but create new server inside this config.

and add these lines :
#HTTP server
#DIMM kk show instead of download ;
types {
text/plain py;
text/plain bat;

}


server {
listen 80;
server_name dimm_V2;
#dimm fix for ngingx permalinks fix
if (!-e $request_filename) { rewrite ^.* /index.php break; }
# Upload form should be submitted to this location
location /uploads {
}
#client_body_in_file_only clean;
client_max_body_size 100G;
client_body_buffer_size 128K;
large_client_header_buffers 4 16k;
client_body_timeout 120;
client_header_timeout 120;
sendfile on;
send_timeout 300s;



root /mnt/yourfolders/here/;
index index.html index.htm index.php;

access_log /var/log/nginx/access.log;
#error_page 404 /404.html;
include conf.d/*.conf;
include nginx-extend.conf;

# phpBB3, important Flag...don't delete me!!!
location ~ \.php(.*)$ {
keepalive_timeout 75;
fastcgi_pass unix_php_cgi_sock;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
fastcgi_param HTTPS off;
}
}
#HTTP server

#DIMM end