Search results

  1. Mark

    UCP Small edit

    you can do anything you like, look at what i provided you its very simple and you can easily extend bootstrap labels anyway you like. if you want to use bootstrap prebuilt classes you need to create a plugin with a conditional, its MUCH easier to override the color/background with custom CSS...
  2. Mark

    UCP Small edit

    easy enough with CSS. You can build your class using {$premium_flag} for example... but that is just 1 of many ways to accomplish this. <div class="premiumbox{$premium_flag}">{$lng->user_cp_premium_membership}: {$remain_day_premium}</div> in CSS: .premiumbox0 {color: orange} .premiumbox1...
  3. 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
  4. 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.
  5. Mark

    Custom field/admin approve

    not possible at this time, sorry.
  6. 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.
  7. Mark

    Turn off Review

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

    Plugin / Database query doesn't work

    Great to hear! good job :) Have a Merry Christmas
  9. 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.
  10. 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?
  11. 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...
  12. 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']) =...
  13. Mark

    Turn off Review

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

    Server Check [Deleted]

    Yes it should no problem
  15. Mark

    Visiolist Nginx Proxy Server Setup Debian 8

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

    GoodBye Parabola

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

    Remove Title

    I believe you can change "All Sites" in the admin panel -> language phrase manager.
  19. 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
  20. 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...
Top