Your Webhosting Questions
Answered by the Webhosting Experts
Tags
...
...

Installing Frontpage Extensions on Linux

To install Frontapage extensions on a Linux server, the following is the procedure.

This document describes how to install the Microsoft FrontPage extensions for Apache on Linux. These instructions were written specifically using Red Hat Linux 6.1 and Apache 1.3.9.
The specifics of these instructions assume that you have Apache setup per these instructions.
Getting mod_frontpage
These instructions assume that you are working as root:
su root
I save all downloads in:
/usr/local/download

Create that directory now if it doesn’t already exist:
mkdir /usr/local/download
The first thing we need to get are the cgi binaries to perform the frontpage operations on the server. This requires a quick registration before the massive download of the software. You want the Front Page 200 Server Extensions, which are in the file called:
fp40.linux.tar.gz

The scary thing is that the combined download for MySQL, Apache and PHP is less than the size of this Frontpage Extension download. Save this as:
/usr/local/download/fp40.linux.tar.gz
There is an installation script available to help us, fp_install.sh, which you need to download and save as:
/usr/local/download/fp_install.sh
You can get the latest version of mod_frontpage from here. I am using mod_frontpage-VR4.tar.gz for these instructions. Here are the ftp commands:
cd /usr/local/download
ftp ftp.vr.net
cd pub/apache/mod_frontpage
bin
get mod_frontpage-VR4.tar.gz
bye

Pre-Installation for Front Page Extensions
The download script we downloaded above relies on the existence of the srm.conf and access.conf location pointers in httpd.conf. So, we need to uncomment the lines describing the location of the srm.conf and access.conf files in your Apache installation. Doing this has no effect on Apache since they are empty (by default) anyway. You need to change these lines:
#ResourceConfig conf/srm.conf
#AccessConfig conf/access.conf

to look like this:
ResourceConfig /www/conf/srm.conf
AccessConfig /www/conf/access.conf

Make sure to put the full path!

Installing Front Page Extensions
We are going to install using the script we downloaded above. The instructions in this section step you through the script.
cd /usr/local/download
chmod +x fp_install.sh
./fp_install.sh

I had a problem doing this once where the fp_install.sh had been saved with MS-DOS style end of lines. I kept getting an error saying “File not Found” I think because the /bin/sh line at the start of this script looked like /bin/sh^M. To correct this problem you may need to remove the DOS end of line characters from the file. I did this in VIM with the following command:
:%s/^M//g

You can make the ^M appear by pressing ctrl-V and then ctrl-M.

You should back up all of your web pages and configuration file before continuing. With my Apache setup this is a simple matter of doing:
cd /www
tar czf www.tgz conf servers

This creates an archive called www.tgz which contains all of your web pages and configuration files for Apache and PHP.

Now we can truthfully answer yes that we have created the necessary backups.

Make your default installation path be:
/usr/local/etc/frontpage

so it sits nicely with our httpd and php installations. The script will automatically create a link to this location from /usr/local/frontpage.

Your zcat that can uncompress

Need More Personalized Help?

If you have any further issues, questions, or would like some assistance checking on this or anything else, please reach out to us from your my.hivelocity.net account and provide your server credentials within the encrypted field for the best possible security and support.

If you are unable to reach your my.hivelocity.net account or if you are on the go, please reach out from your valid my.hivelocity.net account email to us here at: [email protected]. We are also available to you through our phone and live chat system 24/7/365.

Tags +
...