Search results

  1. Mark

    Installing plugins

    did you install the plugins through the admin panel? White screen indicates a fatal error, check your error log to see what the cause was.
  2. Mark

    Screenshot updating

    Hello, I will check the server when I am at my desk tommorow
  3. Mark

    Site name and description How do I enter Chinese text?

    ahh I understand now, this has been fixed for next release. For now, you can edit sources/join.php and remove these lines: $TMPL['description'] = preg_replace('/[^A-Za-z0-9 .,\-]/', '', $TMPL['description']); $TMPL['title'] = preg_replace('/[^A-Za-z0-9 .,\-]/', '', $TMPL['title']);
  4. Mark

    Site name and description How do I enter Chinese text?

    Hello, it appears you have it working now as I can see asian text on the members listed on your site. https://visiolist.tedsky.com/details/pomosky/
  5. Mark

    Listing under multiple categories

    no such option exists at this time. We had plans to enable tags but it never came to fruition.
  6. Mark

    feed.php and banner images

    Good question! open feed.php and find this (line 161): <description><?php echo $row['description']; ?></description> replace with: <description><?php echo $row['description']; ?><![CDATA[<img src="<?php echo $row['banner_url']; ?>" />]]></description>
  7. Mark

    Cron issues

    Hello, the update should happen on each new day with no cron job required (the first visit on a new day triggers all new_day functions). I would begin by checking your error_log for clues why that function is not running on the first visit after midnight.
  8. Mark

    Weird bug on new month

    do you run manual cron jobs on your list? or just the default setup? Also, what is your URL?
  9. Mark

    GoodBye Parabola

    we have some new security updates, the new skin I am re-working as there have been considerable improvements to bootstrap lately. Still no ETA but I am really hoping to have some time soon.
  10. Mark

    Category Drop Down Menu

    {$category_menu} does that pre-built template tag get you where you need to be? you can nest this UL inside your dropdown <li>
  11. Mark

    Not Feasible Add Cookie when voting

    cookies are pointless for protection, all browsers have incognito mode, sadly, it wouldn't even double the time it takes to cheat :) re-captcha is an option (especially that modern invisible option), I know a few users have already added that... not sure if there is a plugin floating around...
  12. Mark

    Working On It Historical IP logging

    This is a good idea, I will work to add this to a future version. Thanks!
  13. Mark

    What is a unique vote anyway?

    A unique vote is a click in from an IP address that is not in the ip_log. The ip_log is emptied on the first click after midnight via psuedo cron. So once a day the ip_log is reset.
  14. Mark

    SMPT mailing system

    If you are experiencing issues the place to check is: /sources/misc/skin.php line 141: $mail->SMTPSecure = 'tls'; change to: $mail->SMTPSecure = 'ssl'; Let me know how you make out, we may need to add a variable and admin field for this.
  15. Mark

    Upgrade 1.3 to 1.5 did not work

    The upgrade from 1.3 -> 1.5 should have worked no problem, many users have followed that upgrade path. If you still have your original database all you need to do is import the _sites and _stats tables and your 30 members will show up. Further, if you can restore to 1.3 and send me FTP login...
  16. Mark

    Wondering how to change User_content

    You should be able to find those in the language / phrase editor
  17. Mark

    You can vote unlimited amounts of time?

    Hello, it appears you have a plugin or custom code that is breaking the "in" functions and affecting votes. Please disable all plugins or custom code and try again, then once confirmed its working as expected re-enable each plugin 1 at a time until you find the culprit.
  18. Mark

    How to make a small list

    My Apologies, I haven't forgot about you, just got swamped. Did you still need help with this?
  19. Mark

    How to make a small list

    Where would you like the small list to be displayed? on another site? in your wrapper? You could simply parse the rss feed to get the top 5 results. http://aatoplist.com/feed.php
Top