Without source code, I cannot say for sure, but you probalvy are doing a require() giving a relative location.
And as you are not in the root folder anymore, this location is now incorrect.
I'd suggest you to use an absolute location, like this:
PHP Code:
require($_SERVER['DOCUMENT_ROOT']."/include/tables.php");
the $_SERVER['DOCUMENT_ROOT'] translate to the file system path to your web site root directory.
In your case, /var/www/vhosts/domain.com/httpdocs
__________________
Listen to the ducky: "This is awesome!!!"
|