Skip to main content

errors

IE doesn't start cookies in iframes

If you're using iframes and it appears you cannot start sessions or set cookies in Internet Explorer (IE), then most likely you have an issue related to the P3P header.

In PHP you'll probably be able to fix the problem by adding the following line at the beginning of your script (for other languages find and use the equivalent):

header('P3P: CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"');

gd-png: fatal libpng error: zlib error

If you upgrade from php4 to php5 you'll see the following error when you're trying to save png files.

gd-png: fatal libpng error: zlib error

The thing is that in php5, the quality range changes for imagePNG from 0-99 to 0-9. therefore you need to change your code to relect this, e.g.

imagepng('','', 9);

If you need more help on the topic feel free to add a comment or create a new post on the Forum

Syndicate content