timlauer
Posts: 12
|
| Posted: 05/26/2005, 1:19 PM |
|
Hi there,
I come across this error again with the new version of CCS *.24
th eold uploader had at the beginning the same problem no matter where I put the Temp directory or the FileUpload folder.
I use the single or a multigrid to upload the files. Both are working and send the files intot the root directory but the error message always appear.
"Unable to upload the file specified in search - temporary upload folder doesn't exist."
In the *.php section of the Class_Initialize Event
$this->FileUpload1 = new clsFileUpload("FileUpload1","search", "%TEMP", "./", "*", "", 10000);
Any help would be very much appreatiated.
Thanks
Tom
|
 |
 |
Nicole
Posts: 586
|
| Posted: 05/27/2005, 2:10 AM |
|
Tom,
In your case environment variable TEMP is used as temporary folder. You need to verify your environment variables to make sure that TEMP variable exists, it points to valid existing folder and that folder has read/write permissions.
_________________
Regards,
Nicole |
 |
 |
timlauer
Posts: 12
|
| Posted: 05/28/2005, 4:01 PM |
|
Nicole,
I guess I have no special write permissions on the hosting server. Upload works but not proper without errors.
|
 |
 |
peterr
Posts: 5971
|
| Posted: 05/28/2005, 4:38 PM |
|
This looks strange, because AFAIK this works for most people. I see people having occasional problems with specifying wrong path or permissions, but usually those things get resolved on the server. BTW, which OS are you using? Windows or Linux?
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
timlauer
Posts: 12
|
| Posted: 05/29/2005, 2:19 AM |
|
Quote peterr:
This looks strange, because AFAIK this works for most people. I see people having occasional problems with specifying wrong path or permissions, but usually those things get resolved on the server. BTW, which OS are you using? Windows or Linux?
peter,
I have a mixed environmnet. I create the files on windows2000 with IIS5 and MySQL 4.022 and load it on the hosting server which is a linux, Red Hat system with Apache running on it and MySQL version3.23.0
I have no root prevelidge on this hosting server. My windows200 server tells me that I have no write permissions. I changed all folders at the wwwroot to full write and read permissions. NO change.
It is annoying but I can live with it.
Thanks,
Tom
|
 |
 |
Nicole
Posts: 586
|
| Posted: 05/30/2005, 1:37 AM |
|
Hmm.. I don’t familiar to Linux environment settings, but TEMP variable that you’re using for Temporary folder may not exist there. Try to use a different folder as Temporary folder and define a path to it like
/path_to_temp/temporary folder
Taking into account that this folder should exist on hosting server and have read/write permissions
_________________
Regards,
Nicole |
 |
 |
|