Just upgraded a site from v10.0.2 to 10.0.3 and spent ages trying to find out why some of my pages that run php scripts on the server have stopped working.
It appears that v10.0.3 is stripping out some of my code.
I have this database connection which used to work fine.:
If I echo this
the following is displayed:
so my path information has been stripped out.
What have you done Actinic?
Anybody got a solution or workaround to this?
It appears that v10.0.3 is stripping out some of my code.
I have this database connection which used to work fine.:
PHP Code:
require_once ('../../../mysql_connect.php');
PHP Code:
<?php echo "require_once ('../../../mysql_connect.php')";?>
require_once ('mysql_connect.php')
What have you done Actinic?
Anybody got a solution or workaround to this?
Comment