Jump to content

(Résolu) Bug PayPal, suite passage en PHP stable


riosrdw

Recommended Posts

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

 

Sans titre 1.jpg

Edited by riosrdw (see edit history)
Link to comment
Share on other sites

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;
  • Like 2
Link to comment
Share on other sites

Merci de votre réponse.
Je suis débutant mais, voici les résultats, si j'ai bien compris le fonctionnement des requettes:

requette.thumb.jpg.ee070911e0eddf9af3d6ab0adeb784ef.jpgrequette.thumb.jpg.ee070911e0eddf9af3d6ab0adeb784ef.jpg
Afficher la zone SQL
dot.gif MySQL a retourné un résultat vide (aucune ligne) (traité en 0.0004 seconde(s))
DROP TABLE IF EXISTS `ps_paypal_capture`
dot.gif 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
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...