Jump to content

Пустая страница при переносе проекта с Windows serv на linux (apache)


Recommended Posts

Есть проект на Window (apache), я его переношу на linux, но в результате выводится только белая страница в браузере и все.
Как переношу, копирую все файлы, ставлю рекурсивно права 0777 на все, копирую базу, правлю конфиг к бд

 

результат всегда один, просто белая страница на екране, без ошибок

Link to comment
Share on other sites

все равно ничего не отображается, поковыряв понял что скрипт валится в конфиге config/config.inc.php
на строке $context->shop = Shop::initialize();

из конфига:
 

/* Initialize the current Shop */
try 
{
$context->shop = Shop::initialize();
if (Tools::isEmpty($theme_name = $context->shop->getTheme()) && !defined('_PS_ADMIN_DIR_'))
  throw new PrestaShopException(Tools::displayError('Current theme unselected. Please check your theme configuration.'));
}
catch (PrestaShopException $e)
{
$e->displayMessage();
}
 
модет кто модет подсказать? первый раз занимаюсь переносом сайта на prestashop
Link to comment
Share on other sites

Проблемма решена! 

1. в админке магазина (до переноса) поменять домен на новый в разделе "SEO & URLs"
2. скопировал файлы на другой сервер

3. скопировал базу

4. отредактировал файл config/config.inc.php

define(’_DB_SERVER_’‘адрес_сервера_бд‘);
define(’_DB_TYPE_’‘MySQL’);
define(’_DB_NAME_’‘имя_бд‘);
define(’_DB_USER_’‘пользователь‘);
define(’_DB_PASSWD_’‘пароль‘);

 

5. настроил права на файлы

chmod 777 config
chmod 777 tools/smarty/compile
chmod 777 tools/smarty/cache
chmod 777 tools/smarty_v2/cache
chmod 777 tools/smarty_v2/compile
chmod 777 sitemap.xml
chmod 777 log
chmod 777 img -R
chmod 777 mails -R
chmod 777 modules -R
chmod 777 themes/prestashop/lang -R
chmod 777 themes/prestashop/cache -R
chmod 777 translations -R
chmod 777 upload -R
chmod 777 download -R

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...