vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   zlib compression (https://vborg.vbsupport.ru/showthread.php?t=62400)

AndrewD 03-11-2004 06:18 PM

zlib compression
 
Appreciate some help on this.

My Links and Files database hack ran into problems on a site using zlib.output_compression=on and php version 4.3.4. He got garbage on the screen, which was presumably compressed material not being uncompressed or vice versa.

The cryptic comment from his local expert was that

Quote:

In php.ini I changed the line
zlib.output_compression = On
to
zlib.output_compression = Off

Earlier when I was in there I had changed it too on (it was off). In the past I have found better performance from php websites having it on. If the website does zlib compression as well it can cause problems. Most sites check to see if php has it on to avoid the problem, but it seems the link software doesn't.
I seem to be in the minority - I am not taking any precautions, as they say...

How does one write a script that is safe against zlib.output_compression being "on"?

Dean C 03-12-2004 01:13 PM

I believe you also have to enable the module in php.ini

I recently enabled the gd module and had to uncomment a line :)

AndrewD 03-13-2004 12:25 PM

Quote:

Originally Posted by Dean C
I believe you also have to enable the module in php.ini

I recently enabled the gd module and had to uncomment a line :)

No, I don't think that's the point.

The question is how to write code that is safe to this setting? (Indeed, why should one have to bother?)

In the meantime, this is what I've tried, seemingly successfully, but I've no idea if this is adequate, failsafe, etc.

PHP Code:

// Guard against uncontrolled use of zlib library
$zlib ini_get('zlib.output_compression');
ini_set('zlib.output_compression''Off');

headers...
download
            
// Restore setting of zlib library
ini_set('zlib.output_compression'$zlib); 



All times are GMT. The time now is 12:58 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01058 seconds
  • Memory Usage 1,719KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete