Make Your Site Mobile-Friendly in Two Minutes

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Make Your Site Mobile-Friendly in Two Minutes

    After checking out B. Adam Howell's excellent IYHY.com site a couple of weeks ago, I thought it might be a good idea to write a little tutorial about how to make your entire site more mobile-friendly without even touching your pages. You may think that since you write valid code and separate structure from presentation at all times, your site already works great on mobile devices. You may also think bad things don’t happen to good people. In both cases, you'd be wrong.

    The fact of the matter is that the state of HTML rendering in the wireless world is all over the map right now. Some browsers, like Pocket Internet Explorer, are actually pretty good at parsing through standard web pages. Others can scarcely handle layout rules at all. And still worse are the mobile browsers that load all CSS and JavaScript files, attempt to use them, and screw up the experience even more in the process.

    What’s really needed until HTML/CSS/JS support is improved in mobile devices is a little server-side filtering. By pulling out everything a mobile device can possibly choke on before it even gets to the mobile device, we can create a mobile version of our site which is not only viewable on more devices but is much quicker to download as well.

    And you know what? The mobile version of your site is probably going to be much easier on screen-readers too.

    Four easy steps

    Outlined below are the four steps to get this done in a matter of minutes, provided you are in an Apache environment and can run PHP. If you’re not, these steps can easily be adaptable to other technologies.

    Step 1: Set up a domain mirror

    If your site lives at www.myawesomeblog.com, you’re going to want to set up a subdomain at mobile.myawesomeblog.com. How you accomplish this is usually pretty straightforward but differs depending on your host. I use amplehosting and from their control panel, I can add subdomains effortlessly until I pass out from excitement. You want to set up your subdomain as a “mirror” of your main site, meaning the subdomain is really just pointing to your existing site.

    Step 2: Create global_prepend file

    The next thing we’re going to do is a create a PHP file which will be automatically prepended to every page of our site. Call this file something like "global_prepend.php" and throw it at the root of your server:

    PHP Code:
    <br />
    <?php<br />
    function callback($buffer) {<br />
        if ($_SERVER['SERVER_NAME'] == 'mobile.myawesomeblog.com') {<br />
            $buffer = str_replace('http://www.myawesomeblog.com', 'http://mobile.myawesomeblog.com', $buffer);<br />
            $buffer = preg_replace('/[\n\r\t]+/', '', $buffer);<br />
            $buffer = preg_replace('/\s{2,}/', ' ', $buffer);<br />
                $buffer = preg_replace('/(<a[^>]*>)(<img[^>]+alt=")([^"]*)("[^>]*>)(<\/a>)/i', '$1$3$5<br />', $buffer);<br />
            $buffer = preg_replace('/(<link[^>]+rel="[^"]*stylesheet"[^>]*>|<img[^>]*>|style="[^"]*")|<script[^>]*>.*?<\/script>|<style[^>]*>.*?<\/style>|<!--.*?-->/i', '', $buffer);<br />
            $buffer = preg_replace('/<\/head>/i', '<meta name="robots" content="noindex, nofollow"></head>', $buffer);<br />
        }<br />
        return $buffer;<br />
    }<br />
    ob_start("callback");<br />
    ?>
    This code uses a PHP function called ob_start() to read in your entire HTML source, run some rules on it, and then send the output to users’ web browsers… all in real time. The first "if" statement simply checks to see if the user is coming from our special “mobile” URL, and if so, runs seven replace statements on the code. Here’s what each line does:
    1. Changes all URLs to “mobile”-ized URLs.
    2. Strips all linefeeds, carriage returns, and tabs.
    3. Trims multiple spaces down to one (HTML doesn’t recognize more than one space in a row).
    4. Changes any anchored images with alt text to plain text anchors.
    5. Strips all stylesheets, images, inline styles, scripts, and comments (including RDF).
    6. Tells search engine robots not to index or crawl the mobile version of the site so as to not create duplicate listings.


    Step 3: Create global_append file

    Next, we need to create a tiny PHP file which will automatically get added to the end of every file on our site. This is the code that actually outputs the page to the browser. So the flow is like so: Suck code into buffer, siphon fat away, spit contents of buffer into browser.

    The code for the global_append file is below. Call it something like "global_append.php" and throw it at the root of your server:

    PHP Code:
    <br />
    <?php<br />
        ob_end_flush();<br />
    ?>
    Step 4: Enable prepends and appends using .htaccess

    If you don’t already have an .htaccess file at the root of your server, open up a new text file and add these lines to it:

    php_value auto_prepend_file /localfilepath/global_prepend.php
    php_value auto_append_file /localfilepath/global_append.php


    Then save it to the root of your server with the filename ".htaccess". If you already have an .htaccess file, just add the above lines to it.

    * Important Note: If you copy these two lines from your web browser, you might need to delete the carriage return and make your own. Sometimes a browser’s carriage return will cause your .htaccess file to fail (you’ll know immediately if it has failed because your site won’t come up).

    Assuming your subdomain is live, you should now be able to hit your site in a web browser using the special mobile URL and see a nice, compact, imageless, styleless, scriptless version of your site. Voila!

    Last edited by bOrN2pwn; 01.01.10, 18:14.
    BakGat
    Code:
    class Counter {
    public:
      void Count();
      int  ReadDisplay();
    private:
      int  CurrentCount;
    };








    Back up my hard drive? How do I put it in reverse?
    My Community
    BakGat
    sigpic

    #2
    nice tutorial m8 tanx
    ________________
    Jacques
    jacques@gw-designs.co.za
    http://coding.biz.tm
    Come join and lets make it a place to learn all the noobies how to code
    __________________

    NEVER FORGET TO CLICK THE TANX BUTTON IF U LIKE WHAT IM SHARING OR HELPING WITH

    Comment


      #3
      thanks for this tutorial brother!
      mysterio.al - programming is a functional art

      Comment


        #4
        Nice tutorial. Thanks dude!

        Comment

        Working...
        X