SunQuest
           FTP Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsSystem AdministrationFTP Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now!
  #1  
Old February 21st, 2002, 12:20 PM
Chaz Chaz is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2001
Location: ma
Posts: 103 Chaz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 23 m 24 sec
Reputation Power: 8
Send a message via ICQ to Chaz Send a message via AIM to Chaz Send a message via Yahoo to Chaz
How can I make .htaccess files show up in ftp?

For some reason I can't see my .htaccess files when I login via ftp. Is there a way to make these files visable? I know there is actually cause I use to be able to see them. How can I get it back like that? Also is there a place where I can view all my .htaccess fiels and their locations through webmin? Thanks in advance.

Reply With Quote
  #2  
Old February 21st, 2002, 01:59 PM
mezz mezz is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2001
Posts: 310 mezz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
I don't think, it has to do with Apache (I am not sure).. Just check in your FTP client's options to make whole file to be viewable (show all). If you FTP client doesn't has this option, then grab different FTP client.

Reply With Quote
  #3  
Old February 21st, 2002, 03:06 PM
M.Hirsch M.Hirsch is offline
Contributing User
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Oct 2000
Location: Back in the real world.
Posts: 5,969 M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 1 Month 1 Day 22 h 39 m 55 sec
Reputation Power: 184
it probably is a ftp-server issue. for security reasons some have access to .ht* disabled so noone can download your (sometimes even cleartext) password files and security configuration.
not too bad, you can still upload most times

if not, make a script that will show them to you ... but be aware that you bypass important security features then!

[edit]
to mezz:
yes, this is no apache issue. 100%.
and to add some explanation: in unix, files starting with a dot are "hidden" files - they donīt appear in standard directory listing. most ftp clients use "ls" for listing, this has to be changed to "ls -a" - if supported by the server... hope this is not too far low-level
[/edit]

Reply With Quote
  #4  
Old February 21st, 2002, 04:04 PM
Chaz Chaz is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2001
Location: ma
Posts: 103 Chaz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 23 m 24 sec
Reputation Power: 8
Send a message via ICQ to Chaz Send a message via AIM to Chaz Send a message via Yahoo to Chaz
I use cute ftp pro if anyone knows how to set it up so I can view these files.

Reply With Quote
  #5  
Old February 21st, 2002, 05:58 PM
mezz mezz is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2001
Posts: 310 mezz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
surfing around in your CuteFTP Pro options there..

Reply With Quote
  #6  
Old February 24th, 2002, 11:55 AM
PhatBarren PhatBarren is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Location: Canada
Posts: 33 PhatBarren User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 8
Send a message via ICQ to PhatBarren
you can always download them using command line ftp. just open up a dos command prompt and type stuff like this:

ftp yourdomain.com
(prompts you for user): Chaz
(prompts you for password): ChazPass
cd to/your/stuff
get .htaccess
bye

same works in a linux terminal too of course. the command line ftp will put all files you download in the directory u you started ftp in. likewise for uploading must start fto in the directory of the file(s) you want to upload and use 'put' rather than 'get'.
use 'ls' to show directory contents like in linux. you may need to use something like 'ftp.yourdomain.com' or an IP or something to to login, but it's the same as what you use in CuteFTP

good luck
__________________
X___________
the PhatBarren

Reply With Quote
  #7  
Old February 24th, 2002, 01:15 PM
M.Hirsch M.Hirsch is offline
Contributing User
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Oct 2000
Location: Back in the real world.
Posts: 5,969 M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level)M.Hirsch User rank is First Lieutenant (10000 - 20000 Reputation Level) 
Time spent in forums: 1 Month 1 Day 22 h 39 m 55 sec
Reputation Power: 184
Quote:
you can always download them using command line ftp. just open up a dos command prompt and type stuff like this:

no. not on my server. download to this file is restricted (and should be), but upload is ok.

but this is a way around the problem that some ftp clients cannot display files that start with a dot.
(GUIs are lame, arenīt they?)

Reply With Quote
  #8  
Old January 28th, 2004, 08:05 PM
mattsoft mattsoft is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2003
Posts: 3 mattsoft User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
if you're using cute ftp, connect to an ftp server, then right click in the remote files window and click filter current view from that menu. check the box for enable server side filtering. in the text box, type -a . that's it. just refresh your window, and your .htaccess file should show up

Reply With Quote
Reply

Viewing: Dev Shed ForumsSystem AdministrationFTP Help > How can I make .htaccess files show up in ftp?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway