Search results

  1. M

    Favicons

    Well favicons can be 32x32 and that only offers 16x16, that could be why.
  2. M

    PHP Includes - Problem?

    This is a common issue and there is a relatively easy we to resolve it. One way is to create a php file in your website's root directory (we'll call it loader.php) and put something like: define( 'ROOT_PATH', dirname(__FILE__) . '/' ); Then at the top of all your first layer php files...
  3. M

    Hide file extensions and the affect on SEO

    It probably won't make that much difference for SEO, but yes to keep your ranking you'll have to use a 301 redirect for each page.
  4. M

    Useful CSS Information

    This is actually really useful, and there was me thinking I was already pretty savvy with CSS and there is a few things in there I never knew existed, Thanks!
  5. M

    Adobe Muse: a wrong step or the future?

    Something like this will lower the price and increase competition of the standard 5 page brochure type websites, but if you deal with anything more complex you probably don't have to worry.
  6. M

    YOUR opinion on website

    The website is nice but it look over 8 seconds to load for me. That could be worth looking into.
  7. M

    What's the code to get a piece of information on my web site to change about every...

    Look at the jQuery scroll packages for something like this (jQuery is a JavaScript library). PHP is a server side language so you cannot interact with the page directly with it.
  8. M

    PHP Editor

    Look at Eclipse, it's great and free.
  9. M

    Online courses

    If you are totally new to it W3Schools is a good resource.
  10. M

    Capturing Flash web content electronically/Print

    Well monitoring the traffic when you load the page tells you that the flash player loads further flash clips which contain the pages for the magazine: http://page.issuu.com/110708150130-633ce7e7369f44ac989b05196f55b4a4/swf/page_1.swf change page_1 incrementally to get all the pages. The...
  11. M

    Need basic CMS advice

    An important point to make is that WordPress is not only easy to use but it's fairly easy to integrate. This is essential if you've never done anything like this before.
  12. M

    First site - hope you'll like it!

    There is a big space at the very bottom of the site you might want to get rid of, but apart from that it seems to do what it's designed for!
  13. M

    Great job offer!

    I can see a lot of improvements that can be made with both of those websites in terms of Search Engine Optimisation, I don't know how they rank on Google now but they have the potential to rank better. Working on a commission basis is not really something that interests me but if you want to...
  14. M

    Webpage review

    It's fine on the right imo. The words can be read but you might want to lighten it up slightly for those who have monitors that aren't calibrated properly.
  15. M

    CMS & image galleries

    A good free CMS is WordPress, I'm willing to bet you can install that then install a plugin for what you are looking for.
  16. M

    Adbrite vs Adsense

    I have heard adbrite pays better but the ads I was getting were rubbish and looked spammy. For the sites I run adsense delivers more professional looking ads.
  17. M

    PHP nl2br() problem

    That's the best way to do it, if you ever need an alternative though look at the PRE tag.
  18. M

    Help critiquing first site.

    One thing I had to look for is your navigation, because it's so small it gets a bit lost at the top. Apart from that though I really like it, it's a nice site!
  19. M

    Looking for feedback on my httpd.conf file

    I reckon you'd actually be better off using .htaccess for this, it's easier to figure out and easier to revert if it goes sideways. Here's a freebie that I implement in .htaccess for compression in my sites: <IfModule mod_deflate.c> # Insert filter SetOutputFilter DEFLATE #...
Top