Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

pacosvillage

Archived
  • Posts

    43
  • Joined

  • Last visited

Profile Information

  • Real Name
    Frank Hannigan
  • Location
    Santa Monica, California, USA
  • Interests
    I am an osommerce and development NEWBIE, I'm used to wysiwyg, so when I'm asking for help- I am really appreciating the kind of oscommerce forum responses I've gotten so far.
  • Website

pacosvillage's Achievements

  1. 1. Maybe you've got an answer for this newbie. When I go through the shipping page to payment page to checkout_confirmation page all seems to go well and no errors, then once I press "Confirm order" button the next page that comes up is the checkout_payment.php page and the url above is: https://secure.authorize.net/gateway/transact.dll. with an error message inside the page (not in the url) "There has been an error processing your credit card. Please try again (I am live in auth net and production mode in OSC) 2. I have no receipt url's or response url's setup on authorize.net in the settings section, should I do so, and what would it look like? Here's what my oscommerce/includes/configure.php look like also (I am using a sharedSSL-if that can help you understand how to help me) When I go onto oscommerce in my file manager the path inside of the mydomainname.com starts me on directory, then the path I click on is: /var/www/html/oscommerce , so I'm not sure if I've done it all right in the below configure.php's from oscommerce/admin/includes/configure.php and oscommerce/includes/configure.php: Here's the one for oscommerce/includes/configure.php: CODE Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.mydomainname.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://ns.servernamethathasSSL.com/~mydomainname.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mydomainname.com'); define('HTTPS_COOKIE_DOMAIN', 'www.mydomainname.com'); define('HTTP_COOKIE_PATH', '/oscommerce'); define('HTTPS_COOKIE_PATH', '/oscommerce'); define('DIR_WS_HTTP_CATALOG', '/oscommerce/'); define('DIR_WS_HTTPS_CATALOG', '/oscommerce/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); And here's my oscommerce/admin/includes/configure.php: CODE Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://mydomain.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com'); define('HTTPS_CATALOG_SERVER', 'https://ns.serverwithSSL.com/~mydomainname.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/oscommerce/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/virtual/site4/fst/var/www/html/oscommerce/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/oscommerce/'); // absolute path required define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
  2. Ted and all others, 1. Maybe you've got an answer for this newbie. When I go through the shipping page to payment page to checkout_confirmation page all seems to go well and no errors, then once I press "Confirm order" button the next page that comes up is the checkout_payment.php page and the url above is: https://secure.authorize.net/gateway/transact.dll. with an error message inside the page (not in the url) "There has been an error processing your credit card. Please try again (I am live in auth net and production mode in OSC) 2.Then someone on the forum told me to log onto Auth net and set my response/receipt urls, and now I don't get anything but an error page from auth net: An error occurred while trying to report this transaction to the Merchant. An e-mail has been sent to the merchant informing them of the error. The following is the result of the attempt to charge your credit card. The referrer, relay response or receipt link URL is invalid. and auth net sends me an email. So I assume I should delete the response/receitp urls to get back to the issue cause in #1 and ask for some help from someone who has auth net working (regular install mode- please) Here's what my oscommerce/includes/configure.php look like also (I am using a sharedSSL-if that can help you understand how to help me) When I go onto oscommerce in my file manager the path inside of the mydomainname.com starts me on directory, then the path I click on is: /var/www/html/oscommerce , so I'm not sure if I've done it all right in the below configure.php's from oscommerce/admin/includes and oscommerce/includes/ files : Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.mydomainname.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://ns.servernamethathasSSL.com/~mydomainname.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mydomainname.com'); define('HTTPS_COOKIE_DOMAIN', 'www.mydomainname.com'); define('HTTP_COOKIE_PATH', '/oscommerce'); define('HTTPS_COOKIE_PATH', '/oscommerce'); define('DIR_WS_HTTP_CATALOG', '/oscommerce/'); define('DIR_WS_HTTPS_CATALOG', '/oscommerce/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); And here's my oscommerce/admin/includes/configure.php: Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://mydomain.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com'); define('HTTPS_CATALOG_SERVER', 'https://ns.serverwithSSL.com/~mydomainname.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/oscommerce/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/virtual/site4/fst/var/www/html/oscommerce/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/oscommerce/'); // absolute path required define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
  3. One other thing on this long thread I've asked for help on, I'm an out and out newbie (non-techie to a point), so could you also tell me if I placed oscommerce in the right level folder- inside of the html folder 0( on the path of /var/www/html/oscommerce ? Sorry for such a long one but I've been days on this one alone, the store and website have been ready to go since Monday, I've read forums and knowledgebase and this one is stumping me.
  4. Ted and all others, 1. Maybe you've got an answer for this newbie. When I go through the shipping page to payment page to checkout_confirmation page all seems to go well and no errors, then once I press "Confirm order" button the next page that comes up is the checkout_payment.php page and the url above is: https://secure.authorize.net/gateway/transact.dll. with an error message inside the page (not in the url) "There has been an error processing your credit card. Please try again (I am live in auth net and production mode in OSC) 2.Then someone on the forum told me to log onto Auth net and set my response/receipt urls, and now I don't get anything but an error page from auth net: An error occurred while trying to report this transaction to the Merchant. An e-mail has been sent to the merchant informing them of the error. The following is the result of the attempt to charge your credit card. The referrer, relay response or receipt link URL is invalid. and auth net sends me an email. So I assume I should delete the response/receitp urls to get back to the issue cause in #1 and ask for some help from someone who has auth net working (regular install mode- please) Here's what my oscommerce/includes/configure.php look like also (I am using a sharedSSL-if that can help you understand how to help me) When I go onto oscommerce in my file manager the path inside of the mydomainname.com starts me on directory, then the path I click on is: /var/www/html/oscommerce , so I'm not sure if I've done it all right in the below configure.php's from oscommerce/admin/includes and oscommerce/includes/ files : Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.mydomainname.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://ns.servernamethathasSSL.com/~mydomainname.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mydomainname.com'); define('HTTPS_COOKIE_DOMAIN', 'www.mydomainname.com'); define('HTTP_COOKIE_PATH', '/oscommerce'); define('HTTPS_COOKIE_PATH', '/oscommerce'); define('DIR_WS_HTTP_CATALOG', '/oscommerce/'); define('DIR_WS_HTTPS_CATALOG', '/oscommerce/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); And here's my oscommerce/admin/includes/configure.php: Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://mydomain.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.mydomain.com'); define('HTTPS_CATALOG_SERVER', 'https://ns.serverwithSSL.com/~mydomainname.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/oscommerce/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/virtual/site4/fst/var/www/html/oscommerce/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/oscommerce/'); // absolute path required define('DIR_FS_CATALOG', '/home/virtual/site4/fst/var/www/html/oscommerce/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
  5. Can someone please give me a hand here, I've also just found that when I try to go to "my account" I get the page not found coming up on my browser. All of the functions through checkout worked fine before I entered the Shared SSL updates to those three files. When I enter a shared SSL should it be ~mydomainname.com or just mydomainname.com? Are there php files that I missed other than three I've got listed above? This fix is all I need to go live and I'm stumped as a newbie, and desperatewly asking for help. Thanks in advance, Frank
  6. This is the url that tries to come up when I click on the confirm order button, https://ns.mysslservername.com/~mydomainnam...db8f2d300013582 Can anyone see what I might be doing wrong??
  7. I am just finishing setting up mu store with authorize net, I've set the https: stuff in admin/includes.configure.php and admin/index.php and includes/configure.php, my osc cart is set to production. BUT, when I go through and add a part to my cart then press checkout I am getting a web page that comes up that says The page cannot be displayed. Can someone jump in here and work with me to debug this stuff so I can get to a proper test with the authnet processing server? Thanks in advance for any help given.
  8. Hi, I needed to take a break from reading through so many shipping contribs- boy I sure wish the authors could remember that most of us that use osc are non-techies, and that we need succint descriptions of functions. I want to have a flat rate S&H system for my store so that I don't scare away customers (different dollar rate for each) : -USPS First-class, -USPS US Priority Mail (and Canada First-Class) , -USPS US Express Mail (Canada Priority Mail& International first-Class), -USPS International Priority Mail Can anyone let me know how I can go about it, and if you have an insert to a php that I could to make it happen. Thanks so much, Frank Hannigan
  9. phpgold- I updated the receipt info to now show it as POST. And whn the authnet transaction is trying to send info to me it comes back as an error message that says following: Not Found The requested URL /oscommerce/checkout_process.php was not found on this server.
  10. hi kavita, thanks for getting back to me: when I put the two url's you gave me into the auth net settings (I already know one error I made- I clicked on link not post on receipt url edit page. Just below that on the page I mention it asks me to list what text I want on the transaction.
  11. phpgold: I entered the two url's you gave, then set osc to production and authnet to test, but the credit card transactions aren't getting through. Should I have done anything else, my user name, key etc. are all in osc. For receipt response what should I have listed in the text box further down from the url spot?
  12. Sorry to bother the board, but I've seen so many contrary responses to the same question I'm just plain confused. When I setup Authorizenet to interface with my osc cart, in Auth net settings it asks me to enter three url's: 1. Default receipt url- what would I enter and when I do what does this url do in my cart in relation to the order it is reacting to? 2. Default Relay Response URL- what would I enter and when I do what does this url do in my cart in relation to the order it is reacting to? 3. Silent Post URL - what would I enter and when I do what does this url do in my cart in relation to the order it is reacting to? So far in test mode I get all of the Authnet credit card emails mailed to my fulfillment email address, but my shopping cart isn't sending me an email of the order (where it shows the addresses, the parts ordered etc. that I could use for fulfillment. will any of 1,2,or 3 above do that function for me once I've setup the right url's in authnet. In other stores I've got with Linkpoint and verisign the email that gets mailed of the order to the fulfillment email address only gets sent out when an actual approved credit card transaction has been concluded. If I don't get an email the order in my cart is disapporved. Also, what needs to get done for osc cart to update my flag of "in process" on my order, to "paid, awaiting fulfillment". Lot's of question but probably just a few minutes spent to really help someone on this forum. Thanks so much
×
×
  • Create New...