Algo así:
Antes:
Código PHP:
$sw_root_path = 'http://xxx.xxxxxx.com/reg.php';
include($sw_root_path . 'extension.inc.php');
include($sw_root_path . 'common.' . $phpEx);
Después:
Código PHP:
$sw_root_path = 'http://xxx.xxxxxx.com/reg.php';
include('/var/www/vhosts/xxxxxxxx.com/subdomains/xxxxx/httpdocs/extension.inc.php');
include('/var/www/vhosts/xxxxxxxx.com/subdomains/xxxxx/httpdocs/common.php');
O de esta otra:
Código PHP:
$sw_root_path = './';
include('/var/www/vhosts/xxxxxxxx.com/subdomains/xxxxx/httpdocs/extension.inc.php');
include('/var/www/vhosts/xxxxxxxx.com/subdomains/xxxxx/httpdocs/common.php');
Gracias por la ayuda.