[PHP-WIN] uploading files to a web server using ftp

2003-12-03 Thread Brent
Has anyone managed to get a file from a local HDD to a web server without a multipart form etc. Using PHP not a ftp program or anything like that. I'm trying to get the php ftp commands to do it but no luck. Don't need a form or anythign like that. I know the file on my hard disk etc dont need or w

Re: [PHP-WIN] uploading files

2003-03-26 Thread Afan Pasalic
Sorry, there is some part of code you don't need (as $cat_id) - I just grab it from activ file... Afan At 09:02 AM 3/26/2003 -0500, Afan Pasalic wrote: This is a code I use for uploading up to three images at same time. Works fine: $PHP_SELF = 'new_product.php'; $query = "select name from c

Re: [PHP-WIN] uploading files

2003-03-26 Thread Afan Pasalic
This is a code I use for uploading up to three images at same time. Works fine: $PHP_SELF = 'new_product.php'; $query = "select name from categories where cat_id=$cat_id"; $result = mysql_query($query, $db) or die ('Error: wrong query'); $myrow = mysql_fetch_array($result); include('errors.php'

Re: [PHP-WIN] uploading files

2003-03-26 Thread skate
be of more help than that tho... - Original Message - From: "Bobo Wieland" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 26, 2003 8:45 AM Subject: [PHP-WIN] uploading files > Is it possible to upload multiple files at once? ...In a form, using a

[PHP-WIN] uploading files

2003-03-26 Thread Bobo Wieland
Is it possible to upload multiple files at once? ...In a form, using a "file" input and being able to select more then one file? .bobo -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Uploading files.

2002-07-22 Thread Kit Kerbel
I'm having a problem uploading files with php to an nt4 server. Can anyone outline a general method for uploading a jpeg/gif to a specified folder. Thanks in advance. Kit _ Chat with friends online, try MSN Messenger: http://me

[PHP-WIN] uploading files

2001-10-06 Thread Alexandre Busquets Trioal
I´tring to do an upload images files script for my remote site. I have tried this into my local machine and run well, i know that run correctly because my local site(my machine) i don´t need user/pass to access. But my site need autentification pass/user, I put my script into my remote site an

RE: [PHP-WIN] Uploading Files

2001-05-24 Thread Asendorf, John
Sent: Thursday, May 24, 2001 1:14 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: [PHP-WIN] Uploading Files > > > I have a NAGGING file upload problem. > > Details: Win2k, IIS5, PHP v4.0.4 > > As I understand this system, PHP uploads all files to a > tempo

[PHP-WIN] Uploading Files

2001-05-24 Thread Randall Barber
I have a NAGGING file upload problem. Details: Win2k, IIS5, PHP v4.0.4 As I understand this system, PHP uploads all files to a temporary place on disk. From there you can move them anywhere you want to. Well here's the scenario: Users are allowed to upload PRN files. Once uploaded I have a

Re: [PHP-WIN] Uploading Files on Pasword Protected Sites ?

2001-04-26 Thread David Elliott
Hail vshah On 25 April 2001 at 11:45:28 -0400 (EDT) (which was 16:45 where I live) [EMAIL PROTECTED] wrote > If I remove the password protection, it seems to work again. Is there > something that I need to do in the PHP.ini file or is this a IIS related > issue ? IIS not PHP. Check out the wri

[PHP-WIN] Uploading Files on Pasword Protected Sites ?

2001-04-25 Thread vshah
I am running into a very weird problem with an Intranet site I have on IIS 4.0 and PHP 4.04. I have password protected the site, allowing access to the users using their network username/password. But that has resulted none of the forms on the site with enctype="multipart/form-data" not to be w

[PHP-WIN] Uploading files?

2001-04-02 Thread Mike Flynn
Hey all, I would like to enable my users to upload binary data into the database -- into MySQL blobs. I/e they could upload images, or word documents, etc. However, my network administrators have told me that they have PHP file uploads disabled for security reasons. My question to you is th