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

    Just the default setup. I already reseted all topsites so there's not much to see.
  3. 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...
  4. Daegaladh

    Youtube Video

    It should have aditional regex checks on join, join_existing and edit forms to validate if it's a valid youtube url or throw an error if not.
  5. 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...
  6. Daegaladh

    VisioList 1.5

    There's a mysql_num_rows that should be mysqli_num_rows in sources/admin/search_user.php, and the same happens in most of the plugins. Also, mysql_real_escape_string should be mysqli_real_escape_string in sources/admin/manage_menus.php I hope it would help!
  7. Daegaladh

    [Fixed] Error 500 on main admin page

    Nope, I tested it and works for other urls, just doesn't connect to visiolist.com for some reason. Probably is just a temporary problem, but now with my fix we have this cases covered ;) Btw, it would be a good idea to add this timeout code to the Stopforumspam plugin too. Just in case.
  8. Daegaladh

    [Fixed] Error 500 on main admin page

    This is what I did to fix it: if (ini_get('allow_url_fopen') === false || !$latest_version = @file_get_contents('http://visiolist.com/version.txt',false,stream_context_create(array('http'=>array('timeout'=>10))))) { $latest_version = '?'; }
  9. Daegaladh

    [Fixed] Error 500 on main admin page

    I found what was causing the error: $latest_version = file_get_contents('http://visiolist.com/version.txt'); I don't know why, since I can access the url. Probably my hosting gets timeout, or cannot resolve the domain for any reason :/
  10. 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...
  11. Daegaladh

    Generate screenshot on register / edit url

    Cool! Thanks
  12. 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!
  13. Daegaladh

    Bug in url field on edit form

    Yeah, shit happens XD
  14. Daegaladh

    Bug in url field on edit form

    It happens on both cases Edit: Right, it's something in my skin, but I cannot figure out what. It works fine with the original one. Edit2: It was because the username field has name="title" instead of name="myusername" and the title field has the same name. I still don't know what it has to do...
  15. 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.
  16. 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
  17. Daegaladh

    How to enable Multilanguage?

    I also want that plugin, and I think it should be on visiolist as a core feature, with a script that checks the visitor's country from the IP and shows the corresponding language. Member descriptions may not be that important when you have an international list and the country of each member is...
  18. Daegaladh

    Show values in search results

    Tausend Dank! And yeah I also think the search should work like the rankings, but I would keep the skin part in different files.
  19. 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.
Top