Search results

  1. Mark

    Help with error after upgrade 1.5

    hello, that error indicates you have an out of date plugin, disable each plugin until you find the culprit then ensure you install the most current version.
  2. Mark

    Where is the Update Link in Admin?

    The logic is simply a lack of development energy availability, any available time goes into more pressing issues. I did in fact create this function a few years ago but it was a bit tricky as we had to hook it into the license system. If the script were free (like wordpress) or if we had more...
  3. Mark

    Email Spam

    I have posted an update to this plugin which adds SMTP sending support as well as additional spam prevention.
  4. Mark

    Contact Form

    Mark updated Contact Form with a new update entry: SMTP and spam prevention Read the rest of this update entry...
  5. Mark

    Contact Form - SMTP and spam prevention

    this update adds a new filed to the HTML template and some further processing to allow for SMTP and additional spam prevention.
  6. Mark

    Email Spam

    I'll post an update for this plugin today :)
  7. Mark

    screenshots are black

    That site does not render properly on the headless webkit browser our screenshot server uses. There are several HTML errors and encoding conflcits that are most likely responsible. https://validator.w3.org/nu/?doc=http%3A%2F%2Fwww.trafficpi.com%2F While it works fine on most modern browsers...
  8. Mark

    screenshots are black

    No worries :) nope, nothing on your end can be done. This issue happens very rarely, I just restarted apache on the screenshot server and that seems to fix in 99% of the time. mobile screenshots will render just fine, if the header image is not displayed its probably just slow loading, we...
  9. Mark

    screenshots are black

    Hello, you posted on Saturday evening and it is now Monday morning, please understand I am not sitting at my desk all weekend every weekend. I always work hard to answer promptly, but sometimes you just need a little patience on the weekends ;) That said, I can see 400+ screenshots were...
  10. Mark

    New website is not ranked

    This happens when you have several users on the front page that have 0 activity, they all have a technical rank of zero so this tie with no way to break the tie creates some strange results. Once they get a click things will sort out.
  11. Mark

    Emergency: Unable to view stats

    Looks like you might have removed or broken your .htaccess file? none of your clean URL's are working ;)
  12. Mark

    Increase logged in cookie time.

    well first, congrats on having an engaging enough list where you have users logging in every day :) that is an extreme rarity. We have no hooks in this file, so you will need to modify the file directly. sources/misc/session.php find: // Delete sessions that are over an hour old...
  13. Mark

    Making blog for Visiolist

    Hey Folks, I will release the blog plugin shortly... the problem is it is not very "mature" so may require a fair bit of support. I need to decide to release it as premium plugin (supported) or free release (unsupported), given my schedule the past year its been hard to commit to this one.
  14. Mark

    Implemented HTTPS Votes To Pass Google Friendly Links

    correct, HTTPS -> HTTPS should work fine HTTP -> HTTP works fine HTTP -> HTTPS does not
  15. Mark

    Minimum Image size

    There is no minimum size check, you would need to create a custom plugin to add a function like that.
  16. Mark

    Implemented HTTPS Votes To Pass Google Friendly Links

    Interesting, as predicted, the entire web will be SSL very quickly especially with letsencrypt gaining so much momentum. Already my hosting platform now provides free SSL to all shared clients, I'm sure most cPanel hosts will (or already) do the same. This is great news as all sites will have...
  17. Mark

    RSS Feed Importer

    thanks for the feedback about the PHP version. If you are unable to avoid writing warnings to your error log you can also create a script to automatically empty the error_log with a cron job. example: clearlog.php if($_GET['somevar'] == '123123123123'){ $fh = fopen('error_log','w')...
  18. Mark

    RSS Feed Importer

    On the bright side, that is just a warning :) I believe it means one of your members has some problem with their feed OR the magpie code has an issue with your PHP version, did you upgrade PHP recently and then this started? You might check with your host and see if you can disable writing...
  19. Mark

    UCP Small edit

    you can do anything you like, look at what i provided you its very simple and you can easily extend bootstrap labels anyway you like. if you want to use bootstrap prebuilt classes you need to create a plugin with a conditional, its MUCH easier to override the color/background with custom CSS...
  20. Mark

    UCP Small edit

    easy enough with CSS. You can build your class using {$premium_flag} for example... but that is just 1 of many ways to accomplish this. <div class="premiumbox{$premium_flag}">{$lng->user_cp_premium_membership}: {$remain_day_premium}</div> in CSS: .premiumbox0 {color: orange} .premiumbox1...
Top