PHP Fatal error: 1064:You have an error in your SQL syntax; near '(id INT(11) AUTO_INCREMENT PRIMARY KEY,customers_id INT(11),Stripe_Customers_...' at line 1 :: CREATE TABLE zen_ stripe(id INT(11) AUTO_INCREMENT PRIMARY KEY,customers_id INT(11),Stripe_Customers_id VARCHAR(32)) ==> (as called by) /path/includes/modules/payment/stripe.php on line 216
I notice that above there is a space in "zen_ stripe"
Line 216 of stripe.php:
PHP Code:
$db-> execute("CREATE TABLE " . DB_PREFIX . " stripe(id INT(11) AUTO_INCREMENT PRIMARY KEY,customers_id INT(11),Stripe_Customers_id VARCHAR(32))");
Should there be a space after the " before stripe( above?
Comparing it to the stripe 1.5.8, the space is not there
I removed the space,.... that was the issue. How can I be the first to find this older typo?
Bookmarks