Jump to content

[RESOLU]Mes Alertes ne marche pas


Recommended Posts

bonjour a tous

j'ai un gros probleme avec mes alertes que ce soit dans le module mon compte ou dans la page mon compte.

quand je cherche a voir mes alertes je tombe sur 1 page blanche de ce genre Oops! This page appears broken

je sais que ce probleme a deja été abordé, mais avec les recherches je n'ai rien trouvé qui me dépanne.

voic mon code dans le fichier myalerts.php

<?php

include(dirname(__FILE__).'/../../config/config.inc.php');
include(dirname(__FILE__).'/../../header.php');


$errors = array();

if ($cookie->isLogged())
{
if (Tools::getValue('action') == 'delete')
{
$id_customer = intval($cookie->id_customer);
if (!$id_product = intval(Tools::getValue('id_product')))
$errors[] = Tools::displayError('You need a product to delete an alert');
$id_product_attribute = intval(Tools::getValue('id_product_attribute'));
$customer = new Customer($id_customer);
MailAlerts::deleteAlert($id_customer, 0, $id_product, $id_product_attribute);
}
$smarty->assign('alerts', MailAlerts::getProductsAlerts(intval($cookie->id_customer), intval($cookie->id_lang)));
}
else
$errors[] = Tools::displayError('You need to be logged to manage your alerts');

$smarty->assign('id_customer', intval($cookie->id_customer));
$smarty->assign('errors', $errors);
$smarty->display(dirname(__FILE__).'/myalerts.tpl');

include(dirname(__FILE__).'/../../footer.php');

?>

qu'est ce qui cloche ?

je suis avec le theme d'origne prestashop et avec le block mon compte 1.3

merci de votre aide

Link to comment
Share on other sites

bonjour a tous

j'ai un gros probleme avec mes alertes que ce soit dans le module mon compte ou dans la page mon compte.

quand je cherche a voir mes alertes je tombe sur 1 page blanche de ce genre Oops! This page appears broken

je sais que ce probleme a deja été abordé, mais avec les recherches je n'ai rien trouvé qui me dépanne.

voic mon code dans le fichier myalerts.php

<?php

include(dirname(__FILE__).'/../../config/config.inc.php');
include(dirname(__FILE__).'/../../header.php');


$errors = array();

if ($cookie->isLogged())
{
if (Tools::getValue('action') == 'delete')
{
$id_customer = intval($cookie->id_customer);
if (!$id_product = intval(Tools::getValue('id_product')))
$errors[] = Tools::displayError('You need a product to delete an alert');
$id_product_attribute = intval(Tools::getValue('id_product_attribute'));
$customer = new Customer($id_customer);
MailAlerts::deleteAlert($id_customer, 0, $id_product, $id_product_attribute);
}
$smarty->assign('alerts', MailAlerts::getProductsAlerts(intval($cookie->id_customer), intval($cookie->id_lang)));
}
else
$errors[] = Tools::displayError('You need to be logged to manage your alerts');

$smarty->assign('id_customer', intval($cookie->id_customer));
$smarty->assign('errors', $errors);
$smarty->display(dirname(__FILE__).'/myalerts.tpl');

include(dirname(__FILE__).'/../../footer.php');

?>

qu'est ce qui cloche ?

je suis avec le theme d'origne prestashop et avec le block mon compte 1.3

merci de votre aide


up
Link to comment
Share on other sites

bonjour a tous

j'ai un gros probleme avec mes alertes que ce soit dans le module mon compte ou dans la page mon compte.

quand je cherche a voir mes alertes je tombe sur 1 page blanche de ce genre Oops! This page appears broken

je sais que ce probleme a deja été abordé, mais avec les recherches je n'ai rien trouvé qui me dépanne.

voic mon code dans le fichier myalerts.php

<?php

include(dirname(__FILE__).'/../../config/config.inc.php');
include(dirname(__FILE__).'/../../header.php');


$errors = array();

if ($cookie->isLogged())
{
if (Tools::getValue('action') == 'delete')
{
$id_customer = intval($cookie->id_customer);
if (!$id_product = intval(Tools::getValue('id_product')))
$errors[] = Tools::displayError('You need a product to delete an alert');
$id_product_attribute = intval(Tools::getValue('id_product_attribute'));
$customer = new Customer($id_customer);
MailAlerts::deleteAlert($id_customer, 0, $id_product, $id_product_attribute);
}
$smarty->assign('alerts', MailAlerts::getProductsAlerts(intval($cookie->id_customer), intval($cookie->id_lang)));
}
else
$errors[] = Tools::displayError('You need to be logged to manage your alerts');

$smarty->assign('id_customer', intval($cookie->id_customer));
$smarty->assign('errors', $errors);
$smarty->display(dirname(__FILE__).'/myalerts.tpl');

include(dirname(__FILE__).'/../../footer.php');

?>

qu'est ce qui cloche ?

je suis avec le theme d'origne prestashop et avec le block mon compte 1.3

merci de votre aide


up


RESOLU

enfin trouvé une reponse ici http://www.prestashop.com/forums/viewreply/258573/

a bientot
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...