View Single Post
  #4 (permalink)  
Old 07-12-04, 04:14 PM
kvnband kvnband is offline
Wannabe Coder
 
Join Date: Jun 2003
Posts: 242
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by MasQ
Hello!

I have a local Apache and PHP instalation on my PC, but everytime I access the page i get errors when handling cookies, headers and access to some of the files...

I have tryed to install a webgallery. This is the error i get when trying to view it.

Warning: session_start(): open(/tmp\sess_132b944bec695ce3ab3bde841baf7a8a, O_RDWR) failed: No such file or directory (2) in C:\Programfiler\Apache Group\Apache2\htdocs\gallery\session.php on line 60

Warning: session_start(): Cannot send session cookie - headers already sent by (output started at C:\Programfiler\Apache Group\Apache2\htdocs\gallery\session.php:60) in C:\Programfiler\Apache Group\Apache2\htdocs\gallery\session.php on line 60

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at C:\Programfiler\Apache Group\Apache2\htdocs\gallery\session.php:60) in C:\Programfiler\Apache Group\Apache2\htdocs\gallery\session.php on line 60

Warning: Cannot modify header information - headers already sent by (output started at C:\Programfiler\Apache Group\Apache2\htdocs\gallery\session.php:60) in C:\Programfiler\Apache Group\Apache2\htdocs\gallery\lib\lang.php on line 319


All help is very welcome!
Thank you!

OK, the first error...Well, I don't know what's up with that. It's looking for a file but can't find it. However, the last 3 errors are simple. OK, in order for headers to work, they have to be called before ANYTHING is printed to the page. So, since error number 1 is printed before the header calls, you are getting 3 more errors. Therefore, in reality, you only have one problem, and that is that your server can't find. Just try something for me though. Try to make a directory called tmp in your gallery folder and try running the script again. I don't think it'll work, but it might, so you might as well try it. And let me know how it turns out.

Kevin
Reply With Quote