Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorchewbears
    • CommentTimeSep 23rd 2009
     
    Just went through this and you will need to change things so that plogger will work. You have to change the

    $num_items = mysql_result($result,'num_items');

    (going off memory so it might be different will look and change after I post if changes are needed)

    The above then needs to be

    $num_items = mysql_result($result, 0, 'num_items');

    I got a timezone error as well and had to add 'Ameica/New_York' in the php.ini file where date.timezone existed. The latter was just added at the end.