Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

Не заходит в админку


Benjamin

Recommended Posts

Версия магазина: ocStore v1.0.1

Изменения не вносились.

Хостинг у sprinthost.ru

.

Проблема:

Не могу попасть в административную часть сайта. Можете сами проверить, http://веб-шоппинг.рф/admin

Надіслати
Поділитися на інших сайтах


Не знаю как включить отображение ошибок на сервере, поэтому покажу вам .htaccess:

# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.

# 2. In your opencart directory rename htaccess.txt to .htaccess.

# For any support issues please visit: http://www.opencart.com

Options +FollowSymlinks

# Prevent Directoy listing

Options -Indexes

# Prevent Direct Access to files

<FilesMatch ".(tpl|ini|log)">

Order deny,allow

Deny from all

</FilesMatch>

# SEO URL Settings

RewriteEngine On

# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/

RewriteBase /

RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]

RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]

RewriteRule ^yandexmarket.xml$ index.php?route=feed/yandex_market [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

### Additional Settings that may need to be enabled for some servers

### Uncomment the commands by removing the # sign in front of it.

### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.

# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:

# php_flag register_globals off

# 2. If your cart has magic quotes enabled, This may work to disable it:

# php_flag magic_quotes_gpc Off

# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try

# php_value upload_max_filesize 999M

# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value post_max_size 999M

# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value max_execution_time 200

# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value max_input_time 200

Надіслати
Поділитися на інших сайтах


Не понятно почему у Вас вообще из админксого файла вызывается файл модели продукта из фронт-енда. Наверное как-то не так установили. Попробуйте перезалить папку /admin/ из дистрибутива.

Надіслати
Поділитися на інших сайтах


Вот мои пути, помогите что здесь может быть неправильного:

1)config.php

<?php

// HTTP

define('HTTP_SERVER', 'http://xn----9sbcghu9agja0h.xn--p1ai/');

define('HTTP_IMAGE', 'http://xn----9sbcghu9agja0h.xn--p1ai/image/');

define('HTTP_ADMIN', 'http://xn----9sbcghu9agja0h.xn--p1ai/admin/');

// HTTPS

define('HTTPS_SERVER', 'http://xn----9sbcghu9agja0h.xn--p1ai/');

define('HTTPS_IMAGE', 'http://xn----9sbcghu9agja0h.xn--p1ai/image/');

// DIR

define('DIR_APPLICATION', '/home/w/websho/veb-shopping.rf/public_html/catalog/');

define('DIR_SYSTEM', '/home/w/websho/veb-shopping.rf/public_html/system/');

define('DIR_DATABASE', '/home/w/websho/veb-shopping.rf/public_html/system/database/');

define('DIR_LANGUAGE', '/home/w/websho/veb-shopping.rf/public_html/catalog/language/');

define('DIR_TEMPLATE', '/home/w/websho/veb-shopping.rf/public_html/catalog/view/theme/');

define('DIR_CONFIG', '/home/w/websho/veb-shopping.rf/public_html/system/config/');

define('DIR_IMAGE', '/home/w/websho/veb-shopping.rf/public_html/image/');

define('DIR_CACHE', '/home/w/websho/veb-shopping.rf/public_html/system/cache/');

define('DIR_DOWNLOAD', '/home/w/websho/veb-shopping.rf/public_html/download/');

define('DIR_LOGS', '/home/w/websho/veb-shopping.rf/public_html/system/logs/');

// DB

define('DB_DRIVER', 'mysql');

define('DB_HOSTNAME', 'localhost');

define('DB_USERNAME', 'websho_shop');

define('DB_PASSWORD', '407715466');

define('DB_DATABASE', 'websho_shop');

define('DB_PREFIX', 'oc_');

?>

2)admin/config.php

<?php

// HTTP

define('HTTP_SERVER', 'http://xn----9sbcghu9agja0h.xn--p1ai/admin/');

define('HTTP_CATALOG', 'http://xn----9sbcghu9agja0h.xn--p1ai/');

define('HTTP_IMAGE', 'http://xn----9sbcghu9agja0h.xn--p1ai/');

// HTTPS

define('HTTPS_SERVER', 'http://xn----9sbcghu9agja0h.xn--p1ai/admin/');

define('HTTPS_IMAGE', 'http://xn----9sbcghu9agja0h.xn--p1ai/image/');

// DIR

define('DIR_APPLICATION', '/home/w/websho/veb-shopping.rf/public_html/admin/');

define('DIR_SYSTEM', '/home/w/websho/veb-shopping.rf/public_html/system/');

define('DIR_DATABASE', '/home/w/websho/veb-shopping.rf/public_html/system/database/');

define('DIR_LANGUAGE', '/home/w/websho/veb-shopping.rf/public_html/admin/language/');

define('DIR_TEMPLATE', '/home/w/websho/veb-shopping.rf/public_html/admin/view/template/');

define('DIR_CONFIG', '/home/w/websho/veb-shopping.rf/public_html/system/config/');

define('DIR_IMAGE', '/home/w/websho/veb-shopping.rf/public_html/image/');

define('DIR_CACHE', '/home/w/websho/veb-shopping.rf/public_html/system/cache/');

define('DIR_DOWNLOAD', '/home/w/websho/veb-shopping.rf/public_html/download/');

define('DIR_LOGS', '/home/w/websho/veb-shopping.rf/public_html/system/logs/');

define('DIR_CATALOG', '/home/w/websho/veb-shopping.rf/public_html/catalog/');

// DB

define('DB_DRIVER', 'mysql');

define('DB_HOSTNAME', 'localhost');

define('DB_USERNAME', 'websho_shop');

define('DB_PASSWORD', '407715466');

define('DB_DATABASE', 'websho_shop');

define('DB_PREFIX', 'oc_');

?>

Надіслати
Поділитися на інших сайтах


Вот это что?

// HTTP
define('HTTP_SERVER', 'http://xn----9sbcghu9agja0h.xn--p1ai/');
define('HTTP_IMAGE', 'http://xn----9sbcghu9agja0h.xn--p1ai/image/');
define('HTTP_ADMIN', 'http://xn----9sbcghu9agja0h.xn--p1ai/admin/');

// HTTPS
define('HTTPS_SERVER', 'http://xn----9sbcghu9agja0h.xn--p1ai/');
define('HTTPS_IMAGE', 'http://xn----9sbcghu9agja0h.xn--p1ai/image/');

Может таки xn----9sbcghu9agja0h.xn--p1ai надо поменять на veb-shopping.rf, или веб-шоппинг.рф

Надіслати
Поділитися на інших сайтах


  • 1 month later...
Надіслати
Поділитися на інших сайтах


Створіть аккаунт або увійдіть для коментування

Ви повинні бути користувачем, щоб залишити коментар

Створити обліковий запис

Зареєструйтеся для отримання облікового запису. Це просто!

Зареєструвати аккаунт

Вхід

Уже зареєстровані? Увійдіть тут.

Вхід зараз
×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.