Hi,
In version 4.6, do I still have to run auction.mysql? When I do so, there's an error:
Error
SQL-query:
#
# Table structure for table `ec_product_auction`
#
CREATE TABLE ec_product_auction(
nid int( 10 ) unsigned NOT NULL default '0',
expires int( 11 ) NOT NULL default '0',
PRIMARY KEY ( nid )
) TYPE = MYISAM
MySQL said:
#1050 - Table 'ec_product_auction' already exist
And indeed, there is already ec_product_auction table which could have been created when I ran story.mysql
So, the sql queries are aborted ( at the line ") TYPE = MYISAM"). When I test posting an auction item there are errors:
1. Creation of item: (although when I reload the item seems to have been created)
query: INSERT INTO ec_product_auction (nid, expires) VALUES (21, 1118903512)
error:
warning: Cannot modify header information - headers already sent by (output started at /home/mysite/public_html/includes/database.mysql.inc:59) in /home/mysite/public_html/includes/common.inc on line 192.
2. Bidding on the item:
user error: Table 'mysite_drupal.ec_auction_bid' doesn't exist
query: SELECT * FROM ec_auction_bid WHERE nid = 20 ORDER BY created DESC LIMIT 0, 1 in /home/mysite/public_html/includes/database.mysql.inc on line 66.
user error: Table 'mysite_drupal.ec_auction_bid' doesn't exist