Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 5171 invoked from network); 30 Nov 2006 09:09:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Nov 2006 09:09:54 -0000 Received: (qmail 63373 invoked by uid 500); 30 Nov 2006 09:09:50 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 63357 invoked by uid 500); 30 Nov 2006 09:09:50 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 63346 invoked by uid 99); 30 Nov 2006 09:09:50 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Nov 2006 01:09:50 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (herse.apache.org: local policy) Received: from [198.87.238.8] (HELO out003.businessxchange.verio.net) (198.87.238.8) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Nov 2006 01:09:37 -0800 Received: from VERIOVEXC008.VRO1.COM ([198.107.191.27]) by out003.businessxchange.verio.net with Microsoft SMTPSVC(6.0.3790.211); Thu, 30 Nov 2006 04:09:15 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Thu, 30 Nov 2006 04:09:59 -0500 Message-ID: <9F1D8DE916F149488921F9AD6B0F740701B0E21E@VERIOVEXC008.VRO1.COM> In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [users@httpd] Writing to a directory Thread-Index: AccUVTY11SE/zhAPSMySpW8D8jXv6AAAb7qgAACfPKAAAM6JoAAATLoQAAAexOAAADyicA== From: "Meir Hazon" To: X-OriginalArrivalTime: 30 Nov 2006 09:09:15.0814 (UTC) FILETIME=[35AA2460:01C7145F] X-Virus-Checked: Checked by ClamAV on apache.org Subject: RE: [users@httpd] Writing to a directory Thanks alot -----Original Message----- From: Boyle Owen [mailto:Owen.Boyle@swx.com]=20 Sent: Thursday, November 30, 2006 11:07 AM To: users@httpd.apache.org Subject: RE: [users@httpd] Writing to a directory =20 > -----Original Message----- > From: Meir Hazon [mailto:meir@optier.com]=20 > Sent: Thursday, November 30, 2006 10:01 AM > To: users@httpd.apache.org > Subject: RE: [users@httpd] Writing to a directory >=20 > Hi, > Then my only true option is to use mod_dav, right? You never really described your application, but I'm assuming you want to be able to edit the content of the site remotely. If so, DAV is probably the way to go. If you wanted to just upload the odd file and are happy server-sided programming, you can also use form-based upload, as described in item 1 of my first response. > Did you use it in the past? Does it really work? Never used it, no idea. Rgds, Owen Boyle Disclaimer: Any disclaimer attached to this message may be ignored.=20 > Thanks, > Meir >=20 > -----Original Message----- > From: Boyle Owen [mailto:Owen.Boyle@swx.com]=20 > Sent: Thursday, November 30, 2006 10:54 AM > To: users@httpd.apache.org > Subject: RE: [users@httpd] Writing to a directory >=20 > =20 >=20 > > -----Original Message----- > > From: Meir Hazon [mailto:meir@optier.com]=20 > > Sent: Thursday, November 30, 2006 9:32 AM > > To: users@httpd.apache.org > > Subject: RE: [users@httpd] Writing to a directory > >=20 > > Thanks Owen, > > Can I use the apache as an http to ftp proxy in order to do so? >=20 > http://httpd.apache.org/docs/2.2/mod/mod_proxy_ftp.html but it only > works for GET... so no PUT. >=20 > Rgds, > Owen Boyle > Disclaimer: Any disclaimer attached to this message may be ignored.=20 >=20 > > Port 21/ ftp protocol is blocked by a firewall. > > The ftp uses PASV mode. > > How can it be done? > > It will not be an anonymous ftp server, users will have to=20 > > log into it. > > Thanks again, > > Meir > >=20 > > -----Original Message----- > > From: Boyle Owen [mailto:Owen.Boyle@swx.com]=20 > > Sent: Thursday, November 30, 2006 10:18 AM > > To: users@httpd.apache.org > > Subject: RE: [users@httpd] Writing to a directory > >=20 > > > -----Original Message----- > > > From: Meir Hazon [mailto:meir@optier.com]=20 > > > Sent: Thursday, November 30, 2006 8:58 AM > > > To: users@httpd.apache.org > > > Subject: [users@httpd] Writing to a directory > > >=20 > > > Hello All, > > >=20 > > > I use Apache 2.0 in order to access remote directories=20 > over the web. > > >=20 > > > Using a web browser it is possible to read and download files=20 > > > from the shown directories but I'm unable to write to any of=20 > > > the directories, > >=20 > > Of course you can't! > >=20 > > The web is essentially an environement for *down-loading* remote > > documents, ie it is read-only... > >=20 > > If you want to *upload* documents, you need to arrange this=20 > specially. > > There are several techniques: > >=20 > > - use a form with enctype=3D"multipart/form-data" and an > type=3D"file"> tag (see a good HTML book for details). BTW, you need > > server-sided logic to handle the data and write it to a file. > >=20 > > - use mod_dav (distributed authoring) or equivalent to=20 > enable the PUT > > method of HTTP (see=20 > http://httpd.apache.org/docs/2.2/mod/mod_dav.html) > >=20 > > - use an FTP server to upload=20 > >=20 > > Rgds, > > Owen Boyle > > Disclaimer: Any disclaimer attached to this message may be ignored.=20 > >=20 > > >=20 > > > I have checked all the operating system permissions (RedHat=20 > > > SE 4.3) and they are all correct. > > >=20 > > > How can it be done? How can I write to the directories=20 > over the web? > > >=20 > > > Thanks, > > >=20 > > > Meir > > >=20 > > > > > =20 > > =20 > > This message is for the named person's use only. It may contain > > confidential, proprietary or legally privileged information. No > > confidentiality or privilege is waived or lost by any=20 > mistransmission. > > If you receive this message in error, please notify the=20 > > sender urgently > > and then immediately delete the message and any copies of=20 > it from your > > system. Please also immediately destroy any hardcopies of=20 > the message. > > You must not, directly or indirectly, use, disclose,=20 > > distribute, print, > > or copy any part of this message if you are not the intended=20 > > recipient. > > The sender's company reserves the right to monitor all e-mail > > communications through their networks. Any views expressed in this > > message are those of the individual sender, except where the message > > states otherwise and the sender is authorised to state them=20 > to be the > > views of the sender's company. > >=20 > >=20 > --------------------------------------------------------------------- > > The official User-To-User support forum of the Apache HTTP Server > > Project. > > See for more info. > > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > " from the digest: users-digest-unsubscribe@httpd.apache.org > > For additional commands, e-mail: users-help@httpd.apache.org > >=20 > >=20 > >=20 > --------------------------------------------------------------------- > > The official User-To-User support forum of the Apache HTTP=20 > > Server Project. > > See for more info. > > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > " from the digest: users-digest-unsubscribe@httpd.apache.org > > For additional commands, e-mail: users-help@httpd.apache.org > >=20 >=20 > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP Server > Project. > See for more info. > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > " from the digest: users-digest-unsubscribe@httpd.apache.org > For additional commands, e-mail: users-help@httpd.apache.org >=20 >=20 > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP=20 > Server Project. > See for more info. > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > " from the digest: users-digest-unsubscribe@httpd.apache.org > For additional commands, e-mail: users-help@httpd.apache.org >=20 --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org