What I need to do so that my CGI scripts can work correctly on uHostMe Internet servers?
A. You need to create an “.htaccess” file in the directory where you want to use your CGI scripts. (If you use Frontpage, be sure there is not an “.htaccess” file in the directory you want to use already because Frontpage uses “.htaccess” to hold its configuration. You just need to add rules into the “.htaccess” file because it is already created. Do not erase the “.htaccess” file in your “web” directory because that will break your Frontpage Extension configuration): Options +FollowSymlinks Options +ExecCGI AddHandler cgi-script cgi pl To test your settings, in a text editor create a simple test program: #!/usr/bin/perl print “Content-type: text/html\n\n”; print “uHostMe Internet Rules!”; After saving it under the name “test.cgi”, upload the file to your server and change the permissions attribute of that file to “755”, by editing the permissions of the file with your FTP program. Then in your browser, go to “http://www.yourdomain.com/test.cgi” and see if your CGI script works.