1 Attachment(s)
Can't see products after clicking category from front page after upgrade and plugins
I just started a new 1.58a zen store on 8.2.4 php, upgraded from 1.58 database along with the following plugins:
One Page Checkout
Ultimate URLS
Database backup
Square WebPay
Now I get the following internal server error when clicking the category to view an item.
It seems the dbase upgraded ok. I can see my categories and items within my admin.
Any advice?
Attachment 20255
Many thanks
Re: Can't see products after clicking category from front page after upgrade and plug
Re: Can't see products after clicking category from front page after upgrade and plug
Remember that while the Zen Cart core is 8.2 ready, not all plugins are; you may need to downgrade to 8.1 until they're fixed.
Re: Can't see products after clicking category from front page after upgrade and plug
Quote:
Originally Posted by
spawnie69
I just started a new 1.58a zen store on 8.2.4 php, upgraded from 1.58 database along with the following plugins:
One Page Checkout
Ultimate URLS
Database backup
Square WebPay
Now I get the following internal server error when clicking the category to view an item.
It seems the dbase upgraded ok. I can see my categories and items within my admin.
Any advice?
Attachment 20255
Many thanks
I checked my logs and in My Debug discovered:
Code:
[12-Apr-2023 12:38:34 America/Boise] PHP Fatal error: Trait 'Zencart\Traits\NotifierManager' not found in /XXXXXX/XXXXX/public_html/XXXXXXXX/includes/classes/class.base.php on line 12
I checked that file and found the following:
Code:
*/
use Zencart\Traits\NotifierManager;
use Zencart\Traits\ObserverManager;
class base
{
use NotifierManager;
use ObserverManager;
public static function camelize($rawName, $camelFirst = false)
{
if ($rawName == "")
return $rawName;
if ($camelFirst) {
$rawName[0] = strtoupper($rawName[0]);
}
return preg_replace_callback('/[_-]([0-9,a-z])/', function ($matches) {
return strtoupper($matches[1]);
}, $rawName);
}
}
I also checked my other working new installs w/o upgraded database and with mods mentioned above and the class.base file is the same.
So does that mean by upgrading changed something that is not allowing me to see my products or categories as mentioned?
I also changed my php to 8.1 and still get the same results only on the upgraded site.
Thanks for your help
Re: Can't see products after clicking category from front page after upgrade and plug
It appears to mean that you are missing the file NotifierManager.php to be found in: CATALOG/includes/classes/traits/
Re: Can't see products after clicking category from front page after upgrade and plug
Quote:
Originally Posted by
mc12345678
It appears to mean that you are missing the file NotifierManager.php to be found in: CATALOG/includes/classes/traits/
I did notice this and appears to be present.
1 Attachment(s)
Re: Can't see products after clicking category from front page after upgrade and plug
Attachment 20256
Here is the file present.
Re: Can't see products after clicking category from front page after upgrade and plug
Maybe since it was built on 8.2 and upgraded the database caused an issue.
Should I do a clean install on php 8.1 then do the upgrade? Thanks again
Re: Can't see products after clicking category from front page after upgrade and plug
I just want to give an update. I reinstalled and uploaded database and all is ok for now since I took out ultimate urls which has not been updated for 1.58a as of yet.