I was trying to find ut if anyone had experienced similar problems before... but did'nt find anything.
I start sessions normally, for example:
<?php
session_start();
echo('<p>jep</p>');
?>
But every page there is this session_start() like the above code, the Netscape 4.7 won't print, Nor does it show the source of the page. If I press Print Preview I get weird:
X<X (,where the X's are the boxes, which show the characters which can't be displayed.)
Other information(I use shared memory to handle the sessions)
in the php.ini:
[Session]
session.save_handler = mm
session.save_path =
session.use_cookies = 1
session.name = PHPSESSID
session.auto_start = 0
session.cookie_lifetime = 0
session.cookie_path = /
session.cookie_domain =
session.serialize_handler = php
session.gc_probability = 5
session.gc_maxlifetime = 43300
session.referer_check =
session.entropy_length = 0
session.entropy_file =
;session.entropy_length = 16
;session.entropy_file = /dev/urandom
session.cache_limiter = nocache
session.cache_expire = 120
session.use_trans_sid = Off
Thanks for any tips!!!