Search results

  1. Basti

    vl chat !

    Yea, but the thing is, you cant control who's on the chat. And without a doubt, i would bet 1000$ on it, it would be used for support related issues
  2. Basti

    vl chat !

    I never really understood the purpose of a shoutbox on a forum, so count me out there. Not only do i see as useless, but it would also lead to customer issues, where "little kids" would use it to ask for support and then complain cause it never gets answered. Used "little kids" on purpose, not...
  3. Basti

    ( cloudflare )user login does not exists leads to a not found page

    So you are not seeing the error message of "You site is not yet activated", but a "user not found"? First of switch to parabola and see if they same happens. And is cloudflare maybe caching 404 pages? ( our error messages are 404 )
  4. Basti

    Bug Fix Emails

    This issue has been finally resolved and will be included in 1.3. To be precise on some hosting the email function always returned with an error. Thanks to soccerki who encountered the same issue today i was finally able to reproduce the error and dig deep into the networking process. Our ajax...
  5. Basti

    Join Language Flags

    Basti updated Join Language Flags with a new update entry: Moves html into templates Read the rest of this update entry...
  6. Basti

    Join Language Flags - Moved html into templates

    The html for the details page, as well as the rankings has been moved into their own html files. If you want to edit the html parts, make a folder in the plugin called child. Then copy the html file into that folder and edit from there to keep your changes when the plugin updates
  7. Basti

    adding random votes

    I know. Just told you that a look at that file reveals what the "show reviews" link would be
  8. Basti

    Premium Users

    It should work with a simple plugin. We have a plugin hook in rankings.php to extend the query which selects which members to show 1) Folder named RankByPremium 2) RankByPremium/languages/english.php ( can be empty ) 3) RankByPremium/languages/index.htm ( empty ) 4) RankByPremium/index.htm (...
  9. Basti

    adding random votes

    A look at the htaccess files shows what you are missing. Left side clean version "mapped" to right side original RewriteRule ^review/(.*)/ index.php?a=rate&u=$1 [L] RewriteRule ^reviews/(.*)/ index.php?a=details&u=$1&all_reviews=1 [L] So it would be "review" to rate, and "reviews" to view them
  10. Basti

    adding random votes

    On clean urls its "review" and not "rate" Ofcourse there arent. You should see just by look at the queries you have. All those are for "in". You can duplicate all stats by changing the "in" to "out" in all the queries
  11. Basti

    Other ways to cheating

    Could still be cheated by the autovoters ( like the one we mentioned, i bet they have such things ). Setting up an auto clicker script on your server, setting up the window px dimensions where the captcha is located and programming the clicker to move the captcha so its unlocked. Such things...
  12. Basti

    Other ways to cheating

    In the head area of wrapper.html Those autovoters, swiftvoter or how its called, are nasty. changing ips, captcha filling and i dont know what else
  13. Basti

    errors with several plugins

    Yea that error i just correct and included it into 1.3 release. If you wish to use the fix now, upload the attached file to sources/misc/
  14. Basti

    simple comments system as in aardwark

    If you need the old aardvark system you can enable it in details.php setting $reviews_on = 0; to 1 A core comment system will not come until VL 2.0 as would be to much work converting it to the new way of vl 2.0 coding
  15. Basti

    cache button.php

    Yes stats and rank button are server intensive. Obviously. Its doing queries to fetch stats and then update the stats also We have the following queries 1) Grab settings 2) check if valid member to stop leechers ------------------- Pageviews only 3) check if visitor was counted already 4) if...
  16. Basti

    adding random votes

    What leonor means are array and loops. Reducing your amount of code you need to write $users = array('user1', 'user2', 'user3'); foreach($users as $user) { $votes = rand(1, 17); // the mysql query here, just one. // using WHERE username = '{$user}' } Such loops "loop" through the...
  17. Basti

    errors with several plugins

    As for your user panel edit error. Its hard to to troubleshoot. There is an error, but it doesnt show what or where the error is. Guess would be that it is caused by a plugin So disable all plugins, then keep your url field empty and see if the same banner issue pops up. If yes, ill...
  18. Basti

    errors with several plugins

    Indeed. Its caused by our validate functions, which checks for if(empty($value)) { the php's empty functions takes a 0 ( zero ) as empty. Hence the error you had. I actually fixed this in the VL 2.0 developement, but kind forgot about it. Thx for the reminder, i'll put the needed edits into...
  19. Basti

    Need writers :)

    Its a standalone software not related to vl
  20. Basti

    adding random votes

    yep perfectly fine in the sense of code
Top