Forum Moderators: open
First of all, I'm pretty much a new learner of web design and I have been learning through Front Page 2002 of how to create sites even if I know that Front Page creates a lot of excess code that slows down the page.
But I have this site created through Front Page and I have read about how putting some custom coding into your htaccess file, you can create a custom error page for any 404 errors or broken links. I understand the kind of coding to use and how to do it. The only problem is, I know that working with an htaccess file can mess up Front Page's settings.
Does anyone know of a way to work around this? I'm even willing to pay a programmer to do this for me.
Thank you.
Jordanne
There is something with .htaccess that's different with FP, though. I put something every-day normal and simple in for SSI and it brought the whole site down for 12 hours. Personally, I'll never go near htaccess with a FP site again.
When that site's ever moved again (which it definitely needs to be) I'll ask that the FP extensions not be installed and certain features of FP not be used because I have to make individual modifications on individual pages to take stuff out for seo purposes. It's saving time on one end, but ending up taking more of my time so it actually isn't an economy of time in the long run.
Hmmm. I thought I'd read that there is a compatability problem between FrontPage and FTP. But I certainly won't pretend to know anything about this. If you say it works I believe you. But now I'd like to know more about htaccess/FP compatability. Anyone else have experience with this?
And yep, I've been working on Front Page since 2000 (at age 16) and have become better at it over the years.
Nick - Really? Do you think I can go ahead and do it and experience no problem with conflictions between Front Page and .htaccess?
I've read about so many problems that could happen and some people made it sound like there is no way around it. Although, I've also read somewhere that there is a CGI/Perl script that could do the same trick, but I'm not talented enough to create one and I cannot find one.
Oh and for those who aren't sure about FTP and Front Page, I do it all the time on my website hosted at OneWorldHosting.com
Nick - Really? Do you think I can go ahead and do it and experience no problem with conflictions between Front Page and .htaccess?
I'm afraid I have no idea, I don't use software of any sort so certainly have FP experience.
Common sense dictates that should the .htaccess much things up though you could just remove it....
Nick
compatability problem between FrontPage and FTP
I alwyas, when unsure, backup any file first, just CYA.
Brian
My experience with FP is that sites become corrupted and must be "republished" back to the user's machine. Most FP users whose computers I have seen have directories named "mysite", "mysite2", "mysite3", etc., reflecting different corruption events where the only solution was to open the remote site and republish back to the local HD.
FP has limitations (and a few strengths) as a WYSIWIG editor, but the publishing concept is truly awful.
You may want to get one of the many free ftp clients so that you can manage some of this without going through FP publish. Sorry I can't help you with FP - I don't use it.
cheers
The actual htaccess file for a FP site has a little more gobbledy-gook in it than a straight Apache .htaccess file. You must be sure you can see and save the original, untainted version (that works!) and keep it as your backup copy in its own folder - for "just in case".
I found out, in one server setup, that if you add "deny from" IP addresses, that you must comment out
#allow from all deny from 00.00.000.0
deny from 01.11.111.1 deny from 00.00.000.0 01.11.111.1 Also, if you do a raw .htaccess in a text editor, be sure you include the plain jane FP stuff like:
# -FrontPage- IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* <Limit GET POST>
order deny,allow
deny from all
allow from all #you may need to comment this out?
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName www.yourdomain.com yourdomain.com
AuthUserFile /www/htdocs/domain/_vti_pvt/service.pwd
AuthGroupFile /www/htdocs/domain/_vti_pvt/service.grp ErrorDocument 401 /errorpages/error401.html
ErrorDocument 403 /errorpages/error403.html
ErrorDocument 404 /errorpages/error404.html
ErrorDocument 500 /errorpages/error500.html