I created the mySQL database. Uploaded the db.schema file and created the tables within the database. Created a new uer for this database. Modifie the config.inc.php to access the database.
However, I get the following messages. What do I do to fix it?
Any help will be greatly appreciated.
Warning: session_start(): open(/usr/local/psa/home/vhosts/url/httpdocs:/tmp/sess_de0303cee67d037229116295d235f2bd, O_RDWR) failed: No such file or directory (2) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 50
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 50
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 50
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 288
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 384
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/include/class.Template.inc on line 221
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
at C:\IISWWWRoot\public_html\phpopenchat\Index.php:61
[2] session_start(): Cannot send session cookie - headers already sent by (output started at C:\IISWWWRoot\public_html\phpopenchat\config.inc.php:497)
Your webserver has no write permissions in "C:\\WINNT\\TEMP"!
In your favorite shell, do the following:
chmod 777 C:\\WINNT\\TEMP
and press ENTER.
I did the installation (correctly I think).
I created the mySQL database. Uploaded the db.schema file and created the tables within the database. Created a new uer for this database. Modifie the config.inc.php to access the database.
However, I get the following messages. What do I do to fix it?
Any help will be greatly appreciated.
Warning: session_start(): open(/usr/local/psa/home/vhosts/url/httpdocs:/tmp/sess_de0303cee67d037229116295d235f2bd, O_RDWR) failed: No such file or directory (2) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 50
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 50
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 50
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 288
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php on line 384
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/index.php:50) in /usr/local/psa/home/vhosts/url/httpdocs/phpopenchat/include/class.Template.inc on line 221
The TMP folder has to have full write access.
I get the same sort of thing....
I installed via the insructions and i get....
at C:\IISWWWRoot\public_html\phpopenchat\Index.php:61
[2] session_start(): Cannot send session cookie - headers already sent by (output started at C:\IISWWWRoot\public_html\phpopenchat\config.inc.php:497)
Your webserver has no write permissions in "C:\\WINNT\\TEMP"!
In your favorite shell, do the following:
chmod 777 C:\\WINNT\\TEMP
and press ENTER.
PHP 4.3.4 (WINNT)
Browser: Opera/7.22 (Windows NT 5.1; U) [en]
Webserver: Microsoft-IIS/5.0
URI: http://xtreme-master
my Temp folder also has full access.....
any ideas?
I fixed this problem on mine... I had to remove the whitespace before the ?> in config.inc.php
so the end would look like this..
//set version information
include_once(POC_BASE.'/Version.php');
?>
how would you be huh?
Much clearer.... in index.php the line calls...
require_once('config.inc.php');
which also adds the carriage return line feeds (on windows) depending on how the file was received so therefor a header has already been sent!!
I Hope this helps..... :D
Just a fixup... have to remove whitespace AFTER ?>