У меня проблемы с локальной установкой скрипта клона groupon.
Я использую XAMPP в Windows7
Apache/2.2.17 (Win32) mod_ssl/2.2.17
OpenSSL/0.9.8o
PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1
MySQL client version: mysqlnd 5.0.7-dev - 091210 - $Revision: 304625
Вот что я пытаюсь запустить index.php:
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 80
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config.php on line 166
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\php\PEAR\Config\Container.php on line 111
Warning: require_once(DOCUMENT_ROOT/system/plugins/common.php) [function.require-once]: failed to open stream: No such file or directory in C:\Users\xxxx\Documents\Eclipse\xxxx\system\includes\library.inc.php on line 17
Fatal error: require_once() [function.require]: Failed opening required 'DOCUMENT_ROOT/system/plugins/common.php' (include_path='.;C:\xampp\php\PEAR') in C:\Users\xxxx\Documents\Eclipse\xxxx\system\includes\library.inc.php on line 17
PHP-файл начинается так:
session_start();
require_once ('config.php'); // this is the one that defines DOCUMENT_ROOT
require_once ('functions.php');
require_once ('functions_theme.php');
require_once ('fns.php');
Вот строка 17:
require_once (DOCUMENT_ROOT.'/system/plugins/common.php');
DOCUMENT_ROOT определяется следующим образом в файле config.php, который загружается ранее:
define("DOCUMENT_ROOT",$_SERVER['DOCUMENT_ROOT']);
Надеюсь, кто-то может помочь.
И ДА, файл находится в этом каталоге (уже проверил, что: P).