inoree 0 Posted February 2, 2019 Report Share Posted February 2, 2019 При попытке регистрации - вылетает вот такая ошибка An Internal Error Has Occurred. Error: An Internal Error Has Occurred. С чем это может быть связано? Куда смотреть, где косяк? Link to post Share on other sites
support 447 Posted February 2, 2019 Report Share Posted February 2, 2019 2 часа назад, inoree сказал: При попытке регистрации - вылетает вот такая ошибка An Internal Error Has Occurred. Error: An Internal Error Has Occurred. С чем это может быть связано? Куда смотреть, где косяк? Попробуйте для начала включить режим отладки, вот так - Может будет виден текст ошибки, что случилось. Если нет, тогда только смотреть в error log файле веб-сервера. Link to post Share on other sites
inoree 0 Posted February 3, 2019 Author Report Share Posted February 3, 2019 Сделал Вот такая проблема Class 'Customer' not found Error: An Internal Error Has Occurred. Stack Trace [internal function] → SiteController->register() CORE/Cake/Controller/Controller.php line 491 → ReflectionMethod->invokeArgs(SiteController, array) CORE/Cake/Routing/Dispatcher.php line 193 → Controller->invokeAction(CakeRequest) CORE/Cake/Routing/Dispatcher.php line 167 → Dispatcher->_invoke(SiteController, CakeRequest) APP/webroot/index.php line 92 → Dispatcher->dispatch(CakeRequest, CakeResponse) Link to post Share on other sites
support 447 Posted February 3, 2019 Report Share Posted February 3, 2019 23 минуты назад, inoree сказал: Сделал Вот такая проблема Class 'Customer' not found Error: An Internal Error Has Occurred. Stack Trace [internal function] → SiteController->register() CORE/Cake/Controller/Controller.php line 491 → ReflectionMethod->invokeArgs(SiteController, array) CORE/Cake/Routing/Dispatcher.php line 193 → Controller->invokeAction(CakeRequest) CORE/Cake/Routing/Dispatcher.php line 167 → Dispatcher->_invoke(SiteController, CakeRequest) APP/webroot/index.php line 92 → Dispatcher->dispatch(CakeRequest, CakeResponse) Файл /app/Model/Customer.php на месте?! Link to post Share on other sites
inoree 0 Posted February 3, 2019 Author Report Share Posted February 3, 2019 Да, на месте Вот его содержимое <?php App::uses('Model', 'AppModel'); class Customer extends AppModel { public $name = 'Customer'; public $hasOne = array('AddressBook' => array('dependent' => true)); public $belongsTo = array('GroupsCustomer'); public function _validationRules() { $this->validate = array( 'name' => array( 'rule' => 'notBlank', 'message' => __('Name must only contain letters and numbers.', true) ), //'password' => array( //'passwordlength' => array( //'rule' => 'notBlank', //'message' => __('Password can not be blank', true) //), //'passwordequal' => array( //'rule' => 'checkpasswords', //'message' => __('Passwords don\'t match', true) //), //), /*'email' => array ( 'email' => array( 'rule' => array('email', true), 'required' => true, 'allowEmpty' => false, 'message' => __('Please, input correct e-mail address', true) ), //'unique' => array ( //'rule' => 'isUnique', //'message' => __('This email has already been taken.', true) //), ),*/ ); } public function checkpasswords() { return !strcmp($this->data['Customer']['password'], $this->data['Customer']['retype']); } public function hashPasswords($data) { if(isset($data['Customer'])) { if (isset($data['Customer']['password'])) { $data['Customer']['password'] = Security::hash($data['Customer']['password'], 'sha1', true); } } return $data; } public function login() { } } Link to post Share on other sites
support 447 Posted February 3, 2019 Report Share Posted February 3, 2019 4 минуты назад, inoree сказал: Да, на месте А что у Вас за сайт, какой версии VamShop, откуда и когда скачивали VamShop?! По умолчанию всё работает, видимо, что-то у Вас на сайте. Link to post Share on other sites
inoree 0 Posted February 3, 2019 Author Report Share Posted February 3, 2019 6 минут назад, VaM сказал: А что у Вас за сайт, какой версии VamShop, откуда и когда скачивали VamShop?! По умолчанию всё работает, видимо, что-то у Вас на сайте. У меня вот он... https://www.codester.com/items/6830/blockchain-cms-shopping-cart Link to post Share on other sites
support 447 Posted February 3, 2019 Report Share Posted February 3, 2019 1 час назад, inoree сказал: У меня вот он... https://www.codester.com/items/6830/blockchain-cms-shopping-cart Понятно. Пришлите в личку доступ на ftp, доступ в админку. Попробую посмотреть. Link to post Share on other sites
l1ss1l 0 Posted June 13, 2020 Report Share Posted June 13, 2020 Решили проблему? у меня всё один в один Link to post Share on other sites
support 447 Posted June 13, 2020 Report Share Posted June 13, 2020 27 минут назад, l1ss1l сказал: Решили проблему? у меня всё один в один https://demo2.vamshop.ru Попробовал зарегистрироваться, ошибки не вижу. Link to post Share on other sites
Recommended Posts