Why is Pligg slow even with gzip compression?

Register an Account
Pligg Chat Room
Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 05-13-2007, 10:02 AM
New Pligger
 
Join Date: Mar 2007
Posts: 3
Do you enable "Private Messaging". It slowed my pligg in my case.
Reply With Quote
  #12 (permalink)  
Old 05-13-2007, 11:11 AM
dollars5's Avatar
Pligg Donor
 
Join Date: Dec 2006
Location: India
Posts: 1,961
I am not sure whether this works - I connect from a 512 kbps connection - the full site loads in just 1.34 seconds (I test with Firebug extension for FireFox) - but the results are totally different with the http://www.websiteoptimization.com/services/analyze/ service - dunno how far it is true. i even went on to try with a dial-up over the phoneline which rendered the site in 28.77 seconds.

The site is http:/memeorlame.com and the results as presented by the above service:
14.4K 263.20 seconds
28.8K 137.60 seconds
33.6K 119.66 seconds
56K 76.59 seconds
ISDN 128K 31.78 seconds
T1 1.44Mbps 13.72 seconds
Reply With Quote
  #13 (permalink)  
Old 05-13-2007, 02:19 PM
Constant Pligger
 
Join Date: Mar 2006
Posts: 537
If you want to test downloading time, use the FireFox extension FireBug. Then you can download an application like Sloppy to test at different connection speeds. The websiteoptimization.com test is not always accurate.

See this thread for more information on FireBug and Sloppy:

Slow it down with Sloppy
Reply With Quote
  #14 (permalink)  
Old 05-22-2007, 02:55 PM
New Pligger
 
Join Date: Apr 2007
Posts: 17
Quote:
Originally Posted by kbeeveer46 View Post
Another good way to decrease load times is to get rid of the "Add to:" section. All those images are loaded for each story on your page. So if you have 5 of those images and 10 stories on your front page it's loading 50 images. I tested it and it shaved even more time off.
What 'add to' section is this? Can you elaborate so I can use that to cut down load times.

thanks,
Reply With Quote
  #15 (permalink)  
Old 05-22-2007, 04:05 PM
Yankidank's Avatar
Pligg Founder/Coder/Designer
Pligg Version: SVN
Pligg Template: Wistie
 
Join Date: Dec 2005
Location: Ocala, FL
Posts: 3,803
Send a message via AIM to Yankidank Send a message via Skype™ to Yankidank
The Add To feature lets users submit the story to Digg, Reddit, Netscape, etc. You can manually remove this from your template or just turn it off from the Pligg Admin panel.
  1. Log in as a "god" level user
  2. Navigate to your installation directory /admin_config.php?page=Summary
  3. Change the value for the Enable AddTo field to "false"
To manually remove from template delete the following from link_summary.tpl:
Code:
      {if $Enable_AddTo eq 1}
               <img src="{$my_pligg_base}/templates/{$the_template}/images/add.gif" align="absmiddle"/>
              <a href="javascript://" onclick="var replydisplay=document.getElementById('addto-{$link_shakebox_index}').style.display ? '' : 'none';document.getElementById('addto-{$link_shakebox_index}').style.display = replydisplay;"> {#PLIGG_Visual_LS_AddThisLinkTo#}</a>&nbsp;
      {/if}
and...
Code:
       {if $Enable_AddTo eq 1}
           <span id="addto-{$link_shakebox_index}" style="display:none"><br />{#PLIGG_Visual_LS_AddTo#}
                    &nbsp;&nbsp;<a title="submit '{$title_short}' to del.icio.us" href="http://del.icio.us/post" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url={$enc_url}&amp;title={$enc_title_short}', '{#PLIGG_Visual_LS_Delicious#}','toolbar=no,width=700,height=400'); return false;"><img src="{$my_base_url}{$my_pligg_base}/templates/{$the_template}/images/delicious.png" border="0" alt="submit '{$title_short}' to del.icio.us" /></a>
                    &nbsp;&nbsp;<a title="submit '{$title_short}' to digg" href="http://digg.com/submit?phase=2&amp;url={$enc_url}&amp;title={$title_short}&amp;bodytext={$story_content}"><img src="{$my_base_url}{$my_pligg_base}/templates/{$the_template}/images/digg.png" border="0" alt="submit '{$title_short}' to digg" /></a>
                    &nbsp;&nbsp;<a title="submit '{$title_short}' to reddit" href="http://reddit.com/submit?url={$enc_url}&amp;title={$title_short}"><img src="{$my_base_url}{$my_pligg_base}/templates/{$the_template}/images/reddit.gif" border="0" alt="submit '{$title_short}' to reddit" /></a>
                    &nbsp;&nbsp;<a title="submit '{$title_short}' to simpy" href="http://www.simpy.com/simpy/LinkAdd.do?href={$enc_url}&amp;title={$title_short}"><img src="{$my_base_url}{$my_pligg_base}/templates/{$the_template}/images/simpy.png" border="0" alt="submit '{$title_short}' to simpy" /></a>
                    &nbsp;&nbsp;<a title="submit '{$title_short}' to yahoo" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u={$enc_url}&amp;title={$title_short}"><img src="{$my_base_url}{$my_pligg_base}/templates/{$the_template}/images/yahoomyweb.png" border="0" alt="submit '{$title_short}' to yahoo" /></a>
                    &nbsp;&nbsp;|&nbsp;&nbsp; <a href="javascript:bookmarksite('{$title_url}', '{$enc_url}')">{#PLIGG_Visual_LS_Fav_Book#}</a>&nbsp;&nbsp;
           </span>
       {/if}

Now Available: Facebook Connect Module !
Reply With Quote
  #16 (permalink)  
Old 06-11-2007, 06:48 AM
New Pligger
 
Join Date: Oct 2006
Posts: 27
I trim down the code in link_summary.tpl as well some template. I also remove some javascript features as well recoded the css layout of the site. The loading speed of my pligg site loads much faster than the original setup of pligg, at least 3 to 4 times faster than before.
Reply With Quote
  #17 (permalink)  
Old 06-20-2007, 12:25 PM
vrajesh's Avatar
New Pligger
 
Join Date: Jun 2007
Location: Internet
Posts: 1
Send a message via Yahoo to vrajesh
Quote:
I trim down the code in link_summary.tpl as well some template. I also remove some javascript features as well recoded the css layout of the site. The loading speed of my pligg site loads much faster than the original setup of pligg, at least 3 to 4 times faster than before.
Hi,

I joined this forum mainly because of my pligg domain slowness. I am sure Pligg is slow yet.

I request developers to see in the view of "user is right" (you dont need to think "always right" ) .

While searching for a query "is pligg slow" , i straightly jumped to this thread. I hope the quoted solution helps me. Thank you,

Regards,

Vrajesh
Reply With Quote
  #18 (permalink)  
Old 06-20-2007, 12:34 PM
Casual Pligger
 
Join Date: Mar 2007
Posts: 47
Quote:
Originally Posted by vrajesh View Post
Hi,

I joined this forum mainly because of my pligg domain slowness. I am sure Pligg is slow yet.

I request developers to see in the view of "user is right" (you dont need to think "always right" ) .

While searching for a query "is pligg slow" , i straightly jumped to this thread. I hope the quoted solution helps me. Thank you,

Regards,

Vrajesh
Hi Vrajesh,

First I had the same problem, then I found out that it was my hosting "Go Daddy" then I had to buy a dedicated IP for it.

Hope this help.
Reply With Quote
  #19 (permalink)  
Old 06-22-2007, 06:05 AM
Casual Pligger
 
Join Date: May 2007
Posts: 46
It is slow because use smarty. Im working in a new version, more php and less smarty, but still using templates. If you disable, for example, avatars and spell check your pligg will load faster.
Reply With Quote
  #20 (permalink)  
Old 06-22-2007, 04:07 PM
Constant Pligger
 
Join Date: Mar 2006
Posts: 537
Quote:
Originally Posted by GDFH View Post
It is slow because use smarty. Im working in a new version, more php and less smarty, but still using templates. If you disable, for example, avatars and spell check your pligg will load faster.
Ash is also working on speed issues in the core code (and they will be sizeable improvements!).
Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pligg integration with SMF Forum autoinc Questions and Comments 64 05-19-2008 02:22 AM
FIX for gzip compression troubles, no .htaccess gzip compression method required Daniel Questions and Comments 8 02-16-2007 03:16 PM
Gzip compression Daniel Questions and Comments 3 02-14-2007 09:05 AM


Pligg Modules and Pligg Templates from Pligg Pro Find support on the Pligg CMS Forum - 24 hours a day! Make a donation to support Pligg CMS development