riosrdw Posted October 29, 2018 Share Posted October 29, 2018 (edited) Bonjour, afin de pouvoir continuer à utiliser PayPal j'ai modifié chez OVH ma version PHP 5.6 en STABLE. PayPal fonctionne à nouveau mais j'ai ce bug :"Table 'nondedomaine.ps_paypal_capture' doesn't exist" Du coup je ne peux pas accéder a mes factures et voir les payements. Je suis en PS 1.5.4.1 Avez vous une idée comment résoudre ce problème ? Je suis débutant. Merci Edited October 29, 2018 by riosrdw (see edit history) Link to comment Share on other sites More sharing options...
Eolia Posted October 29, 2018 Share Posted October 29, 2018 exécutez cette requete sql dans votre phpmyadmin DROP TABLE IF EXISTS `ps_paypal_capture`; CREATE TABLE `ps_paypal_capture` ( `id_paypal_capture` int(11) NOT NULL AUTO_INCREMENT, `id_order` int(11) NOT NULL, `capture_amount` float NOT NULL, `result` text NOT NULL, `date_add` datetime NOT NULL, `date_upd` datetime NOT NULL, PRIMARY KEY (`id_paypal_capture`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 2 Link to comment Share on other sites More sharing options...
riosrdw Posted October 29, 2018 Author Share Posted October 29, 2018 Merci de votre réponse. Je suis débutant mais, voici les résultats, si j'ai bien compris le fonctionnement des requettes: Afficher la zone SQL MySQL a retourné un résultat vide (aucune ligne) (traité en 0.0004 seconde(s)) DROP TABLE IF EXISTS `ps_paypal_capture` [Éditer en ligne] [ Éditer ] [ Créer le code source PHP ] MySQL a retourné un résultat vide (aucune ligne) (traité en 0.0666 seconde(s)) CREATE TABLE `ps_paypal_capture` ( `id_paypal_capture` int(11) NOT NULL AUTO_INCREMENT, `id_order` int(11) NOT NULL, `capture_amount` float NOT NULL, `result` text NOT NULL, `date_add` datetime NOT NULL, `date_upd` datetime NOT NULL, PRIMARY KEY (`id_paypal_capture`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 [Éditer en ligne] [ Éditer ] [ Créer le code source PHP ] Link to comment Share on other sites More sharing options...
Eolia Posted October 29, 2018 Share Posted October 29, 2018 a présent votre module doit fonctionner 1 Link to comment Share on other sites More sharing options...
riosrdw Posted October 29, 2018 Author Share Posted October 29, 2018 (edited) Mais c'est formidable :-) Youpi :-) ça fonctionne ! MERCI Eolia :-) Edited October 29, 2018 by riosrdw (see edit history) 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