opencart-logosu

Problem

Halihazırda kurulumu olan OpenCart farklı sunucuya taşındığında aşağıdaki uyarı web sayfasının header alanında belirir.

Warning: file_exists(): open_basedir restriction in effect. File(C:/vhosts/kadayifocaklari.com/http/system/../../vendor/autoload.php) is not within the allowed path(s): (C:\vhosts\kadayifocaklari.com) in C:\vhosts\kadayifocaklari.com\http\system\startup.php on line 89

Çözüm

http\system klasörü altında yer alan startup.php dosyasının 89. satırında yer alan //Autoloader alanını aşağıdaki alanla değiştirin.

// Autoloader
if (file_exists(DIR_SYSTEM . 'vendor/autoload.php')) {
 require_once(DIR_SYSTEM . 'vendor/autoload.php');
}

Yazar