Search results

  1. Mark

    Contact Form - Beta

    With some further testing, there will be an issue with form submits and clean URL's. I'll post an update to this plugin over the weekend that will correct this critical bug.
  2. Mark

    Contact Form - Beta

    good catch Basti, the "a" sources will need to be dynamic for sure. Adding to the list...
  3. Mark

    Screenshot generator error

    screenshot server is running fine. Error 500 is internal server error, most likely something in your hosting environment like mod_security. Your error log would reveal more information. You MUST be running version 0.7. The old server used on 0.6 has been terminated.
  4. Mark

    Stats Problem

    an option for psuedo cron VS cron job is what I was planning in the admin panel. Default is pseudo cron, if they experience 0 days then the can setup a cron job.
  5. Mark

    Stats Problem

    permission denied is probably an issue with your host, I suspect the path is wrong and your host overlooked it. As for the PHP error, that looks like an include path is not correct, I will check this again tomorrow but I am quite sure it should be fine. Make sure your cron script is in the...
  6. Mark

    Stats Problem

    depend on your server configuration, they are not universal. For the most reliable answer you should ask your host. Most Cpanel servers would work like so, but again paths can vary greatly: /usr/local/bin/php -f /home/username/public_html/cron.php
  7. Mark

    Problem with Deleting Members!

    also note... if a user joins in the future with the same username as a member who was deleted they will absorb those old stats.. Unlikely, but a side effect you may want to consider.
  8. Mark

    Problem with Deleting Members!

    well perhaps you would have been better to make those site inactive instead of deleting them... that is the problem, if the same site joins again the signup may fail because their username already exists in the stats table. I'm not sure how it will react, I have never had a need to keep...
  9. Mark

    Problem with Deleting Members!

    you are free to change the way that works, and we are willing to assist you in doing so. But we will not be changing the core to store obsolete users data.
  10. Mark

    Problem with Deleting Members!

    Stats are stored in the stats table for each individual member, overall stats simply adds all the members stats together. When you delete a member their stats are deleted as well, and this would be reflected in the overall stats. Deleting obsolete members stats has worked like this for 5+...
  11. Mark

    Problem with Manage Members

    I will make updating the "manage members" function a high priority for next release.
  12. Mark

    Having Problem w/ Join email

    for anyone else who might be experiencing this, PHP "safe mode" is not supported and is officially deprecated in PHP 5.3 and removed completely in 5.4.. If your host is using safe mode, ask them to update to the latest stable version of PHP and harden the security using suPHP and suhosin.
  13. Mark

    Disqus Comments

    Disqus has a service available to export your data for storing in your own DB. But I have no intention of coding any importer for disqus, that said it should be very easy to do.
  14. Mark

    How to remove...

    You should be able to do this via a plugin in "stats_compile_stats" or "stats_build_page" hook locations. but first, try altering the number_format() function to suit your needs in /sources/stats.php http://php.net/manual/en/function.number-format.php once you have the numbers formatted...
  15. Mark

    #1 site load slow

    I found the root RSS feed and confirmed its loading very fast, not sure what might be the cause in your environment. http://visiolist.com/d/dev/?a=stats&u=osempire
  16. Mark

    #1 site load slow

    interestingly when I add that feed URL to the dev site it loads quickly. http://visiolist.com/d/dev/?a=stats&u=osempire But I also noticed your using a different feed URL from the one I found on their website. Could you PM me the URL you are using so I cant test further?
  17. Mark

    #1 site load slow

    hmm RSS feeds should be cached for instant retrieval, can you check your /cache/ folder and ensure files are being created there with the feed data? edit: ahh I see its just that one site.
  18. Mark

    Just wanted to Say!!!

    happy to help Gerry, thanks for the kind words :)
  19. Mark

    RSS Feed Importer

    is stats_compile_stats.php again find: foreach ($rss->items as $item) { add this after: $feed_i++; if($feed_i++ < 7){ then find: $TMPL['rss_content'] .= $this->do_plugin_skin('./plugins/RssImporter','rssitems'); add this after: } that should do it.
  20. Mark

    Terms And Conditions

    Indeed this plugin is on the todo list to be improved. The terms should actually be stored in the database and editable from the admin settings or language manager. :)
Top