Page 2 of 2

Re: Changes made to correct issues in OpenCart for v2.2.0.x

Posted: Fri Apr 22, 2016 7:07 pm
by Randem
That conversation should be in the Changes made to correct issues in OpenCart for v2.1.0.x or a new thread not this one it will only confuse people.

Re: Changes made to correct issues in OpenCart for v2.2.0.x

Posted: Fri Apr 22, 2016 7:39 pm
by bzark
Sorry about that, I went an posted that question in the correct location.

Re: Changes made to correct issues in OpenCart for v2.2.0.x

Posted: Sat Feb 11, 2017 11:11 am
by thehoneyjar
Thank you so much for this fix! I had been tearing my hair out trying to fix the admin ssl. After downloading and installing your fixes I found the customer facing forms were still having trouble. I found the solution here viewtopic.php?f=161&t=137756&p=547598&hilit=SSL#p547598 and then added it to the xml file you provided.

Code: Select all


//=======================================================================================================================
// RJ - 20170210 - Force Customer Facing Forms to use SSL
// Fix: Customer Side Form HTTPS Fix 
//=======================================================================================================================

	
	<file name="catalog/controller/information/contact.php">
		<operation error="abort"> 
		   <search position="replace"><![CDATA[$this->data['action'] = $this->url->link('information/contact');]]
</search>
			<add><![CDATA[$this->data['action'] = $this->url->link('information/contact', '', 'SSL');]]
</add>
		</operation>

	</file>