PDA

View Full Version : upgrade-listing.html



Ionut Barabasa
January 24, 2024, 02:37 PM
After upgrading to php 8.0 when an user receives email to renew listing, the link is not working ( upgrade-listing.html) I changed back to php 7.4 and the issue will not exist
Do you have a solution for this?

Rudi
January 24, 2024, 02:58 PM
Try this solution: go to your file manager > includes > controllers > upgrade_listing.inc.php

find and replace:


$errors = $lang['notice_should_login'];


with:


$errors[] = $lang['notice_should_login'];

Ionut Barabasa
January 25, 2024, 11:05 AM
Hello
Thank you. Worked