Search results

  1. Daegaladh

    Problem with error function on in_gateway_start

    I've made a custom plugin that uses in_gateway_start hook, but when i try to use the error function there, it returns error 500 $this->error($LNG['customplugin_banned']); I've also tried this with mixed results (sometimes work, sometimes doesn't): $base = new base...
  2. Daegaladh

    Weird bug on new month

    Something weird happened on my toplist a couple of days ago. On december 1, all data, hits in and out, of all sistes show 0, and month totals of each were counting the data from november 30 onwards as if that day was part of december. Never happened before, no errors on apache logs... nothing...
  3. Daegaladh

    Implemented [Bugfix] Banner files deletion on user deletion

    I've noticed that when you delete a user, some banner files still remain, that's because the if-elseif structure, since the user can upload a new banner with a different extension, those files are never deleted. Also premium banners are never deleted either. That's why I propose this fix: in...
  4. Daegaladh

    [Fixed] Error 500 on main admin page

    Today I'm getting error 500 on the main admin page of my visiolist (the rest of the admin panel and the list itself works fine, it's just the main page of the admin panel) I changed nothing, so I don't know where this error comes from :/ Apache log says: [25/Dec/2015:21:14:39 +0100] "GET...
  5. Daegaladh

    Generate screenshot on register / edit url

    I wanna make a little plugin or source mod to generate the screenshot on registration or when the url is modified, but I'm not sure how. I'm also thinking on a way to delete the old screenshots when the url changes or the the site is deleted Any ideas? Thanks in advance!
  6. Daegaladh

    Bug in url field on edit form

    In 1.4, when saving changes on edit form (without touching the url field), I always got an "already existing url" error.
  7. Daegaladh

    Implemented Replace submit button names

    You should replace all instances of name="submit" and !isset($FORM['submit'] to submitButton or anything else, since it interferes with jQuery's submit() For example when using formValidation: http://formvalidation.io/examples/cant-submit-form-after-validation/#the-submit-buttons-name-is-not-valid
  8. Daegaladh

    Show values in search results

    Some values, like {$unq_in_0_monthly}, {$unq_out_0_monthly} and custom values are not displayed in search results. How can I achieve that? Thanks.
  9. Daegaladh

    I can't access to visiolist.com/community/resources/

    An error says: "You do not have permission to view this page or perform this action." But I'm a licensed user :/
  10. Daegaladh

    Show errors on in.php

    I made some modifications to in.php and need to show errors in the function gateway($username), i used $this->error() in older versions, but i can't in 1.3
  11. Daegaladh

    [BUG?] Global custom ad zone doesn't work on gateway

    I've created a global custom ad zone to use in both, rankings and gateway, but nothing shows on the gateway page.
  12. Daegaladh

    Custom field display value doesn't work

    I'm making a plugin to show different images and stuff depending on custom fields, in ranking_compile_stats, but display value doesn't work. acf_xxx show the correct value, but acf_xxx_display does nothing I'm using 1.3
  13. Daegaladh

    Get the display value

    Hi, we can get the internal value of a custom field with {$acf_field} or $TMPL['acf_field'], but how to get the corresponding display value?
  14. Daegaladh

    Help with a plugin

    I'm making a plugin to show social icons on each row using the custom fields but I'm getting some errors. This is my code: rankings_compile_stats.php $facebook_clean = filter_var($TMPL['acf_facebook'],FILTER_SANITIZE_URL); $facebook_row = '<a href="{$facebook_clean}"><img...
  15. Daegaladh

    Regular expresions on custom fields

    If would be very useful that you could set your own regular expressions to custom fields when you want them to work with a certain format.
  16. Daegaladh

    Bug - Google and Baidu bots can vote

    I was searching for proxy votes when I realized there are some made by google and baidu bots (yes, unq_in) You should add rel="nofollow" to the Vote button
  17. Daegaladh

    Implemented Ability to modify votes

    I would like this to lower votes of those that used proxies, etc, in a way simpler than modifing the _stats table.
  18. Daegaladh

    NULL timestamps

    All timestamps in the log table are NULL so you have no way to know when the vote was made :S
  19. Daegaladh

    Implemented Blacklist voters

    I thought this was already implemented, but seems you can only ban from login or registration. It's very necessary that you could be also able to blacklist voter ips (proxys, etc), by ip or range.
  20. Daegaladh

    More tags in gateway

    I need {$title}, {$url}, {$banner_url} and {$description} tags in the gateway page, but I'm not sure how to add them. Could anybody help me? Thanks.
Top