Quote Originally Posted by davewest View Post
Not having a problem with the login to bid button, but I'm still on my testing server without SSL.

in tpl_product_auction_info_display.php around line 158 is your button code. Should look like below.

Code:
   <td align="center" class="main"><?php if (!$_SESSION['customer_id']) {
       $_SESSION['navigation']->set_snapshot(); echo '<a href="' . zen_href_link(FILENAME_LOGIN) . '">' . zen_image_button(BUTTON_IMAGE_AUCTION_LOG_IN, BUTTON_AUCTION_LOG_IN_ALT) . '</a>'; } ?></td>
The above works, but to make use of ssl it should read and more then likly fix your problem it should look like below,

Code:
<td align="center" class="main"><?php if (!$_SESSION['customer_id']) {
       $_SESSION['navigation']->set_snapshot(); echo '<a href="' . zen_href_link(FILENAME_LOGIN, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_AUCTION_LOG_IN, BUTTON_AUCTION_LOG_IN_ALT) . '</a>'; } ?></td>
Of coarse ssl should be the norm, but you could force it to use non-ssl by replacing 'SSL' with 'NONSSL'
I made the changes but it didn't stop the error message.

I wondering if anyone else is having this problem because I'm only getting it in FireFox. If I login using IE 6, or 7 I don't get the error message. But, with IE7 one of my test ID's can't login to the store, it will not recognize the password. With IE6 I don't get the error message and I can sign in with both test accounts without problems. I see the error msg in FireFox on XP, and 2000. So, maybe it's FireFox that has the problem?

BTW, what table are the current bids stored in? I looked for them in the two Auction tables, and didn't see them.

Thanks
Gary