Welcome Guest, Not a member yet? Register   Sign In
Dynamically generating folders?
#11

[eluser]markanderson993[/eluser]
Well this has got to be the most frustrating thing in the world! I am still getting the Missing Temporary Folder error. Here is my php.ini settings

Code:
;;;;;;;;;;;;;;;;
; 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 ="/Applications/xampp/xamppfiles/temp"

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M

And I have a temp folder there with all permissions. Whhhy! Why must this happen!
#12

[eluser]marcoss[/eluser]
You HAVE to remove the leading ";" in order to get the directive set. On the other hand, i guess you are on Windows, so i would advice you to use the full path, for example:

Code:
upload_tmp_dir = "C:\xampp\tmp"
#13

[eluser]markanderson993[/eluser]
GENIUS!!! Simply brilliant, works right as rain now thank you so much. I never though that a ; meant a comment. I always thought #s only commented.

THANKS
#14

[eluser]marcoss[/eluser]
"#" as well as "/*" and "//" are use to start comments in PHP files, but since this is an INI file, the comments start with a ; and continues until the end of the line.

Glad it worked Wink
#15

[eluser]indocoder[/eluser]
just quick tips..
know your server configuration by phpinfo() it first... it can save you from problem like this...




Theme © iAndrew 2016 - Forum software by © MyBB