Flux d’activité

Flux d’activité de Messages

  1. tinty


    Bonjour;

    ma version de boutique est (très) ancienne et devant modifier la version php en 5.4 j'ai testé après avoir modifié mais je ne parviens plus à accéder à mon site.

    dois je changer ma boutique ou un paramétrage de celui-ci est il possible?

    Liste des modules installés :

    - MOTEUR PEEL OPEN SOURCE 3.0

    - PEEL PREMIUM 3.0

  2. djespace


    Bonjour,

    @Simon : J'ai remplacé ma ligne par celle que vous m'avez donné plus haut et cela fonctionne !

    J'ai retrouvé mon lien dans le menu du back Office, et les avis apparaissent désormais sur la fiche produit une fois ces derniers validés.

    Une fois encore, merci.

    Mais une fois encore, je m'interroge sur le fait que mes fichiers comportent des erreurs et pas chez les autres membres...!

    Je deviens fou ? lol ^_^

  3. djespace


    [HS]Mon problème sur le module systempay résolu, je vais pouvoir reprendre les autres dysfonctionnements de ma boutique. [/HS]

    Je suis donc en version 6.3.1

    Et voici la ligne correspondante au module "avis" dans mon fichier focntions_admin.php :

    
    if (is_module_avis_active ()) {
    
       $menu_items['content'][$GLOBALS['wwwroot_in_admin'] . '/modules/avis/administrer/avis.php'] = 'Gestion des avis d\'internautes';
    
      }
    
    

  4. djespace


    C'est ok, ca fonctionne !

    Merci Simon, ça n'a pas été facile mais tu as finis par trouver !

    Par contre, j'ai une question à 2 balles, mais pourquoi j' n'avais pas le paramètre id_utilisateur dans la fonction getSystempayForm de mon fichier order.php ????

    Si le module fonctionne bien chez d'autres utilisateurs, c'est qu'ils ont bien ce paramètre dans leur fichier !


  5. Bonjour,

    Ci dessous la version la plus récente de la fonction MDP :


    /**
    * Fonction utilisée pour générer un mot aléatoire
    * (sert par exemple pour le renommage des fichiers images, mot de passe utilisateur, ...)
    *
    * @param integer $chrs Fixe le nombre de caractères
    * @return
    */
    function MDP($chrs = 8)
    {
    $pwd = "";
    mt_srand(microtime_float() * 1000000);
    while (String::strlen($pwd) < $chrs) {
    $chr = chr(mt_rand(0, 255));
    // on &#233;vite les 1, i, I, o, O et 0
    if (preg_match("/^[a-hj-km-np-zA-HJ-KM-NP-Z2-9]$/i", $chr)) {
    $pwd = $pwd . $chr;
    }
    }
    return $pwd;
    }
    [/CODE] Vous pouvez remplacer la fonction de votre version par celle-ci, et ajouter la fonction
    [CODE]/**
    * microtime_float()
    *
    * @return
    */
    function microtime_float()
    {
    return array_sum(explode(' ', microtime()));
    }

    dans le même fichier.


  6. Bonjour,

    Dans le fichier lib/fonctions/order.php, vous devez modifier la ligne

               	 $output .= '<div align="center">' . getSystempayForm($order_id, $_SESSION['session_langue'], fprix($amount_to_pay, false, $com->devise, true, $com->currency_rate, false, true, '.'), $_SESSION['session_devise']['code'], $com->email, 1, '', $com->adresse_bill, $com->zip_bill, $com->ville_bill, $com->pays_bill) . '</div>';
    par
               	 $output .= '<div align="center">' . getSystempayForm($order_id, $_SESSION['session_langue'], fprix($amount_to_pay, false, $com->devise, true, $com->currency_rate, false, true, '.'), $_SESSION['session_devise']['code'], $com->email, 1, '', $com->adresse_bill, $com->zip_bill, $com->ville_bill, $com->pays_bill, $com->id_utilisateur, $com->nom_famille, $com->prenom, $com->telephone) . '</div>';

    La cause de la non mise à jour du statut de commande dans ipn.php est l'absence du paramètre $com->id_utilisateur dans la fonction getSystempayForm, ce qui fait que cette information n'est pas envoyé à systempay. La vérification faite dans le fichier ipn.php utilise l'id utilisateur pour mettre à jour la bonne commande :

    "'SELECT *

    FROM peel_commandes

    WHERE id="' . intval($bplV1->order_id) . '" AND id_utilisateur="' . intval($bplV1->cust_id) . '"

    LIMIT 1'".

    Le test sur l'id utilisateur échoue, puisque la variable $bplV1->cust_id ne contient pas l'id utilisateur. La commande n'est donc pas mis à jour. Le remplacement de la ligne d'appel à la fonction getSystempayForm doit corriger le problème.


  7. Bonjour,

    L'affichage des attributs administrables est totalement refait dans la futur version. A court terme pour votre site, le plus simple est de diminuer le nombre d'attributs sur la page comme vous l'avez fait.

    Je vous envoie par MP le fichier lib/class/Product.php de la futur version, pour que vous puissiez reprendre des éléments afin d'améliorer l'optimisation de ce fichier sur votre site.

  8. shala


    Bonjour, Simon, voila, j'ai remit le fichier attribut/fonction.php d'origine

    Mes pages produits ne s'ouvre plus ( J'ai 16 attribut activé, chacun ouvrant une liste de choix)

    http://bdi-herault.com/votre-configuration-amd-11/votre-configuration-extreme-amd-6.html

    Merci de me donné un diag sur cette erreur :

    Fatal error: Allowed memory size of 205520896 bytes exhausted (tried to allocate 45 bytes) in /home/bdi-herault/public_html/modules/attributs/fonctions.php on line 310

  9. djespace


    Et voici le log d'erreur du serveur sur les dernières 24H:

    [Wed Nov 28 17:37:59 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 12 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    
    [Wed Nov 28 17:37:59 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 13 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 17:37:59 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 14 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 17:37:59 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 15 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 17:37:59 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: id_utilisateur in /home/www/ledsboutique/modules/systempay/functions.php on line 783, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 17:37:59 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: nom_famille in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 17:37:59 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: prenom in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 17:37:59 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: telephone in /home/www/ledsboutique/modules/systempay/functions.php on line 789, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:16:02 2012] [error] [client 78.235.108.24] PHP Warning:  Missing argument 12 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:16:02 2012] [error] [client 78.235.108.24] PHP Warning:  Missing argument 13 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:16:02 2012] [error] [client 78.235.108.24] PHP Warning:  Missing argument 14 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:16:02 2012] [error] [client 78.235.108.24] PHP Warning:  Missing argument 15 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:16:02 2012] [error] [client 78.235.108.24] PHP Notice:  Undefined variable: id_utilisateur in /home/www/ledsboutique/modules/systempay/functions.php on line 783, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:16:02 2012] [error] [client 78.235.108.24] PHP Notice:  Undefined variable: nom_famille in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:16:02 2012] [error] [client 78.235.108.24] PHP Notice:  Undefined variable: prenom in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:16:02 2012] [error] [client 78.235.108.24] PHP Notice:  Undefined variable: telephone in /home/www/ledsboutique/modules/systempay/functions.php on line 789, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Wed Nov 28 21:28:03 2012] [error] [client 78.235.108.24] PHP Warning:  Missing argument 12 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/admin2012/commander.php?mode=modif&commandeid=20"]http://www.leds-bout...f&commandeid=20[/url]
    
    
    [Wed Nov 28 21:28:03 2012] [error] [client 78.235.108.24] PHP Warning:  Missing argument 13 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/admin2012/commander.php?mode=modif&commandeid=20"]http://www.leds-bout...f&commandeid=20[/url]
    
    
    [Wed Nov 28 21:28:03 2012] [error] [client 78.235.108.24] PHP Warning:  Missing argument 14 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/admin2012/commander.php?mode=modif&commandeid=20"]http://www.leds-bout...f&commandeid=20[/url]
    
    
    [Wed Nov 28 21:28:03 2012] [error] [client 78.235.108.24] PHP Warning:  Missing argument 15 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/admin2012/commander.php?mode=modif&commandeid=20"]http://www.leds-bout...f&commandeid=20[/url]
    
    
    [Wed Nov 28 21:28:03 2012] [error] [client 78.235.108.24] PHP Notice:  Undefined variable: id_utilisateur in /home/www/ledsboutique/modules/systempay/functions.php on line 783, referer: [url="http://www.leds-boutique.fr/admin2012/commander.php?mode=modif&commandeid=20"]http://www.leds-bout...f&commandeid=20[/url]
    
    
    [Wed Nov 28 21:28:03 2012] [error] [client 78.235.108.24] PHP Notice:  Undefined variable: nom_famille in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/admin2012/commander.php?mode=modif&commandeid=20"]http://www.leds-bout...f&commandeid=20[/url]
    
    
    [Wed Nov 28 21:28:03 2012] [error] [client 78.235.108.24] PHP Notice:  Undefined variable: prenom in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/admin2012/commander.php?mode=modif&commandeid=20"]http://www.leds-bout...f&commandeid=20[/url]
    
    
    [Wed Nov 28 21:28:03 2012] [error] [client 78.235.108.24] PHP Notice:  Undefined variable: telephone in /home/www/ledsboutique/modules/systempay/functions.php on line 789, referer: [url="http://www.leds-boutique.fr/admin2012/commander.php?mode=modif&commandeid=20"]http://www.leds-bout...f&commandeid=20[/url]
    
    
    [Wed Nov 28 21:53:49 2012] [error] [client 78.235.108.24] script '/home/www/ledsboutique/promoslider04.php' not found or unable to stat, referer: [url="http://www.leds-boutique.fr/"]http://www.leds-boutique.fr/[/url]
    
    
    [Thu Nov 29 09:44:13 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 12 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 09:44:13 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 13 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 09:44:13 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 14 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 09:44:13 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 15 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 09:44:13 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: id_utilisateur in /home/www/ledsboutique/modules/systempay/functions.php on line 783, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 09:44:13 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: nom_famille in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 09:44:13 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: prenom in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 09:44:13 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: telephone in /home/www/ledsboutique/modules/systempay/functions.php on line 789, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:07:46 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 12 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:07:46 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 13 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:07:46 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 14 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:07:46 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 15 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:07:46 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: id_utilisateur in /home/www/ledsboutique/modules/systempay/functions.php on line 783, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:07:46 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: nom_famille in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:07:46 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: prenom in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:07:46 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: telephone in /home/www/ledsboutique/modules/systempay/functions.php on line 789, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:19:09 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 12 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:19:09 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 13 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:19:09 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 14 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:19:09 2012] [error] [client 82.122.0.58] PHP Warning:  Missing argument 15 for getSystempayForm(), called in /home/www/ledsboutique/lib/fonctions/order.php on line 1139 and defined in /home/www/ledsboutique/modules/systempay/functions.php on line 755, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:19:09 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: id_utilisateur in /home/www/ledsboutique/modules/systempay/functions.php on line 783, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:19:09 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: nom_famille in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:19:09 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: prenom in /home/www/ledsboutique/modules/systempay/functions.php on line 784, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]
    
    
    [Thu Nov 29 10:19:09 2012] [error] [client 82.122.0.58] PHP Notice:  Undefined variable: telephone in /home/www/ledsboutique/modules/systempay/functions.php on line 789, referer: [url="http://www.leds-boutique.fr/achat/achat_maintenant.php"]http://www.leds-bout..._maintenant.php[/url]


  10. Bonjour,

    Les noms de catégories sont tronqués par la fonction str_shorten dans la fonction get_recursive_items_display du fichier lib\fonctions\display.php :


    $this_item_output .= String::str_shorten($item_name_array[$this_item], $max_length);
    [/CODE]

    Vous pouvez modifier le paramètre $max_length qui détermine la longueur du nom, défini quelques lignes au dessus.

  11. xeon


    Merci. Mais en augmentant la largeur du menu, je ne suis pas parvenu à corriger ce que je pensais corriger. En fait quand le libellé de la catégorie dépasse sans doute un certain nombre de caractères, les dernières lettres sont remplacées par trois petits points (...). Comment faire pour supprimer cette option ou simplement réduire cette limitation ?


  12. Bonjour,

    Ok, donc $r['montant'] est égal à 0. il faut donc vérifier la requête


    SELECT *
    FROM peel_commandes
    WHERE id="' . intval($bplV1->order_id) . '" AND id_utilisateur="' . intval($bplV1->cust_id) . '"
    LIMIT 1
    [/CODE]

    toujours en utilisant la fonction print_r() dans un email :

    mail('contact@leds-boutique.fr','Leds-boutique - ipn.php','SELECT * FROM peel_commandes WHERE id="' . intval($bplV1->order_id) . '" AND id_utilisateur="' . intval($bplV1->cust_id) . '" LIMIT 1"');

    Une fois la requête reçu, vous pouvez l'exécuter via PhpMyadmin pour voir ce quelle retourne.

    Vous pouvez demander vos fichiers de logs d'erreurs, et relever les lignes qui correspondent au module.


  13. Bonjour,

    Les classes CSS à modifier sont .left_column .sousMenu et, .right_column .sousMenu défini dans le fichier modeles/peel6/menu.css ligne 162. Les class plus et minus ne sont pas défini dans le code CSS. La class plus apparait dans le HTML si si il existe des sous catégories dans une catégorie du menu, la classe minus si il n'y a aucune sous catégorie. En définissant ces classes dans le fichier css, vous pouvez dissocier visuellement les catégories avec des sous catégories et celles sans.

  14. djespace


    Bonjour,

    Je ne savais pas trop si le placement de cette ligne de test était important ou non.

    Quoi qu'il en soit, je l'ai placé juste avant la fonction

    if (!isset($is_payment_validated)

    Et voila ce que j'ai reçu par mail :

    Montant de la commande => 0. Montant systempay =>1828

    Il y a donc bien un souci. Mais uniquement lors de ce test car dans le panneau d'administration, les montants des commandes sont justes.

    D'où cela vient-il ?

    je n'ai pas d'accès direct au log du serveur, mais je peux en faire la demande si besoin.

Twitter Advisto ecommerce

Facebook PEEL Shopping