Search results

  1. Mark

    Advertisement problem

    this is also covered in the manual http://visiolist.com/docs/ranking-settings
  2. Mark

    Advertisement problem

    paste your ad code in the ad_break, and ad_break_top template. if you want ads to show up after rank #2 and rank #4 for example simply put 2,4 in that field.
  3. Mark

    stats pages

    See this? <base href="http://browser-top250.info//" /> you have included a trailing slash in your settings / so all of your urls have // which is not good. You should be able to easily fix this by correcting it your admin settings -> Visiolist URl.
  4. Mark

    [Google] Duplicate content

    as Basti mentioned above, 301 redirects are already in place for all of those
  5. Mark

    Logged in elements

    http://visiolist.com/community/forums/mod-tutorials/ read the tutorial on how to create a plugin, they are very easy to make
  6. Mark

    Button Font

    that is a bit trickier, you will need to use GD lib with freetype, this part is all handled with PHP since its dynamically creating the button. I will work on making this a feature for the upcoming release, its always something I have wanted to do anyway
  7. Mark

    Logged in elements

    everything is possible ;) you can make a simple plugin to do this if (isset($_COOKIE['atsphp_sid_user_cp'])) { $TMPL['user_logged_in_hide'] = ' style="disply: none";' } then in your template you can add {$user_logged_in_hide} to the element you want to hide. for example: <div...
  8. Mark

    Registrating page

    elegant join plugin is what your after http://visiolist.com/community/threads/elegant-join.28/
  9. Mark

    Important - Change to the affiliate system

    With the introduction of our new centralized members area comes a much improved affiliate system. The upsides: - Better reporting - Centralized login - More tools The downside: - If you were a user of the original affiliate system, you will need to update your links to use the new...
  10. Mark

    I need a hand testing a new area.. got a few minutes?

    thanks to all the brave volunteers! Testing is going very well, no further help is required... but if you encounter any bugs with the new members area or forum login let me know!
  11. Mark

    Having Problem w/ Join email

    good stuff :) Have a good one
  12. Mark

    Having Problem w/ Join email

    Change nobody@example.com to your email and try this one: <?php mail('nobody@example.com', 'the subject', 'the message', null, '-fwebmaster@example.com');?> if this doesnt work... you need to have your server admin enable the mail() function.
  13. Mark

    I need a hand testing a new area.. got a few minutes?

    I am working on a new member management system so we can move away from swreg, and I need some real world testers. If you have a few minutes please start a private conversation with me and I'll provide a few steps for you to follow to help me with testing. thanks!
  14. Mark

    Having Problem w/ Join email

    can you confirm that your server has the PHP mail() function enabled? you can test with this: <?php mail('you@yourdomain.com','message subject','Message Body'); ?> no error message is very unusual... the function clearly works
  15. Mark

    Having Problem w/ Join email

    are you on 0.9? open your index.php and find: //error_reporting(E_ALL); replace with error_reporting(E_ALL); also set $CONF['debug'] = 0; to $CONF['debug'] = 1; then try joining and watch for error messages
  16. Mark

    Having Problem w/ Join email

    what is your URL so i can join and see if I can get an error message? Also make sure you are running 0.9 if your not already
  17. Mark

    Having Problem w/ Join email

    as it should be :) what is the exact error you are getting?
  18. Mark

    Having Problem w/ Join email

    What is the exact error you are getting? safe mode is deprecated in 5.3 (you should not be using it, the best solution is to disable safe mode)
  19. Mark

    Screenshot Server Maintenance

    nope just tested and everything is working fine. "white" screenshot is very unusual, what is a domain you are seeing this on?
  20. Mark

    Vote viewer

    Just to follow up, if you want to disable proxy voting add this to your .htaccess file and it should block most proxies without the usual slow lookups, checking of open port 80 (which produces many false positives), or paid API keys. RewriteEngine on RewriteCond %{HTTP:VIA}...
Top