• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

PHP Gesior 1.2 Shop System error.

Runedayz

New Member
Joined
Mar 17, 2020
Messages
42
Reaction score
1
Spent hours looking for a fix can anyone assist thanks.
line 84:
if(empty($action))
{
if(count($offer_list['item']) > 0)
$action = 'item';
elseif(count($offer_list['container']) > 0)
$action = 'container';
}
 

Attachments

If no one provides a solution, you can silence the errors by placing an @ symbol in front of count() on each offending line. Not ideal of course.
Your issue could be related to you having no shop offers in the DB, or your items table in the DB might not be populated through the admin panel, again, I don't use Gesior unfortunately so these are guesses.
 
Back
Top