Search results

  1. Basti

    CGI PHPNOT detected

    Yes that thing is recommended, makes your life just so much easier when you not have to mess with chmodd in ftp at all or set up file ownership :) Your current php handler is mod_php (DSO), which by is the fasted but has these huge file drawbacks FastCGI or suPhp are also php handlers, usually...
  2. Basti

    Opening Band Pages in New Windows

    Files where the following is stored are... href="{$url}" onclick="out(this,'{$username}');" table_row.html table_top_row.html table_row_premium.html table_top_row_premium.html stats.html featured_member.html search_result.html That means these files hold outgoing links to the member url, so in...
  3. Basti

    If a user only wants his referring linkcode

    Nope, it lists only domain for SEO reasons, once someone clicks the link ( image doesnt play any role here, a plain link would also work ). Once someone clicks it, the script makes some checks in the background if the site the voter came from is registered on your toplist, thats how it gets the...
  4. Basti

    How do we adjust the banners heights/widths for the promo section

    And what is the promo section? You mean by chance premium members?
  5. Basti

    Display Field along with some html

    No, like i said some posts ago, that is wrong thinking ... !empty means it is filled out empty() = field is empty, !empty() = field is filled out ( ! signs meant NOT in php ), making this code the one you want, like i said before if (!empty($TMPL['acf_googlelink'])) { // Member have filled...
  6. Basti

    Display Field along with some html

    This would trigger a php error, double quotes within doubles quotes are wrong Either use double quotes in the html ( and surrounded by single quotes ) $TMPL['newgooglelink'] = '<a href="#">Testing</a>'; Or if you use all double quotes, you need to escape the inner one like this...
  7. Basti

    Download older paid releases (0.9) last

    And just to clarify, while the member area holds just the latest release, as Mark mentioned, any licenced member has access to legacy downloads which are stored here in the forum under "Core Downloads". I know not everyone knows this or checks the forum, just wanted to say :) This goes back to...
  8. Basti

    Display Field along with some html

    You used {$googlelinkcorrected} in stats.html? Cause in the php i see $TMPL['newgooglelink'] The code is correct what you have in the file. if (!empty($TMPL['acf_googlelink'])) { $TMPL['newgooglelink'] = "EMPTY"; } This says, if the member filled out ( !empty = not empty )...
  9. Basti

    Long Description + BBcode

    You get that error because the function mark posted is missing If you want it, try adding it anywhere in details_build_page.php If you rather want to get rid of urls, like Mark suggested, you need to remove '#\[url\]([^\[]*?)\[/url\]#e', '#\[url=([^\[]*?)\](.*?)\[/url\]#e', and...
  10. Basti

    Implemented Maintenance mode

    Adding that into 1.4, so it would be usuable from 1.4 onwards. If you update from 1.3 to 1.4, obviously not usuable for the update proccess since the setting is not there
  11. Basti

    Vote Counts as a Percentage?

    Depends, just simple math via plugin. Question is what defines 100%?
  12. Basti

    Staff Panels

    Its a implemented VL 2.0 feature, where you can assign registered users ( not site owners, but actual users ) a specific group, for which you can set perissions to access xx feature in admin area. Since its 2.0, it wont be released until that release makes a debut.
  13. Basti

    Display Field along with some html

    Little hint, after youve set up basic plugin requirements as in the tutorial. If your custom field name is acf_testfield in php tmpl tags, are defined as $TMPL['acf_testfield'] ( not same as in html file ) so if you wanna show data on stats with a div, use details_compile_details.php . As Mark...
  14. Basti

    No Vote-Link

    Ok i tried to translate myself, lets see if this is what you want :) You only want to show the hits in? ( votes ) {$this_period} change to {$unq_in_0_daily} "daily" can also be "weekly" or "monthly", depending on your ranking period
  15. Basti

    Turkish translation

    good job :) Almost done
  16. Basti

    No Vote-Link

    Really sorry, but still no idea what you want :( Write in your own language and ill try to translate myself
  17. Basti

    Links - Open New Window (Blank)

    Basicly is the same, whenever a link shall open in new window, add that tag to the link stats.html has the link at the top <a href="{$url}" onclick="out(this,'{$username}');" rel="nofollow">{$url}</a> and the link of the banner <a href="{$url}" onclick="out(this,'{$username}');" rel="nofollow">...
  18. Basti

    Turkish translation

    We dont have a turkish translation at the moment. http://visiolist.com/community/forums/language_packs/ If you're up for the challenge yourself, make a copy of languages/import/english.php This copy name it turkish.php and place also into the same folder. Then you can edit that new file. Once...
  19. Basti

    Links - Open New Window (Blank)

    Moved to general support. To answer your question, takeing for example table_rop_row.html <a href="{$url}" onclick="out(this,'{$username}');" class="show_banner" title="{$title}" rel="nofollow">{$title}</a> To open a link a new window, the link tag needs target="_blank", like so <a...
  20. Basti

    No Vote-Link

    Sorry? Not understand your question
Top