Jump to content

sepete atılan ürün silinmiyor


prestagbz

Recommended Posts

merhabalar,

1.4.7.0 versiyonunda ürün sepete atıldıktan sonra silinmiyor.ajax modulunu kapatınca düzeliyor.

başka bir sorunumda mesafeli satış sözleşmesini sipariş sırasında oku dediğimde https hatası oluyor.

 

bunların çözümünü bileniniz varmı?

Link to comment
Share on other sites

/classes/FrontController.php satır#87'de aşağıda yazdığım kodu bulun ve silin. Sonucu bildirirseniz sevinirim.

 

Silinecek kod:

 

else if (Configuration::get('PS_SSL_ENABLED') AND Tools::usingSecureMode() AND !($this->ssl))
{
header('HTTP/1.1 301 Moved Permanently');
header('Location: '.Tools::getShopDomain(true).$_SERVER['REQUEST_URI']);
exit();
}

Link to comment
Share on other sites

Sepet için de şunu yapar mısınız?

 

/header.php dosyasını açın ve aşağıdaki iki satırı bulun :

 

$controller = new FrontController();
$controller->displayHeader();

 

yukarıdaki iki satırı aşağıdaki blok ile değiştirin.

 

// Save the value of $useSSL ($useSSL will be overwritten by FrontController::__contruct())
$hackSSL = false;
if (isset($useSSL) and $useSSL)
   $hackSSL = true;

$controller = new FrontController();

// If $useSSL was set to "true", then overwrite its value to true
if ($hackSSL)
   $useSSL = $controller->ssl = true;

$controller->displayHeader();

  • Like 1
Link to comment
Share on other sites

Şu durumda bende şimdilik çözümler tükendi. Son değişikliği geri alalım. Yeni bir şey bulursam haber veririm. Okuduğum kadarıyla Prestashop'ta bu konu çin bir bug fix açılmış. 1.4.7.1'de düzelir.

 

Geçici önerim ajaxı kapatabilir ya da 1.4.6.2'ye dönebilirsiniz. O versiyonda sorun yok. Bu durum Prestashop'ın genel problemi. Çok hızlı versiyon güncellendiğinden testleri production'da yapıyorlar. Amatörce ama buna dur diyen de yok. Bu nedenle yeni versiyonları ve özellikle betaları kendiniz test etmedikçe yüklememelisiniz.

  • 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...