Problem installing Wordpress manually

Using Web Server, PHP, MySQL, MariaDB.
User avatar
markpaulo
Posts: 1
Joined: 13 Apr 2021, 04:56

Re: Problem installing Wordpress manually

Post 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.
User avatar
salogarzon
Posts: 3
Joined: 09 Apr 2021, 23:44

Re: Problem installing Wordpress manually

Post 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.
User avatar
mXampp
Posts: 1
Joined: 08 May 2021, 18:56

Re: Problem installing Wordpress manually

Post 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
User avatar
TMzethar
TerraMaster Team
Posts: 1128
Joined: 27 Oct 2020, 16:43

Re: Problem installing Wordpress manually

Post 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.
To contact our team, please send email to following addresses, remember to replace (at) with @:
Technical team: support(at)terra-master.com (for technical support)
Service team: service(at)terra-master.com (for purchasing, return, replacement, RMA service)
User avatar
tatay
Posts: 5
Joined: 04 May 2021, 04:27

Re: Problem installing Wordpress manually

Post 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...
User avatar
TMzethar
TerraMaster Team
Posts: 1128
Joined: 27 Oct 2020, 16:43

Re: Problem installing Wordpress manually

Post 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.
To contact our team, please send email to following addresses, remember to replace (at) with @:
Technical team: support(at)terra-master.com (for technical support)
Service team: service(at)terra-master.com (for purchasing, return, replacement, RMA service)
User avatar
dimmrus
Posts: 3
Joined: 22 Dec 2021, 05:34

Re: Problem installing Wordpress manually

Post 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
Post Reply