Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

fostertime

Archived
  • Posts

    58
  • Joined

  • Last visited

Profile Information

  • Real Name
    Chris
  • Gender
    Male
  • Location
    Atlanta, GA

fostertime's Achievements

  1. Excellent! Glad you got it working! I hope to be right behind you once I get the orders to show up in the Admin... That's the last item to be 100% functional!
  2. What are the differences between the International Shipping settings you have and the Domestic Shipping settings?
  3. Ok, update to the above... I am not getting any errors in the response_error.log. I am getting all the new transactions, state changes, etc... in the response_message.log No errors in the Google Integration Console.
  4. OK! I updated my htaccess file in /googlecheckout/ to look like this: AuthType Basic AuthName "Google checkout Basic Authentication" AuthUserFile /home/sites/.htpasswds/.htpasswd <Limit POST> require valid-user </Limit> And it seems to be working great. I am not getting any errors on the Google Integration Console. Now. I am getting this in my response_error.log: Tue Mar 10 16:40:42 MDT 2009:- Invalid or not supported Message No orders are showing up in the Admin. However, I am getting all the XML in the response_message.log.
  5. Gotcha. Thank you for the help. I will continue to try and see if I can figure out the correct info. If I do, I'll post it here.
  6. Ok. If I delete my googlecheckout htaccess file. Everything comes up. But if I add it to the root, to catalog, etc... everything breaks... ???? Where should it go?
  7. Nope, it's in there: http://www.provatostore.com/home/googleche...hello_world.php
  8. It's in there. I just changed it to that for the post. What could it mean if I am getting an Internal Server Error even when trying to view: http://www.provatostore.com/home/googleche...logs/index.html It seems to me, like there is an issue with any directory or file under /googlecheckout/
  9. my /googlecheckout/.htaccess contains: (should there be anything else?) <<<Start--- AuthName "Google checkout Basic Authentication" AuthType Basic AuthUserFile /path/to/.htpasswds require valid-user ---End>>> my googlecheckout/logs/.htaccess contains: <Files *.log> Order Deny,Allow Deny from all Allow from localhost </Files>
  10. Here is something interesting... I put the responsehandler_test.php in the catalog/googlecheckout/ directory ... and when I try and access it, I get an Internal Server Error Message. When I put the responsehandler_test.php in the /catalog/ directory ... it works fine. Does anyone know if they have any specific settings within the /googlecheckout/.htaccess file?
  11. This is actually in the /googlecheckout/logs/ directory not the /googlecheckout/ directory
  12. I think you should add one! :) I'll donate a couple bucks! :)
  13. Would it cause a problem if there was an .htaccess file in the /googlecheckout/ directory with these parameters: <Files *.log> Order Deny,Allow Deny from all Allow from localhost </Files>
  14. Would it be helpful to remove the // tags on the following within the responsehandler.php? To see what happens? // Error handler function // Used to handle errors and log them in the GC log files // function ErrorHandler($errno, $errstr, $errfile, $errline){ // global $Gresponse; // switch ($errno) { // case E_USER_ERROR: // $err = "USER ERROR: [$errno] $errstr\n" // . " Fatal error on line $errline in file $errfile\n" // . "Process aborted\n"; // $Gresponse->log->logError($err); // $Gresponse->SendServerErrorStatus($err); // break; // case E_USER_WARNING: // $err = "WARNING: [$errno] $errstr\n" // . " Error on line $errline in file $errfile\n" // . "Process aborted\n"; // $Gresponse->log->logError($err); // $Gresponse->SendServerErrorStatus($err); // break; // // case E_USER_NOTICE: // $err = "NOTICE: [$errno] $errstr\n" // . " Error on line $errline in file $errfile\n" // . "Process continues.\n"; // $Gresponse->log->logError($err); // $Gresponse->SendServerErrorStatus($err); // break; // default: // $err = "Unknown error type: [$errno] $errstr\n" // . " Error on line $errline in file $errfile\n" // . "Process continues.\n"; // $Gresponse->log->logError($err); // $Gresponse->SendServerErrorStatus($err); // break; // } // // /* Don't execute PHP internal error handler */ // return true; //}
×
×
  • Create New...