Uniq Posted August 2, 2014 Share Posted August 2, 2014 Hi I went into my seo and url tab. Anything I click on just shows this in the address bar but will not load. I tried using a different browser and still won't load? http://www.uniqjewelrydesigns.com/mg217/index.php?controller=AdminMeta&id_meta=4&updatemeta&token=88e087ae4523b65800719aa4d64d6c10 Link to comment Share on other sites More sharing options...
El Patron Posted August 3, 2014 Share Posted August 3, 2014 enable PrestaShop php error reporting, revisit page, note error, search on that using search engine PrestaShop (different parts of error message) to see if similar issue already posted/solved. http://www.prestashop.com/forums/topic/224525-how-to-turn-on-error-reporting-for-debug-information/ Link to comment Share on other sites More sharing options...
Uniq Posted August 3, 2014 Author Share Posted August 3, 2014 Okay Thank you Link to comment Share on other sites More sharing options...
Uniq Posted August 3, 2014 Author Share Posted August 3, 2014 This is the error I'm getting. Strict Standards: Declaration of Dispatcher::loadRoutes() should be compatible with DispatcherCore::loadRoutes($id_shop = NULL) in /home/uniqje6/public_html/override/classes/Dispatcher.php on line 16Parse error: syntax error, unexpected '{', expecting function (T_FUNCTION) in /home/uniqje6/public_html/override/controllers/front/AddressController.php on line 6 Link to comment Share on other sites More sharing options...
El Patron Posted August 4, 2014 Share Posted August 4, 2014 This is the error I'm getting. Strict Standards: Declaration of Dispatcher::loadRoutes() should be compatible with DispatcherCore::loadRoutes($id_shop = NULL) in /home/uniqje6/public_html/override/classes/Dispatcher.php on line 16 Parse error: syntax error, unexpected '{', expecting function (T_FUNCTION) in /home/uniqje6/public_html/override/controllers/front/AddressController.php on line 6 you have added either manually or via some module bad file in: override/controllers/front/AddressController.php you will need to look at AddressController.php and determine why it is there, i.e. related to some extension of native PrestaShop address handling. Link to comment Share on other sites More sharing options...
Uniq Posted August 4, 2014 Author Share Posted August 4, 2014 This is what I have in the file but have no idea what it could be. I have not added anything manually or any new modules since the upgrade from 1.54. and everything was working then. Any ideas on what else I can do? Thanks <?php /* * 2007-2014 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class AddressControllerCore extends FrontController { public $auth = true; public $guestAllowed = true; public $php_self = 'address'; public $authRedirection = 'addresses'; public $ssl = true; /** * @var Address Current address */ protected $_address; /** * Set default medias for this controller */ public function setMedia() { parent::setMedia(); $this->addJS(array( _THEME_JS_DIR_.'tools/vatManagement.js', _THEME_JS_DIR_.'tools/statesManagement.js', _PS_JS_DIR_.'validate.js' )); } /** * Initialize address controller * @see FrontController::init() */ public function init() { parent::init(); // Get address ID $id_address = 0; if ($this->ajax && Tools::isSubmit('type')) { if (Tools::getValue('type') == 'delivery' && isset($this->context->cart->id_address_delivery)) $id_address = (int)$this->context->cart->id_address_delivery; else if (Tools::getValue('type') == 'invoice' && isset($this->context->cart->id_address_invoice) && $this->context->cart->id_address_invoice != $this->context->cart->id_address_delivery) $id_address = (int)$this->context->cart->id_address_invoice; } else $id_address = (int)Tools::getValue('id_address', 0); // Initialize address if ($id_address) { $this->_address = new Address($id_address); if (Validate::isLoadedObject($this->_address) && Customer::customerHasAddress($this->context->customer->id, $id_address)) { if (Tools::isSubmit('delete')) { if ($this->_address->delete()) { if ($this->context->cart->id_address_invoice == $this->_address->id) unset($this->context->cart->id_address_invoice); if ($this->context->cart->id_address_delivery == $this->_address->id) { unset($this->context->cart->id_address_delivery); $this->context->cart->updateAddressId($this->_address->id, (int)Address::getFirstCustomerAddressId(Context::getContext()->customer->id)); } Tools::redirect('index.php?controller=addresses'); } $this->errors[] = Tools::displayError('This address cannot be deleted.'); } } elseif ($this->ajax) exit; else Tools::redirect('index.php?controller=addresses'); } } /** * Start forms process * @see FrontController::postProcess() */ public function postProcess() { if (Tools::isSubmit('submitAddress')) $this->processSubmitAddress(); else if (!Validate::isLoadedObject($this->_address) && Validate::isLoadedObject($this->context->customer)) { $_POST['firstname'] = $this->context->customer->firstname; $_POST['lastname'] = $this->context->customer->lastname; $_POST['company'] = $this->context->customer->company; } } /** * Process changes on an address */ protected function processSubmitAddress() { $address = new Address(); $this->errors = $address->validateController(); $address->id_customer = (int)$this->context->customer->id; // Check page token if ($this->context->customer->isLogged() && !$this->isTokenValid()) $this->errors[] = Tools::displayError('Invalid token.'); // Check phone if (Configuration::get('PS_ONE_PHONE_AT_LEAST') && !Tools::getValue('phone') && !Tools::getValue('phone_mobile')) $this->errors[] = Tools::displayError('You must register at least one phone number.'); if ($address->id_country) { // Check country if (!($country = new Country($address->id_country)) || !Validate::isLoadedObject($country)) throw new PrestaShopException('Country cannot be loaded with address->id_country'); if ((int)$country->contains_states && !(int)$address->id_state) $this->errors[] = Tools::displayError('This country requires you to chose a State.'); if (!$country->active) $this->errors[] = Tools::displayError('This country is not active.'); $postcode = Tools::getValue('postcode'); /* Check zip code format */ if ($country->zip_code_format && !$country->checkZipCode($postcode)) $this->errors[] = sprintf(Tools::displayError('The Zip/Postal code you\'ve entered is invalid. It must follow this format: %s'), str_replace('C', $country->iso_code, str_replace('N', '0', str_replace('L', 'A', $country->zip_code_format)))); elseif(empty($postcode) && $country->need_zip_code) $this->errors[] = Tools::displayError('A Zip/Postal code is required.'); elseif ($postcode && !Validate::isPostCode($postcode)) $this->errors[] = Tools::displayError('The Zip/Postal code is invalid.'); // Check country DNI if ($country->isNeedDni() && (!Tools::getValue('dni') || !Validate::isDniLite(Tools::getValue('dni')))) $this->errors[] = Tools::displayError('The identification number is incorrect or has already been used.'); else if (!$country->isNeedDni()) $address->dni = null; } // Check if the alias exists if (!$this->context->customer->is_guest && !empty($_POST['alias']) && (int)$this->context->customer->id > 0) { $id_address = Tools::getValue('id_address'); if(Configuration::get('PS_ORDER_PROCESS_TYPE') && (int)Tools::getValue('opc_id_address_'.Tools::getValue('type')) > 0) $id_address = Tools::getValue('opc_id_address_'.Tools::getValue('type')); if (Address::aliasExist(Tools::getValue('alias'), (int)$id_address, (int)$this->context->customer->id)) $this->errors[] = sprintf(Tools::displayError('The alias "%s" has already been used. Please select another one.'), Tools::safeOutput(Tools::getValue('alias'))); } // Check the requires fields which are settings in the BO $this->errors = array_merge($this->errors, $address->validateFieldsRequiredDatabase()); // Don't continue this process if we have errors ! if ($this->errors && !$this->ajax) return; // If we edit this address, delete old address and create a new one if (Validate::isLoadedObject($this->_address)) { if (Validate::isLoadedObject($country) && !$country->contains_states) $address->id_state = 0; $address_old = $this->_address; if (Customer::customerHasAddress($this->context->customer->id, (int)$address_old->id)) { if ($address_old->isUsed()) $address_old->delete(); else { $address->id = (int)($address_old->id); $address->date_add = $address_old->date_add; } } } if ($this->ajax && Tools::getValue('type') == 'invoice' && Configuration::get('PS_ORDER_PROCESS_TYPE')) { $this->errors = array_unique(array_merge($this->errors, $address->validateController())); if (count($this->errors)) { $return = array( 'hasError' => (bool)$this->errors, 'errors' => $this->errors ); die(Tools::jsonEncode($return)); } } // Save address if ($result = $address->save()) { // Update id address of the current cart if necessary if (isset($address_old) && $address_old->isUsed()) $this->context->cart->updateAddressId($address_old->id, $address->id); else // Update cart address $this->context->cart->autosetProductAddress(); if ((bool)(Tools::getValue('select_address', false)) == true OR (Tools::getValue('type') == 'invoice' && Configuration::get('PS_ORDER_PROCESS_TYPE'))) $this->context->cart->id_address_invoice = (int)$address->id; elseif (Configuration::get('PS_ORDER_PROCESS_TYPE')) $this->context->cart->id_address_invoice = (int)$this->context->cart->id_address_delivery; $this->context->cart->update(); if ($this->ajax) { $return = array( 'hasError' => (bool)$this->errors, 'errors' => $this->errors, 'id_address_delivery' => (int)$this->context->cart->id_address_delivery, 'id_address_invoice' => (int)$this->context->cart->id_address_invoice ); die(Tools::jsonEncode($return)); } // Redirect to old page or current page if ($back = Tools::getValue('back')) { if ($back == Tools::secureReferrer(Tools::getValue('back'))) Tools::redirect(html_entity_decode($back)); $mod = Tools::getValue('mod'); Tools::redirect('index.php?controller='.$back.($mod ? '&back='.$mod : '')); } else Tools::redirect('index.php?controller=addresses'); } $this->errors[] = Tools::displayError('An error occurred while updating your address.'); } /** * Assign template vars related to page content * @see FrontController::initContent() */ public function initContent() { parent::initContent(); $this->assignCountries(); $this->assignVatNumber(); $this->assignAddressFormat(); // Assign common vars $this->context->smarty->assign(array( 'address_validation' => Address::$definition['fields'], 'one_phone_at_least' => (int)Configuration::get('PS_ONE_PHONE_AT_LEAST'), 'onr_phone_at_least' => (int)Configuration::get('PS_ONE_PHONE_AT_LEAST'), //retro compat 'ajaxurl' => _MODULE_DIR_, 'errors' => $this->errors, 'token' => Tools::getToken(false), 'select_address' => (int)Tools::getValue('select_address'), 'address' => $this->_address, 'id_address' => (Validate::isLoadedObject($this->_address)) ? $this->_address->id : 0, )); if ($back = Tools::getValue('back')) $this->context->smarty->assign('back', Tools::safeOutput($back)); if ($mod = Tools::getValue('mod')) $this->context->smarty->assign('mod', Tools::safeOutput($mod)); if (isset($this->context->cookie->account_created)) { $this->context->smarty->assign('account_created', 1); unset($this->context->cookie->account_created); } $this->setTemplate(_PS_THEME_DIR_.'address.tpl'); } /** * Assign template vars related to countries display */ protected function assignCountries() { // Get selected country if (Tools::isSubmit('id_country') && !is_null(Tools::getValue('id_country')) && is_numeric(Tools::getValue('id_country'))) $selected_country = (int)Tools::getValue('id_country'); else if (isset($this->_address) && isset($this->_address->id_country) && !empty($this->_address->id_country) && is_numeric($this->_address->id_country)) $selected_country = (int)$this->_address->id_country; else if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { // get all countries as language (xy) or language-country (wz-XY) $array = array(); preg_match("#(?<=-)\w\w|\w\w(?!-)#",$_SERVER['HTTP_ACCEPT_LANGUAGE'],$array); if (!Validate::isLanguageIsoCode($array[0]) || !($selected_country = Country::getByIso($array[0]))) $selected_country = (int)Configuration::get('PS_COUNTRY_DEFAULT'); } else $selected_country = (int)Configuration::get('PS_COUNTRY_DEFAULT'); // Generate countries list if (Configuration::get('PS_RESTRICT_DELIVERED_COUNTRIES')) $countries = Carrier::getDeliveredCountries($this->context->language->id, true, true); else $countries = Country::getCountries($this->context->language->id, true); // @todo use helper $list = ''; foreach ($countries as $country) { $selected = ($country['id_country'] == $selected_country) ? 'selected="selected"' : ''; $list .= '<option value="'.(int)$country['id_country'].'" '.$selected.'>'.htmlentities($country['name'], ENT_COMPAT, 'UTF-8').'</option>'; } // Assign vars $this->context->smarty->assign(array( 'countries_list' => $list, 'countries' => $countries, )); } /** * Assign template vars related to address format */ protected function assignAddressFormat() { $id_country = is_null($this->_address)? 0 : (int)$this->_address->id_country; $ordered_adr_fields = AddressFormat::getOrderedAddressFields($id_country, true, true); $this->context->smarty->assign('ordered_adr_fields', $ordered_adr_fields); } /** * Assign template vars related to vat number * @todo move this in vatnumber module ! */ protected function assignVatNumber() { $vat_number_exists = file_exists(_PS_MODULE_DIR_.'vatnumber/vatnumber.php'); $vat_number_management = Configuration::get('VATNUMBER_MANAGEMENT'); if ($vat_number_management && $vat_number_exists) include_once(_PS_MODULE_DIR_.'vatnumber/vatnumber.php'); if ($vat_number_management && $vat_number_exists && VatNumber::isApplicable(Configuration::get('PS_COUNTRY_DEFAULT'))) $vat_display = 2; else if ($vat_number_management) $vat_display = 1; else $vat_display = 0; $this->context->smarty->assign(array( 'vatnumber_ajax_call' => file_exists(_PS_MODULE_DIR_.'vatnumber/ajax.php'), 'vat_display' => $vat_display, )); } public function displayAjax() { if (count($this->errors)) { $return = array( 'hasError' => !empty($this->errors), 'errors' => $this->errors ); die(Tools::jsonEncode($return)); } } } Link to comment Share on other sites More sharing options...
Uniq Posted August 4, 2014 Author Share Posted August 4, 2014 (edited) I had a customer try to purchase something and after adding to cart she was not able to check out either. So seems like a few things are going on because I made an account to try to checkout and the same thing happened to me it just remains attempting to load.. Is that also a result of the file above or is this a completely different issue? Edited August 4, 2014 by Uniq (see edit history) Link to comment Share on other sites More sharing options...
El Patron Posted August 4, 2014 Share Posted August 4, 2014 I had a customer try to purchase something and after adding to cart she was not able to check out either. So seems like a few things are going on because I made an account to try to checkout and the same thing happened to me it just remains attempting to load.. Is that also a result of the file above or is this a completely different issue? this could be different issue, turn on errors as you did earlier for this problem to see if any info. I put the code you provided above into my DreamWeaver, it had no 'syntax' issue with it and it does not correlate with the error on line 6 For me anyway it is difficult to debug using the forum, you may want to seriously consider posting in job offers to find someone that can look at this more closely, there are many there that do this work everyday and i think for very reasonable fee. If you choose to post in job offers, please include link of this topic, and post job offer link back here. Link to comment Share on other sites More sharing options...
Uniq Posted August 5, 2014 Author Share Posted August 5, 2014 (edited) .Thank you !! Edited August 5, 2014 by Uniq (see edit history) 1 Link to comment Share on other sites More sharing options...
Uniq Posted August 5, 2014 Author Share Posted August 5, 2014 I fixed the shopping cart by restoring a database backup but I still have the same error with error reporting turned on. Well thank you for your responses. Link to comment Share on other sites More sharing options...
El Patron Posted August 5, 2014 Share Posted August 5, 2014 Curios as to what module you have that has the override. for testing, rename override/controllers/front/AddressController.php to override/controllers/front/_AddressController.php let us know the results 1 Link to comment Share on other sites More sharing options...
Uniq Posted August 9, 2014 Author Share Posted August 9, 2014 Curios as to what module you have that has the override. for testing, rename override/controllers/front/AddressController.php to override/controllers/front/_AddressController.php let us know the results Hi, Okay so when I made this change I was able to click on the individual links in the Seos & Urls and they worked. Do you know why that may have occurred? Link to comment Share on other sites More sharing options...
El Patron Posted August 9, 2014 Share Posted August 9, 2014 there is a module with override, the only way to know if not documented in override is to search module for that file. glad some progress made. Link to comment Share on other sites More sharing options...
Uniq Posted August 9, 2014 Author Share Posted August 9, 2014 (edited) there is a module with override, the only way to know if not documented in override is to search module for that file. glad some progress made. Yes thank you so much !! So should I disable each module one at a time to check? When I upgraded to 1.6 from 1.5 I installed it to a wrong folder. So I had to copy all the files to the correct folder. When I go to check my site on the seo online checker it seems like there are alot of errors. Could all of these errors and lag be because I copied the files into the other folder under public_html? and maybe some files did not connect correctly. Edited August 9, 2014 by Uniq (see edit history) Link to comment Share on other sites More sharing options...
El Patron Posted August 9, 2014 Share Posted August 9, 2014 it would be best to use ftp, then go to modules folder expand each module, you are looking for a folder in module folder called override if you see override folder, look inside there for AddressController.php when you find this, then you will know which module is loading it. (this of course assumes it was not put there manually) el 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now