Re: Auction Product Type

Originally Posted by
AndyII
try using sendmail, phpmail isnt a practical choice if you need to send out large amounts of email anyway. this has always resolved my problems.
and for the member that had sql troubles,
I have found that using admin function of applying a sql patch will add the table prefix to the patch when in actuality the mod is looking for its table,
example
the table gets named "zen_my_new_table", the mod is looking for
just "my_new_table"
a quick way to fix this is go to phpmyadmin and run the sql there
I didn't see a problem not finding it's table. If it is, check out the includes/extra_datafiles/product_auctions.php it should have a table prefix.. as below.
Code:
define('TABLE_PRODUCTS_AUCTION', DB_PREFIX . 'products_auctions');
define('TABLE_PRODUCT_AUCTION_EXTRA', DB_PREFIX . 'product_auction_extra');
Dave
Always forward thinking... Lost my mind!
Bookmarks