How to create gzip compression

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

    How to create gzip compression

    master, please share tutorial create gzip compression for wapsite

    #2
    Originally posted by Rrobyf View Post
    master, please share tutorial create gzip compression for wapsite
    what do you want to do? Make gzip archives or gzip output compression?

    Added after 3 minutes:

    for output compression check zlib.output.compression or ob_gzhandler at php.net PHP: Runtime Configuration - Manual

    Added after 2 minutes:

    and again for creating files you can use zlib library, PHP: Zlib - Manual ,
    Last edited by mFreak; 06.08.12, 06:59.
    PHP Code:
    $("#mfreak").find(".head brain").clone(); 
    Progress:
    Code:
    [|||___________________________] : 5%
    Output:
    Code:
    Memory limit reached, unable to complete operation.
    Support answer:
    Code:
    Try using a super uber strong mega computer to reach at least 10%.

    Comment


      #3
      add this on the top of your pages:

      PHP Code:
      if(strstr($_SERVER["HTTP_ACCEPT_ENCODING"],"gzip"))
          {
              
      header("Content-Encoding: gzip");
              
      header("Vary: Accept-Encoding");
              
      ob_start('ob_gzhandler');
          } 
      Advertise your mobile site for FREE with AdTwirl

      Comment


        #4
        Originally posted by GumSlone View Post
        add this on the top of your pages:

        PHP Code:
        if(strstr($_SERVER["HTTP_ACCEPT_ENCODING"],"gzip"))
            {
                
        header("Content-Encoding: gzip");
                
        header("Vary: Accept-Encoding");
                
        ob_start('ob_gzhandler');
            } 
        and he should add
        PHP Code:
        ob_end_flush(); 
        at the end of the script. But zlib ob is encouraged if its avaible, as I read somewhere.
        PHP Code:
        $("#mfreak").find(".head brain").clone(); 
        Progress:
        Code:
        [|||___________________________] : 5%
        Output:
        Code:
        Memory limit reached, unable to complete operation.
        Support answer:
        Code:
        Try using a super uber strong mega computer to reach at least 10%.

        Comment


          #5
          Originally posted by mFreak View Post
          and he should add
          PHP Code:
          ob_end_flush(); 
          at the end of the script. But zlib ob is encouraged if its avaible, as I read somewhere.
          No need to add ob_end_flush() :P output is flushed by default :P until u don't use end clean :D
          I need some facebook likes, can you please help me
          http://facebook.com/softwarefreakin
          I noticed social media is really powerful
          Well DONE is better than well SAID

          Comment


            #6
            Originally posted by softwarefreak View Post
            No need to add ob_end_flush() :P output is flushed by default :P until u don't use end clean :D
            what if he need to output before the script ends :P. Just trying to be smart ;), thanks for info.
            PHP Code:
            $("#mfreak").find(".head brain").clone(); 
            Progress:
            Code:
            [|||___________________________] : 5%
            Output:
            Code:
            Memory limit reached, unable to complete operation.
            Support answer:
            Code:
            Try using a super uber strong mega computer to reach at least 10%.

            Comment

            Working...
            X