vote page is blank

oly1993

Member
Hello

After installing the callback vote check plugin, is the vote page blank.
i've deleted the plugin, replace the backup gateway.html, but doesnt help.

Best regards,
oly1993
 

Basti

Administrator
Staff member
Blank page usually mean an error. Works fine so far and no one reported such an error.
You have so many different errors, it seems to me something on your host is wrong.

Since blank page usually is a 500 error, please check your servers error log and report back what is listed there.
 

oly1993

Member
Where can i find the server error log?
The page "index.php?a=admin&b=manage_banners" is also blank

EDIT:

I've the ads plugin deleted and the installation 1.1 worked fine.
and the vote page is fixed.

one style problem :
All screenshots are big @ newest members


All other problems are fixed.
 

proxydesign

Visiolist-Fan
Not tested, but I think this may work:

plugins > NewestMembers > skin_global.php
Line 33 and 34

Replace with this code:
Code:
$TMPL['screenshot'] = "<br /><img src=\"screens/{$screenshot_url}\" alt=\"{$TMPL['newest_members_title']}\" title=\"{$TMPL['newest_members_title']}\" class=\"vistip screenshot\" width: \"10px;\" height: \"10px;\" />";
Notise the width and height at the end of the code, and set it to your need.


The Screenshot plugin has also been updated, also check this post by Basti:
http://visiolist.com/community/threads/screenshots.38/page-6#post-8694
 

oly1993

Member
Not tested, but I think this may work:

plugins > NewestMembers > skin_global.php
Line 33 and 34

Replace with this code:
Code:
$TMPL['screenshot'] = "<br /><img src=\"screens/{$screenshot_url}\" alt=\"{$TMPL['newest_members_title']}\" title=\"{$TMPL['newest_members_title']}\" class=\"vistip screenshot\" width: \"10px;\" height: \"10px;\" />";
Notise the width and height at the end of the code, and set it to your need.


The Screenshot plugin has also been updated, also check this post by Basti:
http://visiolist.com/community/threads/screenshots.38/page-6#post-8694

Doesnt work, but i've already fixed it with this on line 29 :
Code:
$screenshot_url = $screenshot_url.'_small.jpg';
 

Basti

Administrator
Staff member
Yes indeed, that was originally the "_small" version as you have changed it to. Can only suspect it was changed to work better with the new bootstrap theme.

P.s instead editing the plugin core file, you could add this to your user.css to have the same effect
Code:
ul.newmembers img.screenshot {
    width: 200px;
}
 
Top