Ver Mensaje Individual
  #5 (permalink)  
Antiguo 05/03/2010, 13:25
NazCarLpa
 
Fecha de Ingreso: marzo-2009
Ubicación: España
Mensajes: 371
Antigüedad: 15 años, 1 mes
Puntos: 5
Respuesta: Ayuda con error open stream

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.