Search results

  1. Mark Barnett

    Implemented Plugin Update Notification

    What about a feature that when you go to the plugin page, it will tell you if your plug in is up to date. Add the version number under info.php and check against database on visiolist.com
  2. Mark Barnett

    Screenshot not showing up

    As stated a deleted the plugin and reinstalled. Now I get the bigger image (200 pixels wide) on the ranking pages (not reduced to 70 pixels) The screens shots that were not showing up on the stats page are showing up.
  3. Mark Barnett

    Screenshot not showing up

    Deleted the old plugin and reinstalled. Now I get the bigger image (200 pixels wide) on the ranking pages (not reduced to 70 pixels)
  4. Mark Barnett

    Screenshot not showing up

    Just downloaded the screenshot plugin and looked at the code. It is different now $domain_string = filter_var($TMPL['url'],FILTER_SANITIZE_URL); $screenshot_url = trim($domain_string, '/'); $screenshot_url = preg_replace('/https?:\/\//', '', $screenshot_url)...
  5. Mark Barnett

    Screenshot not showing up

    $screenshot_url = $parse['host']; changes everything to just domain.com and drops everything afterwards doesn't it. I tested the by changing else { $TMPL['screenshot'] = "{$screenshot_url}"; it printed out domainname.com_med.jpg The image on the server is domainname-forum_med.jpg
  6. Mark Barnett

    Screenshot not showing up

    Don't it already do this by replacing / with -. $parse = parse_url($TMPL['url']); $screenshot_url = $parse['host']; $screenshot_url = str_ireplace('/', '-', "$screenshot_url"); $screenshot_url = $screenshot_url.'_med.jpg';
  7. Mark Barnett

    Screenshot not showing up

    They seem to be websites with more after the .com like /phpBB3/index.php or /forum
  8. Mark Barnett

    Screenshot not showing up

    I have had screenshots that I know are in the screens directory not show up. No image is shown. I have cleared the cache. I even loaded in IE which I never use.
  9. Mark Barnett

    Duplicate meta descriptions

    You can change the title for category pages to Sitename: CategoryName - Page # You can change the description to just append the Category Name and Page # Google does not like Duplicate title tags and duplicate meta descriptions as they show this under Webmaster tools - HTML Improvements
  10. Mark Barnett

    Duplicate meta descriptions

    if you have multiple pages of websites, each page has the same description /index.php /index.php?p=1 /index.php?p=2 /index.php?p=3 /index.php?p=4 /index.php?p=5 /index.php?p=6 /index.php?p=7 /index.php?p=8 /index.php?p=9 as does accounts.php /accounts.php?login /accounts.php?remind
  11. Mark Barnett

    change welcome message emails

    Did you change your settings in the Admin? The email is listed in the skins directory as join_existing_email.html
  12. Mark Barnett

    Long Term Todo Forgot Username

    You are assuming they have put in on their website.
  13. Mark Barnett

    Long Term Todo Forgot Username

    We have forgot password option. What about forgot username option?
  14. Mark Barnett

    Change a username?

    Can I just change it in phpMyAdmin? Do you for see any problems?
  15. Mark Barnett

    Implemented Screenshots List Display

    Or half rendered screenshots, white ones and you could look for outdated ones. Maybe show the screengrab after it is rendered under the Manage users page so you can check it is okay.
  16. Mark Barnett

    Implemented Screenshots List Display

    The problem is you can not tell if a screen shot good as an admin if they are not in the top of the list or you look at the individual stats pages. Not all users look at their stats page nor do some care if the screen is correct. I don't like the user determining the look of my website (black...
  17. Mark Barnett

    Clean URL's

    From host Since the /stats alias is part of the ispCP apache configuration, it would only be possible to change the behaviour by commenting out the appropriate lines in /etc/apache2/sites-available/ispcp.conf , and the working copy (/etc/ispcp/apache2/working/ispcp.conf). If you would like this...
  18. Mark Barnett

    Screenshot problem

    Trying to get all my screen shots straightened out manually.. I have noticed, I have two websites that the screen is not showing up at all. Their URLs are not typical www.domainname.com one is http://www.domain-name.com/news.php so the image is www.domain-name.com-news.php_med.jpg the second...
  19. Mark Barnett

    Implemented Screenshots List Display

    It would be great if you clicked on Screenshots and you get a display all the screen grabs (or at least under Manage Users).
  20. Mark Barnett

    Screenshot problem

    Do you think making the image modifications would be better over at server side and then copy the smaller images over?
Back
Top