Search results

  1. Mark

    Plugin / Database query doesn't work

    Great to hear! good job :) Have a Merry Christmas
  2. 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.
  3. 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?
  4. 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...
  5. 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']) =...
  6. Mark

    Turn off Review

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

    Server Check [Deleted]

    Yes it should no problem
  8. Mark

    Visiolist Nginx Proxy Server Setup Debian 8

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

    GoodBye Parabola

    no, just down to a single maintainer who also has a couple full time jobs
  10. 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...
  11. Mark

    Remove Title

    I believe you can change "All Sites" in the admin panel -> language phrase manager.
  12. 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
  13. 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...
  14. 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)
  15. 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.
  16. Mark

    Server Https / Reverse Proxy

    sorry nothing new to report, I am not a user of nginx and VisioList does not officially support it, I'm really not sure where the problem lies with your server config. You might need to go through and disabled lines/files until you isolate the cause.
  17. Mark

    HTTPS

    The same info you posted here, supply them with steps to reproduce so they can watch the log file.
  18. Mark

    HTTPS

    That forbidden error is most likely your web hosts mod_security rule blocking the transaction.
  19. Mark

    {$header_js_files}

    That is a template hook location that allows theme and plugin authors to add their custom javascript into the header. The actual javascript files can be found anywhere including remote servers.
  20. Mark

    Server Https / Reverse Proxy

    I think in the next year or 2 everyone will be https, I use lets encrypt on my lists and it works fine so I don't think that would be the cause. I suspect the issue is nginx reverse proxy, but I am not sure about the redirect issue you are seeing, I do recall basti wrote some code a long time...
Top