wdrożenia PrestaShop Powiększenie zdjęć moduł

Błąd po wejsciu na koszyk

  • 12 Odpowiedzi
  • 7978 Wyświetleń

0 użytkowników i 1 Gość przegląda ten wątek.

*

Offline sebas1988op

  • Nowy
  • *
  • 7
  • 0
  • PrestaShop: PS
  • Status: forum
Błąd po wejsciu na koszyk
« dnia: Luty 12, 2014, 06:34:28 pm »
Witam wszystkich forumowiczów, mam problem z sklepem presta. Otóż dzisiaj cały sklep przenosiłem na nowy serwer i na nowa domene. Jak dotąd to wszystko funkcjonowało wysmienicie ... meczylem sie z tym wszystkim prawie caly dzien. Teraz odkryłem ze po kliknieciu na dodac produkt do koszyka to nie ma tej animacji a druga sprawa to jesli klikne na koszyk to wyskakuje mi pusta strona i nic dalej. Prosze was o jakas pomoc bo rece opadaja a nie chce instalowac wszystkiego na nowo skoro juz mam wiele skonfigurowane. Link


www . promocje24 . org


spacje prosze usunąć. Pozdrawiam i licze na szybka pomoc.

*

Offline Tler

  • Tubylec
  • ****
  • 193
  • 6
  • PrestaShop: PS
  • Status: forum
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #1 dnia: Luty 12, 2014, 09:26:34 pm »
Włącz może wyświetlanie błędów. I na jaki przeniosłeś hosting?

U mnie pojawia się animacja.
Blog o prestashop; szablony, hosting,  newsy.

Tanie profesjonalne szablony do PrestaShop: SPRAWDŹ

*

Offline sebas1988op

  • Nowy
  • *
  • 7
  • 0
  • PrestaShop: PS
  • Status: forum
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #2 dnia: Luty 13, 2014, 01:23:01 pm »
A wiec tak, błąd wyświetlany przy klinknięciu w koszyk :


Fatal error[/size]: Class 'ParentOrderController' not found in [/size]/controllers/front/OrderController.php[/size] on line [/size]28


[/size]A tak wygląda zapis pliku OrderController.php



[/size]<?php/** 2007-2013 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 license@prestashop.com 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 <contact@prestashop.com>*  @copyright  2007-2013 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 OrderControllerCore extends ParentOrderController{   public $step;   /**    * Initialize order controller    * @see FrontController::init()    */   public function init()   {      global $orderTotal;      parent::init();      $this->step = (int)(Tools::getValue('step'));      if (!$this->nbProducts)         $this->step = -1;            // If some products have disappear      if (!$this->context->cart->checkQuantities())      {         $this->step = 0;         $this->errors[] = Tools::displayError('An item in your cart is no longer available in this quantity. You cannot proceed with your order until the quantity is adjusted.');      }      // Check minimal amount      $currency = Currency::getCurrency((int)$this->context->cart->id_currency);      $orderTotal = $this->context->cart->getOrderTotal();      $minimal_purchase = Tools::convertPrice((float)Configuration::get('PS_PURCHASE_MINIMUM'), $currency);      if ($this->context->cart->getOrderTotal(false, Cart::ONLY_PRODUCTS) < $minimal_purchase && $this->step > 0)      {         $this->step = 0;         $this->errors[] = sprintf(            Tools::displayError('A minimum purchase total of %1s (tax excl.) is required in order to validate your order, current purchase total is %2s (tax excl.).'),            Tools::displayPrice($minimal_purchase, $currency), Tools::displayPrice($this->context->cart->getOrderTotal(false, Cart::ONLY_PRODUCTS), $currency)         );      }      if (!$this->context->customer->isLogged(true) && in_array($this->step, array(1, 2, 3)))      {         $back_url = $this->context->link->getPageLink('order', true, (int)$this->context->language->id, array('step' => $this->step, 'multi-shipping' => (int)Tools::getValue('multi-shipping')));         $params = array('multi-shipping' => (int)Tools::getValue('multi-shipping'), 'display_guest_checkout' => (int)Configuration::get('PS_GUEST_CHECKOUT_ENABLED'), 'back' => $back_url);         Tools::redirect($this->context->link->getPageLink('authentication', true, (int)$this->context->language->id, $params));      }      if (Tools::getValue('multi-shipping') == 1)         $this->context->smarty->assign('multi_shipping', true);      else         $this->context->smarty->assign('multi_shipping', false);      if ($this->context->customer->id)         $this->context->smarty->assign('address_list', $this->context->customer->getAddresses($this->context->language->id));      else         $this->context->smarty->assign('address_list', array());   }   public function postProcess()   {      // Update carrier selected on preProccess in order to fix a bug of      // block cart when it's hooked on leftcolumn      if ($this->step == 3 && Tools::isSubmit('processCarrier'))         $this->processCarrier();   }   /**    * Assign template vars related to page content    * @see FrontController::initContent()    */   public function initContent()   {      parent::initContent();      if (Tools::isSubmit('ajax') && Tools::getValue('method') == 'updateExtraCarrier')      {         // Change virtualy the currents delivery options         $delivery_option = $this->context->cart->getDeliveryOption();         $delivery_option[(int)Tools::getValue('id_address')] = Tools::getValue('id_delivery_option');         $this->context->cart->setDeliveryOption($delivery_option);         $this->context->cart->save();         $return = array(            'content' => Hook::exec(               'displayCarrierList',               array(                  'address' => new Address((int)Tools::getValue('id_address'))               )            )         );         die(Tools::jsonEncode($return));      }      if ($this->nbProducts)         $this->context->smarty->assign('virtual_cart', $this->context->cart->isVirtualCart());      // 4 steps to the order      switch ((int)$this->step)      {         case -1;            $this->context->smarty->assign('empty', 1);            $this->setTemplate(_PS_THEME_DIR_.'shopping-cart.tpl');         break;         case 1:            $this->_assignAddress();            $this->processAddressFormat();            if (Tools::getValue('multi-shipping') == 1)            {               $this->_assignSummaryInformations();               $this->context->smarty->assign('product_list', $this->context->cart->getProducts());               $this->setTemplate(_PS_THEME_DIR_.'order-address-multishipping.tpl');            }            else               $this->setTemplate(_PS_THEME_DIR_.'order-address.tpl');         break;         case 2:            if (Tools::isSubmit('processAddress'))               $this->processAddress();            $this->autoStep();            $this->_assignCarrier();            $this->setTemplate(_PS_THEME_DIR_.'order-carrier.tpl');         break;         case 3:            // Check that the conditions (so active) were accepted by the customer            $cgv = Tools::getValue('cgv') || $this->context->cookie->check_cgv;            if (Configuration::get('PS_CONDITIONS') && (!Validate::isBool($cgv) || $cgv == false))               Tools::redirect('index.php?controller=order&step=2');            Context::getContext()->cookie->check_cgv = true;            // Check the delivery option is set            if (!$this->context->cart->isVirtualCart())            {               if (!Tools::getValue('delivery_option') && !Tools::getValue('id_carrier') && !$this->context->cart->delivery_option && !$this->context->cart->id_carrier)                  Tools::redirect('index.php?controller=order&step=2');               elseif (!Tools::getValue('id_carrier') && !$this->context->cart->id_carrier)               {                  $deliveries_options = Tools::getValue('delivery_option');                  if (!$deliveries_options) {                     $deliveries_options = $this->context->cart->delivery_option;                  }                  foreach ($deliveries_options as $delivery_option)                     if (empty($delivery_option))                        Tools::redirect('index.php?controller=order&step=2');               }            }            $this->autoStep();            // Bypass payment step if total is 0            if (($id_order = $this->_checkFreeOrder()) && $id_order)            {               if ($this->context->customer->is_guest)               {                  $order = new Order((int)$id_order);                  $email = $this->context->customer->email;                  $this->context->customer->mylogout(); // If guest we clear the cookie for security reason                  Tools::redirect('index.php?controller=guest-tracking&id_order='.urlencode($order->reference).'&email='.urlencode($email));               }               else                  Tools::redirect('index.php?controller=history');            }            $this->_assignPayment();            // assign some informations to display cart            $this->_assignSummaryInformations();            $this->setTemplate(_PS_THEME_DIR_.'order-payment.tpl');         break;         default:            $this->_assignSummaryInformations();            $this->setTemplate(_PS_THEME_DIR_.'shopping-cart.tpl');         break;      }      $this->context->smarty->assign(array(         'currencySign' => $this->context->currency->sign,         'currencyRate' => $this->context->currency->conversion_rate,         'currencyFormat' => $this->context->currency->format,         'currencyBlank' => $this->context->currency->blank,      ));   }   protected function processAddressFormat()   {      $addressDelivery = new Address((int)$this->context->cart->id_address_delivery);      $addressInvoice = new Address((int)$this->context->cart->id_address_invoice);      $invoiceAddressFields = AddressFormat::getOrderedAddressFields($addressInvoice->id_country, false, true);      $deliveryAddressFields = AddressFormat::getOrderedAddressFields($addressDelivery->id_country, false, true);      $this->context->smarty->assign(array(         'inv_adr_fields' => $invoiceAddressFields,         'dlv_adr_fields' => $deliveryAddressFields));   }   /**    * Order process controller    */   public function autoStep()   {      if ($this->step >= 2 && (!$this->context->cart->id_address_delivery || !$this->context->cart->id_address_invoice))         Tools::redirect('index.php?controller=order&step=1');      if ($this->step > 2 && !$this->context->cart->isVirtualCart() && count($this->context->cart->getDeliveryOptionList()) == 0)         Tools::redirect('index.php?controller=order&step=2');      $delivery = new Address((int)$this->context->cart->id_address_delivery);      $invoice = new Address((int)$this->context->cart->id_address_invoice);      if ($delivery->deleted || $invoice->deleted)      {         if ($delivery->deleted)            unset($this->context->cart->id_address_delivery);         if ($invoice->deleted)            unset($this->context->cart->id_address_invoice);         Tools::redirect('index.php?controller=order&step=1');      }   }   /**    * Manage address    */   public function processAddress()   {      if (!Tools::getValue('multi-shipping'))         $this->context->cart->setNoMultishipping();      $same = Tools::isSubmit('same');      if(!Tools::getValue('id_address_invoice', false) && !$same)         $same = true;      if (!Customer::customerHasAddress($this->context->customer->id, (int)Tools::getValue('id_address_delivery'))         || (!$same && Tools::getValue('id_address_delivery') != Tools::getValue('id_address_invoice')            && !Customer::customerHasAddress($this->context->customer->id, (int)Tools::getValue('id_address_invoice'))))         $this->errors[] = Tools::displayError('Invalid address', !Tools::getValue('ajax'));      else      {         $this->context->cart->id_address_delivery = (int)Tools::getValue('id_address_delivery');         $this->context->cart->id_address_invoice = $same ? $this->context->cart->id_address_delivery : (int)Tools::getValue('id_address_invoice');         CartRule::autoRemoveFromCart($this->context);         CartRule::autoAddToCart($this->context);         if (!$this->context->cart->update())            $this->errors[] = Tools::displayError('An error occurred while updating your cart.', !Tools::getValue('ajax'));         if (!$this->context->cart->isMultiAddressDelivery())            $this->context->cart->setNoMultishipping(); // If there is only one delivery address, set each delivery address lines with the main delivery address         if (Tools::isSubmit('message'))            $this->_updateMessage(Tools::getValue('message'));         // Add checking for all addresses         $address_without_carriers = $this->context->cart->getDeliveryAddressesWithoutCarriers();         if (count($address_without_carriers) && !$this->context->cart->isVirtualCart())         {            if (count($address_without_carriers) > 1)               $this->errors[] = sprintf(Tools::displayError('There are no carriers that deliver to some addresses you selected.', !Tools::getValue('ajax')));            elseif ($this->context->cart->isMultiAddressDelivery())               $this->errors[] = sprintf(Tools::displayError('There are no carriers that deliver to one of the address you selected.', !Tools::getValue('ajax')));            else               $this->errors[] = sprintf(Tools::displayError('There are no carriers that deliver to the address you selected.', !Tools::getValue('ajax')));         }      }      if ($this->errors)      {         if (Tools::getValue('ajax'))            die('{"hasError" : true, "errors" : ["'.implode('\',\'', $this->errors).'"]}');         $this->step = 1;      }      if ($this->ajax)         die(true);   }   /**    * Carrier step    */   protected function processCarrier()   {      global $orderTotal;      parent::_processCarrier();      if (count($this->errors))      {         $this->context->smarty->assign('errors', $this->errors);         $this->_assignCarrier();         $this->step = 2;         $this->displayContent();         include(dirname(__FILE__).'/../footer.php');         exit;      }      $orderTotal = $this->context->cart->getOrderTotal();   }   /**    * Address step    */   protected function _assignAddress()   {      parent::_assignAddress();      if (Tools::getValue('multi-shipping'))         $this->context->cart->autosetProductAddress();      $this->context->smarty->assign('cart', $this->context->cart);   }   /**    * Carrier step    */   protected function _assignCarrier()   {      if (!isset($this->context->customer->id))         die(Tools::displayError('Fatal error: No customer'));      // Assign carrier      parent::_assignCarrier();      // Assign wrapping and TOS      $this->_assignWrappingAndTOS();      $this->context->smarty->assign(         array(            'is_guest' => (isset($this->context->customer->is_guest) ? $this->context->customer->is_guest : 0)         ));   }   /**    * Payment step    */   protected function _assignPayment()   {      global $orderTotal;      // Redirect instead of displaying payment modules if any module are grefted on      Hook::exec('displayBeforePayment', array('module' => 'order.php?step=3'));      /* We may need to display an order summary */      $this->context->smarty->assign($this->context->cart->getSummaryDetails());      $this->context->smarty->assign(array(         'total_price' => (float)($orderTotal),         'taxes_enabled' => (int)(Configuration::get('PS_TAX'))      ));      $this->context->cart->checkedTOS = '1';      parent::_assignPayment();   }}






Patrze i patrze w ten kod ale nic nie widzę. Może coś przeoczyłem po prostu. Sprawa dopiero sie tak pokomplikowała po przeniesiu na inny serwer, wszesniej wszystko smigało elegancko. Pozdrawiam

*

Offline design4VIP

  • user
  • Mieszkaniec
  • *****
  • 3,866
  • 131
    • design4VIP z innej strony...
  • PrestaShop: PS
  • Status: Programista
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #3 dnia: Luty 13, 2014, 02:16:26 pm »
sprawdz czy aby w classes masz przekopiowane wszystkie pliki, takze zwroc uwage, czy nie zastapilo wielkich liter malymi, bo wyglada na to, ze nie widzi kontrolera z ParentOrderController
design4VIP z innej strony...

*

Offline sebas1988op

  • Nowy
  • *
  • 7
  • 0
  • PrestaShop: PS
  • Status: forum
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #4 dnia: Luty 13, 2014, 07:33:01 pm »
Sprzwdziłem pliki i wygląda na to że wszystko jest ok. Poza tym duze i małe litery też są ok. Trzeba będzie chyba głebiej pogrzebać w skrypcie ... :/ Nie mam pojęcie ci sie mogło stać. Poza tym to wszystko jak narazie funkcjonuje jak najlepiej. Zauważyłem jeszcze że po przejsciu w ten koszyk zrodlo strony wygląda bardzo puste. Nie mam pojęcia co tam poszło nie tak ... :/




*

Offline sebas1988op

  • Nowy
  • *
  • 7
  • 0
  • PrestaShop: PS
  • Status: forum
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #5 dnia: Luty 13, 2014, 07:55:23 pm »
Chyba juz wylapalem blad. Tylko nie wiem jeszcze jak go usunąc. Wiec tak, postawilem nowy inny sklep do porownania i jest tak ...


jak wejde w moim sklepie na koszyk i klikne prawym aby wyswietlic zrodlo to pokazuje tak:



<a href="http://www.promocje24.org/zamowienie" title="Pokaż mój koszyk" rel="nofollow" style="border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;">Koszyk:
         <span class="ajax_cart_quantity hidden" style="display: none;">0</span>
         <span class="ajax_cart_product_txt hidden" style="display: none;">produkt</span>
         <span class="ajax_cart_product_txt_s hidden" style="display: none;">produkty</span>
         <span class="ajax_cart_total hidden" style="display: none;">0,00 zł</span>
         <span class="ajax_cart_no_product">(pusty)</span>
         [/url]


I dziwi mnie e kieruje do folderu zamowienie skoro takiego nie posiadam
A w nowym sklepie mam tak:



<a href="/prestashop/pl/order" title="Pokaż mój koszyk" rel="nofollow" style="border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;">Koszyk:
         <span class="ajax_cart_quantity hidden">0</span>
         <span class="ajax_cart_product_txt hidden">produkt</span>
         <span class="ajax_cart_product_txt_s hidden">produkty</span>
         <span class="ajax_cart_total hidden">
                     </span>
         <span class="ajax_cart_no_product">(pusty)</span>
         [/url]


Tu leci prosto do folderu order czyli OK!


W ktrórym pliku moge zmienic ta sciezkę ?
Szukam i szukam ale tyle tych plików że nie mam pojęcie gdzie to pochowane.
Nie mam pojecia jak mogł sie link zmienic i to jeszcze tak chamsko na "zamowienia" ....
no mam nadzieje ze to jest bład ...


Pozdrawiam


A tak na boku tematu to pisze ktos z was skrypty może?
Potrzebuje kogos kto mi napisze modul a moze i pare modulow.

*

Offline design4VIP

  • user
  • Mieszkaniec
  • *****
  • 3,866
  • 131
    • design4VIP z innej strony...
  • PrestaShop: PS
  • Status: Programista
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #6 dnia: Luty 13, 2014, 08:07:49 pm »
przekonwertuj ponownie przyjazne linki z panelu presta.
design4VIP z innej strony...

*

Offline sebas1988op

  • Nowy
  • *
  • 7
  • 0
  • PrestaShop: PS
  • Status: forum
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #7 dnia: Luty 13, 2014, 08:29:14 pm »
No i mamy ... wyszło szydło z worka ...


Cała strona w panelu SEO i URL nie działa ... nie umiem dodawać edytowac tych linków itp. W co nie klikne to mi wskoczy na pustą stronę. Brak pomysłów już  ... :(

*

Offline design4VIP

  • user
  • Mieszkaniec
  • *****
  • 3,866
  • 131
    • design4VIP z innej strony...
  • PrestaShop: PS
  • Status: Programista
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #8 dnia: Luty 13, 2014, 09:19:28 pm »
wywal calkiem z katalogu glownego sklepu .htaccess
design4VIP z innej strony...

*

Offline sebas1988op

  • Nowy
  • *
  • 7
  • 0
  • PrestaShop: PS
  • Status: forum
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #9 dnia: Luty 13, 2014, 10:08:04 pm »
Nic z tego, nie ruszy ani na chwile. Może sprobuje jutro jeszcze jak bede mial chwile wgrac katalogi na nowo, ale czuje ze jak zaczne podmieniac pliki to sie juz calkiem rozsypie i wtedy tylko nowa instalacja pomoze i znowu dzien lub dwa w kosc ... ajjj ... masakra

*

Offline sebas1988op

  • Nowy
  • *
  • 7
  • 0
  • PrestaShop: PS
  • Status: forum
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #10 dnia: Luty 13, 2014, 10:37:25 pm »
No ci powiem ze lada co to bym sie poddal ale starannie wykonuje twoje polecenia a w miedzy czasie szukam odpowiedzi gdzies indziej i ci powiem calkiem przypadkiem se mysle a wyczyszcze cache w ustawieniach/wydajnosc w panelu i prosze od razu ruszylo.
Ale w SEO i URL nadal otwiera sie konsola z błedem jak chce zmienic np. stores i daje edytuj i biala strona ... nie wiem, az tak mi to do zycia nie jest juz potrzebne ale jak cos nie sprawne to nie najlepiej chyba.

*

Offline design4VIP

  • user
  • Mieszkaniec
  • *****
  • 3,866
  • 131
    • design4VIP z innej strony...
  • PrestaShop: PS
  • Status: Programista
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #11 dnia: Luty 14, 2014, 08:28:30 am »
a widzisz, jakos przy 1.5 zapominam o katalogu cache ;) w 1.4 to byla podstawa a 1.5 to juz inna bajka, ale rzeczywiscie, tak dla potomonosci, przy przenoszeniu z serwera na serwer warto przeczyscic te katalogi, no i druga sprawa, wygenerowac na nowo .htaccess, chociaz tutaj nie jest sprawa tak prosta, znaczy jest, ale nie tak intuicyjna jak w 1.4. w starszej wersji jest przycisk "generuj' w nowszej generuje sie z automatu, ale postepowanie jest proste. w PA "zapisz" i nowy .htaccess na pewno poprawnie zostal wygenerowany.
design4VIP z innej strony...

*

Offline west

  • Administrator
  • Mieszkaniec
  • *****
  • 5,285
  • 106
  • Płeć: Mężczyzna
  • Europasaz.pl
    • PrestaShop, Wordpress, SMF, Woocomerce
  • PrestaShop: 1.7
  • Status: Programista
Odp: Błąd po wejsciu na koszyk
« Odpowiedź #12 dnia: Luty 14, 2014, 08:46:46 am »
catalog cache - usuń pliki albo po prostu przegraj wszystko z czystsej instalacji
usuń plik htaccess
przez phpmyadmin w tabeli ps_configuration znajdź pole url_rewriting..... i zamień z 1 na 0
odśwież przeglądarkę
jeśli to nie pomoże włącz tryb debugowania plik config/config.inc.php linia 41 $smarty->debugging = false; zmień na $smarty->debugging = true;
podaj nam ewwentualny numer błedu - komunikat po odświeżeniu strony
MODUŁY | https://europasaz.pl |  SKLEPY INTERNETOWE | WSPARCIE TECHNICZNE | HOSTING | https://europasaz.pl