Re: [PHP] php upload files

2007-05-24 Thread Richard Lynch
On Wed, May 23, 2007 6:07 am, kats Ant wrote: Hi all a i am running a windows 2003 server with IIS. I have created a php script that uploads a file to a server. in the server i have users and a user1 has permission to folder1, user2 has permissions to folder2. I want an administrator to run

[PHP] php upload files

2007-05-23 Thread kats Ant
Hi all a i am running a windows 2003 server with IIS. I have created a php script that uploads a file to a server. in the server i have users and a user1 has permission to folder1, user2 has permissions to folder2. I want an administrator to run the script and upload a file to these foldes.

[PHP] Re: php upload files

2007-05-23 Thread itoctopus
As far as I remember, IIS used to have a reserved user that it ran all its actions under. All you have to do is to give this user the necessary permissions (I remember the username started with I). Here's a link that might help : http://support.microsoft.com/kb/812614 -- itoctopus -

[PHP] Upload files problem with IIS server

2006-08-04 Thread Mace Eliason
Hi, I am having problems with uploading files to a windows server using php. I have used the same script on other server with no problems. From what I can tell this new server is running windows with IIS. I think the problem is with the path. Does anyone have any suggestions? Here is a

Re: [PHP] Upload files problem with IIS server

2006-08-04 Thread chris smith
On 8/5/06, Mace Eliason [EMAIL PROTECTED] wrote: Hi, I am having problems with uploading files to a windows server using php. I have used the same script on other server with no problems. From what I can tell this new server is running windows with IIS. I think the problem is with the path.

Re: [PHP] Upload files problems

2006-05-26 Thread Rory Browne
It's very hard to read code, when either there is no comments, or the comments are in a language you don't understand. Hablo pocito Espanol, pero no entiendo bastante para entiender que quiere decir. Rory On 5/25/06, Ing. Tomás Liendo [EMAIL PROTECTED] wrote: Hi! When the users of my system

Re: [PHP] Upload files problems

2006-05-26 Thread André Medeiros
I believe that those 90 seconds start counting as soon as php starts interpreting the request, ie. after getting the file and form, not when it starts uploading. The second one wouldn't make much sense. On 5/26/06, Rory Browne [EMAIL PROTECTED] wrote: It's very hard to read code, when either

Re: [PHP] Upload files problems

2006-05-26 Thread Rabin Vincent
On 5/25/06, Ryan Creaser [EMAIL PROTECTED] wrote: Ing. Tomás Liendo wrote: Hi! When the users of my system try to go up files of more than 460 K, they receive the message: Fatal error: Maximum execution time of 90 seconds exceeded in

Re: [PHP] Upload files problems

2006-05-26 Thread Ing. Tom�s Liendo
My host uses safe mode... What other thing can I do? Some other method exists to send files besides POST method? Thank you, Tom. Ryan Creaser [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] Ing. Tomás Liendo wrote: Hi! When the users of my system try to go up files of more

Re: [PHP] Upload files problems

2006-05-26 Thread chris smith
On 5/27/06, Ing. Tomás Liendo [EMAIL PROTECTED] wrote: My host uses safe mode... What other thing can I do? Some other method exists to send files besides POST method? ftp? You haven't solved your problem which actually has nothing to do with file uploading (460k is nothing and should upload

[PHP] Upload files problems

2006-05-24 Thread Ing. Tom�s Liendo
Hi! When the users of my system try to go up files of more than 460 K, they receive the message: Fatal error: Maximum execution time of 90 seconds exceeded in c:\websites\iracbiogenar48\iracbiogen.com.ar\virtual\procesa_msjpriv.php on line 2 I'm using the following method to up load the files:

Re: [PHP] Upload files problems

2006-05-24 Thread Ryan Creaser
Ing. Tomás Liendo wrote: Hi! When the users of my system try to go up files of more than 460 K, they receive the message: Fatal error: Maximum execution time of 90 seconds exceeded in c:\websites\iracbiogenar48\iracbiogen.com.ar\virtual\procesa_msjpriv.php on line 2 I'm using the following

[PHP] Upload Files

2005-05-17 Thread Stuart Nielson
I have a few interpretive questions on uploading files. There is the max_input_time, and the max_execution_time. I am uploading files and they continue to time out after a few minutes. Looking at the php.ini file from phpinfo() shows max_input_time set to -1 and max_execution_time set to 60.

Re: [PHP] Upload files

2003-07-29 Thread Tassos T
hi check the size of file and the post_max_size in phpinfo. you can change the post_max_size in php.ini. Rosen wrote: Hi, I have some problem with uploading files on server with PHP. The upload is ok, but I must set directory permissions with FULL Access - but this is not a good idea :(( Have

[PHP] Upload files

2003-07-28 Thread Rosen
Hi, I have some problem with uploading files on server with PHP. The upload is ok, but I must set directory permissions with FULL Access - but this is not a good idea :(( Have someone idea how I can do this with no setting permissions to full acess ? Thanks, Rosen -- PHP General Mailing List

[PHP] upload files and file types

2003-03-22 Thread Dan Rossi
hi there , i was wondering on security of file uploads , i am currently using the pear uploader class , i can check for allowed file extensions , but it doesnt seem to check for file type , i can currently rename say an image to zip and it uploads , is there anyway a hacker could rename an

Re: [PHP] upload files and file types

2003-03-22 Thread Larry E. Ullman
hi there , i was wondering on security of file uploads , i am currently using the pear uploader class , i can check for allowed file extensions , but it doesnt seem to check for file type , i can currently rename say an image to zip and it uploads , is there anyway a hacker could rename an

[PHP] Upload files to MySQL database.

2002-10-29 Thread Renato Lopes
Hi! I am trying to upload files into a MySQL database. The problem is that I cannot upload anything over 1M. It comes up with an error message. Do I need to manually set the values for post_max_size and upload_max_filesize or are these set to the defaults of 8M and 2M, respectively? Thanks

[PHP] upload files

2002-10-25 Thread Andres, Cyrille
Hello everybody, I want to allow the client to upload a text file on my web server, so I use this code : html head/head body Uploaded files detailsbr ?php printf(Name : %s br, $HTTP_POST_FILES[userfile][name]); printf(Temporary Name : %s br, $HTTP_POST_FILES[userfile][tmp_name]);

[PHP] upload files from the local PC/UNIX to the web sever

2001-01-22 Thread david klein
Hello, Is there a way to upload files from the local PC/UNIX to the web sever? Especially multiple files at the same time? What we need to do at the server and client side? Thank you very much in advance. Best Regards, David