Search results

  1. Mark

    footer editing

    sounds like you have an open div from the parent container still open. before opening your footer, close the div. </div> You might also want to run your code through the w3c validator to ensure you don't have any stray tags.
  2. Mark

    Where to change date format?

    http://visiolist.com/community/threads/some-questions.1311/#post-8567
  3. Mark

    eXtremePrivateServers

    very nice job, looks excellent!
  4. Mark

    star rating system

    That's really odd, there is no login required to rate, never has been either.
  5. Mark

    star rating system

    you can use the legacy version if you like until we get the new one built. open sources/details.php and find the following line: //////////// //REVIEW SECTION TO BE UPDATED //////////// $reviews_on = 0; change to: //////////// //REVIEW SECTION TO BE UPDATED ////////////...
  6. Mark

    Dynamic Banner

    Size and position http://php.net/manual/de/function.imagestring.php http://php.net/manual/en/function.imagestring.php experiment with changing them, and you will see exactly what they do.
  7. Mark

    Dynamic Banner

    This button can be configured/styled using a PNG designed in your favorite editor (Photoshop) and by editing the PHP code in settings_buttons.php to,control where the stats are placed
  8. Mark

    Banners

    Hello, this feature was removed in the interest of speed (loading remote images can slow down your site) and security (loading remote images can be dangerous) we have discussed the option to paste a URL and have PHP copy the banner to your local server, but it has never been given priority as...
  9. Mark

    Screenshot Questions

    those screenshots will not be overwritten unless you manually regenerate that specifc site, so you should be all set. The screenshot rendering already waits about 5 seconds to give the page a chance to load, so if your site has not fully loaded you might want to optimize that site to load a...
  10. Mark

    help with the OUT link

    yup, that would explain it :) look forward to hearing how this works out for you
  11. Mark

    help with the OUT link

    hmm sounds like a cache issue, that should not be possible
  12. Mark

    help with the OUT link

    ahh for validation you have a couple different options if memory serves, but testing is needed. If this function is broken, your clicks out will not increase the out count. option 1: replace & with &amp; out_url = '{$list_url}/index.php?a=out&amp;u=' + username+'&amp;go=1'; option 2...
  13. Mark

    help with the OUT link

    I don't think so, but its worth testing to make sure (make sure you test in many browsers as this can be sticky). There is no benefit I am aware of messing with those out links.
  14. Mark

    VisioList 1.3

    hi Kelly, you must go from 0.8 -> 0.9 -> 1.0 first as there were significant changes in those versions. Then you should be able to go from 1.0 -> 1.3, but take a moment and read through the update instruction post for each version topic first just to make sure.
  15. Mark

    updated link code

    :) cool, most likely some overzealous cache
  16. Mark

    Helpfull tips for changing domains

    assuming your sql prefix is vl update vl_sites set banner_url = replace(banner_url,'olddomain.com','newdomain.com'); Again, be sure and take a backup.
  17. Mark

    Register/Approve

    You will need a custom plugin for that, or you can make a feature request, the link code was hidden to prevent spammers from obtaining your link code (an idea I didnt really support at the time either). To be honest I think this should be changed and link code should be available by default in...
  18. Mark

    updated link code

    hmm thats an odd one, I am unable to reproduce this. what skin are you using? and are these the steps to reproduce? 1) login to admin, uncheck google friendly links 2) logout of admin, login to user control panel and click link code 3) links shown are still Google friendly 4) refresh that...
  19. Mark

    Helpfull tips for changing domains

    indeed, you will also need to run a find and replace query in MySQL to update those paths in the new database from the old URL to the new one. take a backup first http://www.mediacollege.com/computer/database/mysql/find-replace.html
Top