Page 1 of 1

Downgrading from 2.3.0.2 to 2.2.0

Posted: Tue Jan 07, 2020 11:46 am
by barnone
Tired of dealing with OC 2.3.0.2 errors and not working like it is supposed to.

What do I need to know about downgrading?

Re: Downgrading from 2.3.0.2 to 2.2.0

Posted: Tue Jan 07, 2020 9:47 pm
by IP_CAM
You don't have to downgrade, just get the latest OC v.2.3.0.2, it
already contains all known Fixes:
https://github.com/condor2

Re: Downgrading from 2.3.0.2 to 2.2.0

Posted: Wed Jan 08, 2020 4:32 am
by barnone
Awesome thank you very much! Hard to keep track of these things. I haven't seen this one yet.

So far my experience with OC 2.3.0.2 has been trouble with all these errors. 1.5.6.4 ran perfect, and the only reason I had to upgrade was my host killed php 5.

Any reviews on performance of condor 2?

Re: Downgrading from 2.3.0.2 to 2.2.0

Posted: Wed Jan 08, 2020 6:06 am
by by mona
search through xxvirusxx posts on this forum

Re: Downgrading from 2.3.0.2 to 2.2.0

Posted: Wed Jan 08, 2020 6:17 am
by IP_CAM
the only reason I had to upgrade was my host killed php 5.
Like getting divorced, instead of looking first for a new pair of shoes ... :crazy:
OC 1.5.6.x works flawless with PHP7, after changing the encryption.php file.
One then only needs to change the pagination (controller) routines, to work
with PHP 7.3+, as it looks, just like it has to be changed in most all of the later OC
Versions too:
Non well formed numeric page
https://github.com/opencart/opencart/pull/7785/files

Code: Select all

$page = $this->
to:
$page = (int)$this->

Code: Select all

if (isset($this->request->get['page'])) {
	$page = (int)$this->request->get['page'];
} else {
	$page = 1;
}
But in xxvirusxx's (Condor2) OC Version Releases, this has already been changed too, as I assume ....
Ernie