WordPress 1.5.2 should be installed on the system with PHP version 4.1 or higher and MySQL version 3.23.23 or higher.
WordPress need function phpversion. If the server providers shield the function. you should edit the file wp-setting.php
, and you should find the following code, and add /* to its beginning and add */ to its end.
if ( !(phpversion() >= '4.1') )
die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.1' );
If some server providers reject romote connection, but they often provide MySQLPhpAdmin, you can backup you database to your local/own computer. and if the server losts, you can recover some data from your backup. following the steps:
- open the admin site, input your name and pwd to get in;
- select export;
- In the small window of Export, check SQL; in SQL option, select
Add DROP DATABASE
, selectStructure
,Add 'drop table'
,Add AUTO_INCREMENT value
,Enclose table and field names with backquotes
, Select theCreation/Update/Check dates
, Select Data andComplete inserts
, Select Export typeINSERT
- Select
Save as file
, and write your name of file you want, and checkNone
in Compression window - Press the button
Go
.
Then you get a little window and save your database file.