Hello,
I have the same problem, the plugin not work with the 4.8 WordPress’ version.
Will we see an upgrade of PHP Everywhere ?
Plugin Author
Alex
(@alexander_fuchs)
Hey guys, thanks for reporting the bug. I will look into it.
Plugin Author
Alex
(@alexander_fuchs)
Can one of you post some example code. I can’t really reproduce the problem on my installation.
Thread Starter
Ibby
(@ibby)
Sorry for taking so long to reply to this.
The issue I’m having is when connecting to a local server database using the mysql_ method. I have two functions to connect and disconnect from the db table I am retrieving information from:
/***************************************************************
/******************** Connect to Database **********************
/***************************************************************/
if(!session_id ()){
session_start();
}
function dbConnect()
{
/* conecting to the mySQL database */
$db = mysql_connect("localhost","username", "password");
mysql_error();
if(!$db)
{
echo " An Error has occurred. Unable to connect to the database.\n";
exit;
}
mysql_select_db ("db_name");
mysql_error();
return $db;
}
/***************************************************************
/******************** Disconnect to Database *******************
/***************************************************************/
function dbClose($dbConnection)
{
mysql_close($dbConnection); // Close connection to database.
}
As soon as this function is called in any page PHP, when I click ‘update’ the page will reload to a blank screen although sometimes the code is changed and saved as well.