WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
The problem is, you are to late.You have to make the website new.Or you take the PHP5.3 option for a short time. You need it to upgrade to WB 2.8.3Or you have a portable server with PHP5.6. Here you could import your website and upgrade to WB 2.8.3.Then you need PHP7.3 and upgrade to WB 2.12.2 or 2.13
// Set DB_URL function database($url = '') { // Connect to database $this->connect(); // Check for database connection error if($this->is_error()) { die($this->get_error()); } } // Connect to the database function connect() { $status = $this->db_handle = mysql_connect(DB_HOST, DB_USERNAME, DB_PASSWORD); if(mysql_error()) { $this->connected = false; $this->error = mysql_error(); } else { if(!mysql_select_db(DB_NAME)) { $this->connected = false; $this->error = mysql_error(); } else { $this->connected = true; } } return $this->connected;
<?phpdefine('DB_TYPE', 'mysql');define('DB_HOST', 'mysql.rail2trail.org');define('DB_USERNAME', 'Trf56secret');define('DB_PASSWORD', 'XXXsecretbb');define('DB_NAME', 'rail2trail');define('TABLE_PREFIX', '');define('WB_PATH', dirname(__FILE__));define('WB_URL', 'http://www.rail2trail.org');define('ADMIN_PATH', WB_PATH.'/admin');define('ADMIN_URL', 'http://www.rail2trail.org/admin');require_once(WB_PATH.'/framework/initialize.php');?>
You said you do not have PHP 5.6 there, but you need it for the step from wb2.7 to wb2.8.3.So you can only do this step with your LAMP. I would perfer make it completely local, use also the database (not remote).It is the "move from server A to server B" and later vice versa.
You are locally with PHP5.6 and the database is also locally?The upgrade stops at step2 install Droplets?right?
And why you don't use WB?Your link leads to a WP installation.