Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

php - can you gzip with zlib compression off -


i trying speed website optimization off websites lack in speed. using http://gtmetrix.com/ test website speed.

one thing need use gzip compression. spent ages trying work , not figure out going wrong.

if click more information in web developer toolbar said gzip enabled decieving isn’t. contacted hosting providers , got following response:

unfortunately not, gzip cause load on our hosted servers therefore similar programs cause same strain.

so when says enabled, think right in saying need check in php.ini file is:

zlib.output_compression        off       off zlib.output_compression_level  -1        -1 zlib.output_handler            no value  no value 

ok, assume needs set on allow gzip compression. correct?

basically have go dedicated server allow gzip £70 month.

so guess asking is: there way using php utillise gzip compression without being enabled hosting provider? have tried many option none successful far.

thanks

gzip/deflate adds no significant load. rip-off prices aren't worth however.

as php, can enabled within scripts:

ob_start("ob_gzhandler"); 

would emulatable via gzencode() if not available; overhead i'd assume..


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -