Search results

  1. Mark

    Screenshot Task?

    Good idea, that could be automated with cron job and a custom script to grab and generate pending screenshots. I'll move this to plugin requests
  2. Mark

    Visiolist 1.5 Description Bug Fix.

    those lines were added to patch a security hole, removing them will re-open the hole and leave your site vulnerable to attack. Version 1.6 will contain a more complete, plugin/utf friendly fix.
  3. Mark

    Custom field/admin approve

    not possible at this time, sorry.
  4. Mark

    Working On It Premium Coupon Feature

    wow this one slipped through the cracks... I promise I will work on this as soon as possible.
  5. Mark

    Turn off Review

    nope, PHP files will do nothing in skin folders.
  6. Mark

    Plugin / Database query doesn't work

    Great to hear! good job :) Have a Merry Christmas
  7. Mark

    Plugin / Database query doesn't work

    ahh the SEO plugin template is probably not the correct place for this. You need to either make a new plugin, or add direct to wrapper.
  8. Mark

    Plugin / Database query doesn't work

    I am not sure I understand, are you saying you seeing: We have Servers in our list atm, of which are online right now with a total of Players. or nothing at all?
  9. Mark

    Plugin / Database query doesn't work

    yup skin_global should be fine. I suspect that your issue is indeed related to mysqli. Please run this command via SSH from your root directory (where settings_sql.php is found) grep -R "mysql_" * that will return a list of files that are using the old mysql_ functions, update each one...
  10. Mark

    Plugin / Database query doesn't work

    @leonor if you have upgraded to 1.5 try this: find: list($TMPL['online_servers'], $TMPL['total_online']) = mysql_fetch_row($DB->query("SELECT COUNT(*), SUM(sro_num_players) FROM `VL_stats` WHERE `sro_online` = '1'")); change to: list($TMPL['online_servers'], $TMPL['total_online']) =...
  11. Mark

    Turn off Review

    Thats odd, you can delete the following file to prevent spam review submissions: sources/rate.php
  12. Mark

    Server Check [Deleted]

    Yes it should no problem
  13. Mark

    Visiolist Nginx Proxy Server Setup Debian 8

    thanks for taking the time to contribute such a detailed write up!
  14. Mark

    GoodBye Parabola

    no, just down to a single maintainer who also has a couple full time jobs
  15. Mark

    Captchas in Signup page

    recaptcha works for me across the web only once in a blue moon, most times it simply fails to connect. I have no idea what the problem is but it seems to be an issue on Google's end... I also noticed (maybe unrelated, who knows) that on many instances google web fonts are slow or completely...
  16. Mark

    Remove Title

    I believe you can change "All Sites" in the admin panel -> language phrase manager.
  17. Mark

    Featured Member in the Table_Top

    unfortunately it looks like {$featured_member} only works in wrapper.html, you would need to create a custom plugin to handle this
  18. Mark

    Clean URLs do not work on nginx

    note: nginx is not officially supported there is no rewrite in play, its a direct path to screenshots.php which is found in the root folder. if you don't have it, its because you removed it or failed to upload it. You can generate screenshots using any method you like, but we don't support...
  19. Mark

    Assistance/Tips for modifying bootstrap skin

    Right Click, "Inspect element" to get the class you need to override in your custom.css (.navbar-inverse I believe in this case)
  20. Mark

    Error found

    indeed, there is no check for additional characters. This will need to be rolled into the core, I don't think its a quick / easy fix.
Top