This release includes all the fixes for the security vulnerabilities found at the beginning of the week. Please dowload a copy and help us test. Report any issues to Sourceforge.
Hi , I have been trying to get this thins to work for days now, but have not even manged to get the setup to work.
the errors i'm getting are
Warning: session_start(): open(/tmp\sess_5f2c12526eb7a664d6259af497a072d6, O_RDWR) failed: No such file or directory (2) in D:\websites\PHPTEST\setup\index.php on line 3
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at D:\websites\PHPTEST\setup\index.php:3) in D:\websites\PHPTEST\setup\index.php on line 3
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at D:\websites\PHPTEST\setup\index.php:3) in D:\websites\PHPTEST\setup\index.php on line 3
Warning: Cannot modify header information - headers already sent by (output started at D:\websites\PHPTEST\setup\index.php:3) in D:\websites\PHPTEST\setup\index.php on line 21
Warning: Unknown(): open(/tmp\sess_5f2c12526eb7a664d6259af497a072d6, O_RDWR) failed: No such file or directory (2) in Unknown on line 0
Warning: Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0
Have you done the following step described in the install.txt file?
Code:
If you are
installing phpWebSite on a Windows system you will need to edit the file
"./core/Core.php". At the top of the file simply comment out the first ini_set
line and uncomment the second ini_set line.
From what i can see in the errors you get i notice the answer might be right there:
Quote:
Please verify that the current setting of session.save_path is correct (/tmp)
/tmp does not look like a valid windows path, regarding what i posted above comment out both first lines as instructed, you can't comment them all as that would defeat the purpose of the lines, so do that and check the session.save_path
I have not installed php on Windows recently so you'll have to check www.php.net for documentation on setting up your php.ini, the following is causing your problem:
Code:
; Argument passed to save_handler. In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
; As of PHP 4.0.1, you can define the path as:
; session.save_path = "N;/path"
; where N is an integer. Instead of storing all the session files in
; /path, what this will do is use subdirectories N-levels deep, and
; store the session data in those directories. This is useful if you
; or your OS have problems with lots of files in one directory, and is
; a more efficient layout for servers that handle lots of sessions.
; NOTE 1: PHP will not create this directory structure automatically.
; You can use the script in the ext/session dir for that purpose.
; NOTE 2: See the section on garbage collection below if you choose to
; use subdirectories for session storage
session.save_path = /tmp
What is this phpWebSite - how is it different than PHPNuke? I have very recently installed Nuke 6.9 and am finding it very obtuse!!! It seems like a great looking, powerful site builder, but not being a php coder, I am at a complete loss as to how to make it do anything but very basic things.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum