LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 10-07-2002, 05:02 PM   #1
hotrodowner
Member
 
Registered: Mar 2002
Distribution: Too many to count
Posts: 368

Rep: Reputation: 30
ftp upload


How do I upload files to my ftp server from Micro$oft Internet Explorer? I use win 98 and XP, and wu-ftp on a red hat system.
 
Old 10-07-2002, 06:16 PM   #2
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
You should be able to use any sort of FTP client like WS-FTP or even from the command line.

ftp hostname or ip address

And if you set the permissions up right, you can do it from a browser window.
 
Old 10-07-2002, 06:57 PM   #3
hotrodowner
Member
 
Registered: Mar 2002
Distribution: Too many to count
Posts: 368

Original Poster
Rep: Reputation: 30
How do I set the permissions up right? I am new at this and need to have it running in the morning, I need to be the only one who can save files to it. <I'm stressing!!>
 
Old 10-07-2002, 07:16 PM   #4
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally posted by hotrodowner
How do I set the permissions up right? I am new at this and need to have it running in the morning, I need to be the only one who can save files to it. <I'm stressing!!>
Well make sure you have a permission setting of this:

rwxr-xr-x

This would allow to give the owner full access and all other users just read and execute access. To give those type of permissions, you would type this:

chmod 755 /filename

To change the ownership of that particular directory for a user, then you would use the chown command like this:

chown user /filename

I'm not totally familar with wu-ftpd, if you need any documentation in setting up anything with that, maybe someone else here might know or you can probably check out their site for online doc's, but if you can login and its up and running, those permission settings should get you going.
 
Old 10-07-2002, 07:23 PM   #5
Thymox
Senior Member
 
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368

Rep: Reputation: 64
Sorry, hotrod, did you say you wanted to upload from IE? Are you trying to put files onto your RH server (running wuftp) from a Windows box?
 
Old 10-07-2002, 07:33 PM   #6
hotrodowner
Member
 
Registered: Mar 2002
Distribution: Too many to count
Posts: 368

Original Poster
Rep: Reputation: 30
Yes, Thymox, That is exactly what I need, exactly!! Any suggestions?
 
Old 10-07-2002, 07:40 PM   #7
Thymox
Senior Member
 
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368

Rep: Reputation: 64
Under 'internet options' you should be able to setup default usernames and passwords and then hopefully drag and droping should work. I doubt it, though. IE is not the best of ftp download clients, so I wouldn't have thought it'd be a particularly good upload one, if at all. I think there's another MS product that'll allow you to upload stuff... be buggared if I can remember what it is though, sorry. There are plenty of Windows ftp clients (for both up and downloads), so IIWY I would take a skooch over to freshmeat or somewhere and download one. I could suggest a very awkward workaround, but it is quite awkward.
 
Old 10-07-2002, 07:46 PM   #8
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Actually from IE, if you have the correct permissions, in your browser if you type this:

ftp://ipaddress or if you have a domain name, you can use that instead of the ip address of your ftp server.

And if you have that user setup, in IE it should prompt for a user name and password if you don't have anonymous login enabled. That's where you would of course use your login and password setup for that machine.

You can check out mine, but I have anonymous login enabled so it won't ask for a username or password, but the permissions are only for download, anonymous users can't upload to it.

ftp://66.68.41.138
 
Old 10-07-2002, 07:50 PM   #9
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
You can also specify a user to login like this:

ftp://drew@66.68.41.138 and that should prompt for in this case drew's password.
 
Old 10-07-2002, 07:53 PM   #10
Thymox
Senior Member
 
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368

Rep: Reputation: 64
I stand corrected. I've only ever used IE on the University's network, where they (understandably) have ftp uploading disabled. Oh, and I keep getting connection refused from that IP, Drew.
 
Old 10-07-2002, 07:56 PM   #11
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally posted by Thymox
Oh, and I keep getting connection refused from that IP, Drew.
Hmm.. not sure, works for me.. I'll check my log files. Shouldn't reject anyone, cause I even tested while on vacation not too long ago in 3 different states on 3 different ISP's.
 
Old 10-07-2002, 07:59 PM   #12
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Thymox, I got basically this for an error in my log files which has to be yours: FTP no transfer timeout, disconnected.

Just if your curious that is.
 
Old 10-07-2002, 08:00 PM   #13
hotrodowner
Member
 
Registered: Mar 2002
Distribution: Too many to count
Posts: 368

Original Poster
Rep: Reputation: 30
how do I tell the server who has parmission to upload? Is it in /etc/ftpaccess for wu-ftpd? Is that file universal?
 
Old 10-07-2002, 08:00 PM   #14
Thymox
Senior Member
 
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368

Rep: Reputation: 64
D'oh! Works in Konqueror but not in Galeon. Shame when Galeon is so much better IMO.
 
Old 10-07-2002, 08:06 PM   #15
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally posted by hotrodowner
how do I tell the server who has parmission to upload? Is it in /etc/ftpaccess for wu-ftpd? Is that file universal?
Its basically the permissions on the directory and files within it.

Do this: ls -al /file or directory you use

And give us the output of that ? And then tell us what user you want to be owner of it and we should be able to give some detail directions on changing permissions.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
learning ftp upload rblampain Linux - Networking 8 11-25-2005 09:55 PM
ftp upload directories rblampain Debian 2 11-20-2005 09:14 PM
FTP upload hinetvenkat Linux - Software 3 06-02-2005 09:34 PM
Cant upload to another FTP brandog Linux - Software 1 05-03-2003 02:47 PM
Can't Upload FTP twantrd Linux - General 1 03-28-2003 09:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 03:43 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration