Jump to content

php upload :-(


birdie

Recommended Posts

hi, i have a really annoying problem with php and my IIS. i have ensured that all of my folders
are writeable so its got nothing to do with that

<?
$base = $_FILES['file']['tmp_name'];

if(move_uploaded_file(basename($base), $target_path))
{
echo "success";
}
else
{
echo "denied";
}

?>

Instead of "success" i get..

denied
Warning: Unknown: open(C:\PHP\sessiondata\sess_eee7e1e966af0cb54acda12f08d2dd2c, O_RDWR) failed: Permission denied (13) 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 (C:\PHP\sessiondata) in Unknown on line 0



My php.ini file has..

session.save_path= C:\PHP\sessiondata


Any help would be greatly appreciated :-)p
Link to comment
Share on other sites

check your php.ini to make sure the setting are ok and that you are not exceeding the filesize also

;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
upload_tmp_dir = C:\PHP\uploadtemp ; temporary directory for HTTP uploaded files (will use system default if not specified)

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M
Link to comment
Share on other sites

[!--quoteo(post=380284:date=Jun 5 2006, 07:22 PM:name=jvrothjr)--][div class=\'quotetop\']QUOTE(jvrothjr @ Jun 5 2006, 07:22 PM) [snapback]380284[/snapback][/div][div class=\'quotemain\'][!--quotec--]
check your php.ini to make sure the setting are ok and that you are not exceeding the filesize also

;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
upload_tmp_dir = C:\PHP\uploadtemp ; temporary directory for HTTP uploaded files (will use system default if not specified)

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M
[/quote]
ok thanks
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.