Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

The Requested Url /checkout_Success.php Was Not Found On This Server


mystique71

Recommended Posts

can someone please help me out with this problem since no one on the dutch forum is helping me .......

 

when I place an order and make a payment I should be directed to http://www.uniquegiftcreations.nl/webwinkel/checkout_success.php but now it is directing me to http://www.uniquegiftcreations.nl/checkout_success.php. please help where and how do I change this??? I really want to continue working on my shop but I need this problem to be solved first.

 

thanx in advance for your help :D

Link to comment
Share on other sites

In the payment system itself (not on the osc payment module) check that you have got the return path URL set correctly

Now running on a fully modded, Mobile Friendly 2.3.4 Store with the Excellent MTS installed - See my profile for the mods installed ..... So much thanks for all the help given along the way by forum members.

Link to comment
Share on other sites

Take a look at this:

 

## Required settings ##MOLLIE_PARTNER_ID = 123456MOLLIE_REPORT_URL = 'http://yoursite.yourdomain.com/payment/process/'MOLLIE_RETURN_URL = 'http://yoursite.yourdomain.com/payment/thankyou/'## Optional settings ### You must also set 'iDEAL testmode aan' or 'iDEAL testmode uit'# at the following URL: http://www.mollie.nl/beheer/betaaldiensten/instellingen/MOLLIE_TEST = True # defaults to FalseMOLLIE_MIN_AMOUNT = '1.18' # defaults to '1.18'import osSITE_ROOT = os.path.dirname(os.path.realpath(__file__))MOLLIE_BANKLIST_DIR = SITE_ROOT # defaults to your project's root directoryMOLLIE_PROFILE_KEY = 'Jas87821'MOLLIE_REVERSE_URLS = True # defaults to False, if set True, both reporting and returning url have to be reversable, e.g.:MOLLIE_RETURN_URL = 'shop:thanks'

 

You may need to tailor the return paths to match the osc set up - eg. checkout_process.php

Now running on a fully modded, Mobile Friendly 2.3.4 Store with the Excellent MTS installed - See my profile for the mods installed ..... So much thanks for all the help given along the way by forum members.

Link to comment
Share on other sites

problem solved sorry for the late reply, there's still so much to do and to change in my shop and since this is my first time with oscommerce it takes a lot of time to read all the possibilities :)

Link to comment
Share on other sites

@@mystique71 for the benifit of others in the future - could you post how you solved it.

 

Thanks

Now running on a fully modded, Mobile Friendly 2.3.4 Store with the Excellent MTS installed - See my profile for the mods installed ..... So much thanks for all the help given along the way by forum members.

Link to comment
Share on other sites

  • 3 weeks later...

I am truly sorry for the very very late reply, some bad things happened in personal life here the last couple of weeks :(  uhh since I have fybromyalgia I have a hard time to remember things so I really don't know anymore how I got this problem figured out sshhtt don't laugh at me it's terrible enough to be such an empty headed person, when I do can remember I will put it right here :D

Link to comment
Share on other sites

  • 2 months later...

loll since I had to deal with the same problem for another webshop I really had to think hard what the problem was again. since my own shop is in a different folder I just needed to add the folder name in my mollie_helper.php   file :)

			// Cleanup cart and session.
			global $cart;
			$cart->reset(TRUE);

			tep_session_unregister("sendto");
			tep_session_unregister("billto");
			tep_session_unregister("shipping");
			tep_session_unregister("payment");
			tep_session_unregister("comments");

			// Show success page.
			header("Location: /MYFOLDERNAMEHERE/checkout_success.php");
		}
		else 
		{
			// Send back to cart.
			header("Location: /MYFOLDERNAMEHERE/shopping_cart.php");
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...