Search results

  1. Basti

    Set the hours between votes?

    We are not a Gaming only script. Please understand that. If you must, do as Mark said set up a cron job. truncate_cron.php <?php //===========================================================================\\ // VisioList is a proud derivative work of: \\ //...
  2. Basti

    How to add videos on admincp?

    Its in the "insert" part above, From there insert video and embed code
  3. Basti

    Core Feature Random user plugin

    Check your admin settings, its a core feature. After turning it on, you will notice a new sidebar block with a random member. If the placement is not right, move the tag {$featured_member} somewhere else. And as for the design/html its featured_member.html
  4. Basti

    Adding a new sidebar

    np :)
  5. Basti

    Adding a new sidebar

    Yes that code not shows in on category, its the code only for page 1,2,3 If you see my last code there, that is the one you want
  6. Basti

    Adding a new sidebar

    Category will work, you added multiple of my code? its either this or that. The last code instead of what you had would show on all ranking related pages. If it is not, let me see your current full action_array.php code
  7. Basti

    Adding a new sidebar

    In your plugin you use this right? if(isset($isfront) && $isfront == 1) { To have it also show on page 2, 3 etc use this if(empty($FORM['a']) && empty($FORM['cat'])) { To have it also on categories if(empty($FORM['a'])) { As for the newest member or any other plugin who use that template...
  8. Basti

    255 description length?

    It is a leftover setting from before we introduced limiting directly on the template like {$description, length=255} Will remove that for 1.1 since its not needed anymore, thanks for the reminder
  9. Basti

    Twitter

    plugins/Twitter/twitter_layout.html Make in in that folder a new one called "child" and copy the file into there, then edit. VL 1.1 will introduce this feature ( like skin child ). Ill pm you the edit to make it work with vl 1.0
  10. Basti

    SMTP Mail send

    Hmm not to much experience, but it looks to me more like an issue with your mail addresses First error Error 2 Somehow looks to me like your exact issue. If you require smtp a call to your ISP would help if the above scenario is the case. If you wanna switch back to php mail, just clear...
  11. Basti

    SMTP Mail send

    That error has nothing to do with starttls as far as i know. If it has the error would look somewhat like "must issue a starttls command first" Is that all your log tells you? And is the php openssl extension enabled? to allow php to connect to the mail server using the https protocol
  12. Basti

    Vote Buttons...

    Np, your welcome
  13. Basti

    Overall Stats

    Looks like the menu creation was removed at some point It is located at site.com/overall-stats/ for the clean url version , or site.com/?a=details You can add that link to whatever menu you like Or do you mean something else?
  14. Basti

    Rotating Banners To Show Different In Banner Rotator

    Hi Andy, The plugin has been updated, please see http://visiolist.com/community/threads/ads.261/#post-8233 As it turned out, no new extra file for you. Not sure if that is enough for you, but now on each ad break a new random banner from the zone is generated. Note that you have to move existing...
  15. Basti

    Ads

    Plugin Update 1) easy creation of new zones when you add a banner ( choose existing zone or create new ) 2) More specific display areas. Now featuring Global display, Gatway Page, Details Page, Ad Breaks 3) For ad break ads, implemented a better rotation method. To be accurate, a new random ad...
  16. Basti

    Problem adding category

    Issue has spoted, caused by a single quote. For everyone else, expect this to be fully fixed in VL 1.1 along the possibility to use any character as your category name. Some may know what issues this brings currently. This has been discussed before, but for everyone new here. We will strip all...
  17. Basti

    Problem adding category

    Ok will reply in a bit
  18. Basti

    Problem adding category

    Sorry, support has to be English or German, we do not understand other languages. If you dont know what to do, you can also pm me ftp and admin login so i can have a look myself
  19. Basti

    Adding a new sidebar

    The issue is that you gave your tables globally 450px width . That should be as it was, not sure but i think 100% it was original On your ranking you need to define width via an id like you tried id="rankings_table" ( good to name it a bit for what it stands ) It not worked for you, because...
  20. Basti

    Adding a new sidebar

    2 methods 1) use the {isfront}your sidebar code{/isfront} directly in wrapper.html. That would result in the sidebar to be shown only on page 1 of the rankings 2) if you want it on page 2,3,4 etc also, you will have to make a plugin There you would need the usual default files ( language...
Top