|
|
|
||||
|
Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
![]() |
|
|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
|
Thread Tools |
|
|
#1 |
|
Confirmed User
Join Date: Oct 2002
Posts: 3,745
|
Damn people, href="members" is a FILE. href="/members/" is a directory
Well I'm currently doing a search and replace
on the 3rd site today, fixing thousands of html pages where the webmaster didn't know how to come up with a correct URL. So in case anyone reading this doesn't know, you'll know now. A link like this tries to find a FILE called "members": a href="members" If you want the index page of a directory called "members/" you need the traling slash: a href="members/" Many servers are configured to catch this mistake and redirect the user back to members/ instead. In the best case, that means that it generates twice as many hits every time someone loads that page. First they ask for members, then the server tells them to head over to http://yousite.com/members/ instead, then the browser sends another request for members/. In the worst case, it can fuck up a lot of shit. For example that redirect won't work properly with most of your anti-hotlinking code or AVS site .htaccess. So if you didn't know before, now you know if you're linking to a directory (to get it's index page) you must end the URL with a slash (/).
__________________
For historical display only. This information is not current: support@bettercgi.com ICQ 7208627 Strongbox - The next generation in site security Throttlebox - The next generation in bandwidth control Clonebox - Backup and disaster recovery on steroids |
|
|
|
|
|
#2 |
|
Confirmed User
Join Date: May 2003
Location: █◄►█
Posts: 3,558
|
Ok
|
|
|
|
|
|
#3 |
|
i have man boobies
Join Date: Jul 2003
Location: van down by the river
Posts: 13,082
|
blah blah blah
__________________
333-765-551 |
|
|
|
|
|
#4 |
|
Confirmed User
Join Date: May 2004
Location: San Diego, CA
Posts: 1,007
|
Well, members could be a cgi script with / as pathinfo.
But I'm just being a pain in the ass, you are 99% right
__________________
I like ducks. |
|
|
|
|
|
#5 |
|
Dialer Kingpin
Join Date: Jun 2003
Location: New York
Posts: 10,816
|
What are you using to mass replace?
I have some shit I need to edit too. I'm thinking of purchasing MTR(Mass Text Replacer) |
|
|
|
|
|
#6 |
|
Confirmed User
Industry Role:
Join Date: Sep 2004
Location: Dream Land
Posts: 2,422
|
how bout text editor?
or its a tgext to replace mass PAGES?
__________________
EMAIL: admin [AT] kaktuz.com
Need Loads of Traffic? Lets Make Business Today! |
|
|
|
|
|
#7 | |
|
Confirmed User
Join Date: Oct 2002
Posts: 3,745
|
Quote:
find members/ -name '*.html' -print -exec perl -i.bak -p -e "s@members"@members/"@ig" {} \; Adjusted of course for whatever site I'm working on.
__________________
For historical display only. This information is not current: support@bettercgi.com ICQ 7208627 Strongbox - The next generation in site security Throttlebox - The next generation in bandwidth control Clonebox - Backup and disaster recovery on steroids |
|
|
|
|
|
|
#8 |
|
Confirmed User
Join Date: Dec 2004
Location: the center
Posts: 1,454
|
tis good info many peeps don't know this
|
|
|
|
|
|
#9 | |
|
Dialer Kingpin
Join Date: Jun 2003
Location: New York
Posts: 10,816
|
Quote:
|
|
|
|
|
|
|
#10 | |
|
Dialer Kingpin
Join Date: Jun 2003
Location: New York
Posts: 10,816
|
Quote:
MTR is golden when it comes to replacing multiple lines, across multiple files on Windows. The only downside is the company seems to be undermanaged. |
|
|
|
|
|
|
#11 |
|
Confirmed User
Join Date: Nov 2002
Location: Houston
Posts: 1,130
|
what is a file?
|
|
|
|