SlideShare una empresa de Scribd logo
1 de 5
Descargar para leer sin conexión
Windows Hosting Documentation


Web Hosting Basics
Control Panel
Access your Control Panel at http://your-domain-name.com/stats/ to change your password,
setup your e-mail accounts, administer your account, view your visitor stats, check your disk
space and data transfer usage, and more.

Uploading your web site
If you have Microsoft FrontPage extensions installed, only use FrontPage to upload your site or
you might corrupt the extensions and your site. All other customers will use an FTP program such
as WS_FTP or Cute FTP for uploading. These programs contain instructions for their use. Your
activation notice provides you with the information you need to configure your FTP program: your
IP address, userID, and password. You will need to use your IP address until your domain name
propagates. Always upload your web pages and text files using ASCII mode and upload images
and most other files using BINARY mode.

Your home page
In order to make your home page appear when someone visits your domain you will need to give
it a proper file name. Our Windows NT-based servers look for a home page in the following order:
default.asp, default.htm, index.htm, index.html.

Directories
Upload your files to the webroot/ directory. A cgi-bin/ directory has been set up for your personal
Perl scripts. An anonymous/ directory has been set up for anonymous FTP access. You may
create new directories for your own use by either clicking "mkdir" in your FTP program or by
uploading a folder from your hard drive. You can not password protect any directories.

Usage Statistics
See who is visiting your web site, when they visit, what sites referred them to yours (if any), and
more by checking your usage statistics. Raw log files are generated for your account which you
may analyze with third-party programs such as WebTrends.

Can't access your site?
If you can't access your domain name, use your IP address from your activation notice. If you
can't access your domain after three days after signing up, contact us to make sure there isn't
any problem with your domain registration. If your password doesn't work, check your activation
notice for the correct spelling and make sure "Caps Lock" is not activated on your keyboard. You
may contact us if you need to reset your password. If you can't connect to your web site at all,
there may be connectivity problems somewhere between your location and the data center where
your web site is located.




Microsoft® FrontPage®
Microsoft FrontPage is an extremely popular web site authoring tool that is used by roughly one
out of every four of our customers. If you are using FrontPage to create your web site, the
following information will be of help to you.

FrontPage Server Extensions
If you use FrontPage to create your web site, you will want to have the FrontPage Server
Extensions installed in your account. The Server Extensions allow you to use the server-side
functionality of FrontPage, including remote administration and authoring and the ability to use
the WebBot components. You may request them when placing your order. Contact our Support
department if you already have an account and would like the extensions installed. There is no
charge to have the extensions installed or removed.

Precautions
You need to be aware of the following issues when using FrontPage:

    •   Disk space usage: FrontPage duplicates certain information into indices and hidden
        files. This adds "overhead", increasing
        the storage space required for your files.
    •   Timeout errors: If your web site has many files or you use the Search, Table of
        Contents, or Discussion Forum WebBots, your server connection may "timeout" when
        you publish or update your web site.
    •   Corrupt Extensions: Do not use your Control Panel to set up password protected
        directories or set file permissions or you will likely corrupt your FrontPage extensions and
        your web site. Also, do not use an FTP program to upload files to your site or you will
        corrupt your extensions (you may upload scripts to your cgi-local directory though).
    •   Features Not Available: The following features are not available on our UNIX-based
        servers: Active Server Pages, ActiveX, VBScript, ODBC and MSSQL database
        functionality. However, these features are available on our NT-based servers.


Customer Support
We do not provide support for the use of Microsoft FrontPage. Questions about how to use the
program should be sent to Microsoft. Our role is merely to install the server extensions and
ensure they work properly.




Special Features

Midi Files
You can add sound or music to spice up your web site by embedding a MIDI file in your page.
MIDI files are typically only about 15k to 25k in size, so they do not take very long to load. You
can use MIDI files as background music on your page by adding the following code to your web
page:
                      <embed src="yoursong.mid" autostart=true hidden=true>
                      <noembed><bgsound src="yoursong.mid"></noembed>
Replace yoursong.mid with the name of your midi file.


Server Side Includes
Server Side Include (SSI) commands are executed by the server before your web page is sent to
a visitor's web browser. These allow you to add useful information to your web page such as the
current date and time or the content of a separate file. To implement Server Side Includes, just
add the following code to your page and rename your web page with a .shtml (or .shtm, or .stm)
extension.

    •    Include the content of a file in same directory:
         <!--#include file="somefile.htm" -->

    •    Include the content of a file in different directory:
         <!--#include virtual="/somedirectory/somefile.htm" -->

    •    Include the output of a cgi script:
         <!--#exec cgi="/cgi-bin/somescript.pl" -->

    •    Display the current date and time (EST):
         <!--#config timeframe="time options" -->
         <!--#config timefmt="%A, %B %d, %Y %I:%M%p" -->
         <!--#echo var="date_local" -->
           You can use these codes:


    •    Display the date the page was last modified:
         <!--#echo var="Last_Modified" -->

    •    Display the size of a file:
         <!--#fsize file="image.gif" -->


MS NetShow (RealAudio, RealVideo)
Our Windows NT-based hosting accounts give you access to MS NetShow server which supports
RealAudio® and RealVideo® streaming. To implement streaming audio or video on your web
site, you will need to do the following:

    1. Download Real Player and Real Producer from the RealNetworks web site.
    2. Convert your audio or video file to a RealMedia file according to the instructions in the
       RealProducer software. If you have questions about this step, please contact
       RealNetworks for support.
    3. Upload your .rm file to your web site in BINARY mode.
    4. Create a .ram file containing the following line of code and upload it to your web site in
       ASCII mode.
       rtsp://your-domain-name.com/userID/filename.rm
       (Be sure to use your domain name, userID, and .rm file name)
    5. Create a link on your web page to your newly created .ram file like this:
       <a href="filename.ram">Click Here</a>

For additional help, download the RealProducer G2 Authoring Kit.

Database Data Source Names (DSNs)
A Data Source Name, or DSN, is how you reference your database in your ASP applications. To
create a DSN:

    1.   Access your Control Panel at http://www.your-domain.com/stats/
    2.   Click on Database Tools
    3.   Scroll to ODBC Data Sources section
    4.   Click on Add New Data Source button
5.   Enter your DSN Name (give it any name you want)
    6.   Enter your Database Name (include path to file such as: datamy.mdb)
    7.   Select your Database Type (Access, FoxPro, MSSQL)
    8.   Click Insert button

Remember that you must reference your DSN as userid.[DSNName]. Your database must be
stored in the data/ directory of your hosting account if you want to allow write access in your web
applications. By default, in order to protect your databases, the /data directory is configured to
deny all web requests.

MS SQL Server
Our advanced Windows NT-based hosting plan offers shared access to our MS SQL server. You
can manage your MS SQL 7.0 database by using Microsoft SQL Server 7 Enterprise Manager.
To connect to our SQL server, use the following information:

    •    SQL Server location: (see your Control Panel for location or contact our Support
         Department.)
    •    User name / Password: use your hosting account userID/password
    •    Database Name: same as your hosting account userID


SSL Secure Server
Transfer information securely between your web site and web browser by using our SSL secure
server. You will need to obtain your own Digital Certificate from Verisign to reference a secure
URL using your own domain name: https://www.your-domain-name.com/orderform.html

CGI Scripts
Our servers have the capability to run CGI scripts based on Perl. However, we do not provide
programming support or help writing scripts. Here are some tips:

    •    Upload your scripts to the cgi-bin directory in ASCII mode
    •    First line of Perl scripts should read: #!/usr/local/bin/perl
    •    Be sure Perl scrips include: print "Content-type: text/htmlnn";
    •    Use the Perl Script Checker in your Control Panel to check your syntax
    •    To include the path to another file use:
         $ENV{DOCUMENT_ROOT}/somedirectory/somefile.html
                                                               AUTH_TYPE
    •    You can use the following environment variables:
    •    Here's a list of our installed Perl modules:
           ./IO/Pipe.pm




Additional Resources
Useful Programs
You may find the following programs to be useful:

    •    E-mail clients: Eudora, Netscape, Microsoft Outlook
    •    FTP clients: WS_FTP, Cute FTP
•   Web design tools: Microsoft Frontpage, Netscape Composer, Adobe GoLive,
    Macromedia Dreamweaver
•   Graphic tools: Adobe Photoshop

Más contenido relacionado

La actualidad más candente

Web Server Administration
Web Server AdministrationWeb Server Administration
Web Server Administrationwebhostingguy
 
Apache Server Tutorial
Apache Server TutorialApache Server Tutorial
Apache Server TutorialJagat Kothari
 
Apache Web Server Architecture Chaitanya Kulkarni
Apache Web Server Architecture Chaitanya KulkarniApache Web Server Architecture Chaitanya Kulkarni
Apache Web Server Architecture Chaitanya Kulkarniwebhostingguy
 
Web servers – features, installation and configuration
Web servers – features, installation and configurationWeb servers – features, installation and configuration
Web servers – features, installation and configurationwebhostingguy
 
Configuring the Apache Web Server
Configuring the Apache Web ServerConfiguring the Apache Web Server
Configuring the Apache Web Serverwebhostingguy
 
Web Server - Internet Applications
Web Server - Internet ApplicationsWeb Server - Internet Applications
Web Server - Internet Applicationssandra sukarieh
 
Apache web server
Apache web serverApache web server
Apache web serverSabiha M
 
Web server hardware and software
Web server hardware and softwareWeb server hardware and software
Web server hardware and softwareVikram g b
 
Server-side Java Programming
Server-side Java ProgrammingServer-side Java Programming
Server-side Java ProgrammingChris Schalk
 
APACHE WEB SERVER FOR LINUX
APACHE WEB SERVER FOR LINUXAPACHE WEB SERVER FOR LINUX
APACHE WEB SERVER FOR LINUXwebhostingguy
 

La actualidad más candente (19)

Web Server Administration
Web Server AdministrationWeb Server Administration
Web Server Administration
 
Apache Server Tutorial
Apache Server TutorialApache Server Tutorial
Apache Server Tutorial
 
COZA HOST HELP
COZA HOST HELPCOZA HOST HELP
COZA HOST HELP
 
Apache Web Server Architecture Chaitanya Kulkarni
Apache Web Server Architecture Chaitanya KulkarniApache Web Server Architecture Chaitanya Kulkarni
Apache Web Server Architecture Chaitanya Kulkarni
 
Web servers – features, installation and configuration
Web servers – features, installation and configurationWeb servers – features, installation and configuration
Web servers – features, installation and configuration
 
Configuring the Apache Web Server
Configuring the Apache Web ServerConfiguring the Apache Web Server
Configuring the Apache Web Server
 
Apache Web Server Setup 1
Apache Web Server Setup 1Apache Web Server Setup 1
Apache Web Server Setup 1
 
Apache Web Server Setup 2
Apache Web Server Setup 2Apache Web Server Setup 2
Apache Web Server Setup 2
 
Apache Web Server Setup 3
Apache Web Server Setup 3Apache Web Server Setup 3
Apache Web Server Setup 3
 
5-WebServers.ppt
5-WebServers.ppt5-WebServers.ppt
5-WebServers.ppt
 
Web Server - Internet Applications
Web Server - Internet ApplicationsWeb Server - Internet Applications
Web Server - Internet Applications
 
Team lab install_en
Team lab install_enTeam lab install_en
Team lab install_en
 
Apache web server
Apache web serverApache web server
Apache web server
 
Web server hardware and software
Web server hardware and softwareWeb server hardware and software
Web server hardware and software
 
Apache error
Apache errorApache error
Apache error
 
Server-side Java Programming
Server-side Java ProgrammingServer-side Java Programming
Server-side Java Programming
 
Apache web service
Apache web serviceApache web service
Apache web service
 
APACHE WEB SERVER FOR LINUX
APACHE WEB SERVER FOR LINUXAPACHE WEB SERVER FOR LINUX
APACHE WEB SERVER FOR LINUX
 
Apache Web Server Setup 4
Apache Web Server Setup 4Apache Web Server Setup 4
Apache Web Server Setup 4
 

Destacado

Getting Started With Linux® Shared Hosting
Getting Started With Linux® Shared HostingGetting Started With Linux® Shared Hosting
Getting Started With Linux® Shared Hostingwebhostingguy
 
Dedicated Email Servers
Dedicated Email ServersDedicated Email Servers
Dedicated Email Serverswebhostingguy
 
Copyright, 1999 © Quinotaur Design. All rights reserved.
Copyright, 1999 © Quinotaur Design. All rights reserved.Copyright, 1999 © Quinotaur Design. All rights reserved.
Copyright, 1999 © Quinotaur Design. All rights reserved.webhostingguy
 

Destacado (7)

Session slides
Session slidesSession slides
Session slides
 
6.7 PDF
6.7 PDF6.7 PDF
6.7 PDF
 
Getting Started With Linux® Shared Hosting
Getting Started With Linux® Shared HostingGetting Started With Linux® Shared Hosting
Getting Started With Linux® Shared Hosting
 
Web Hosting Tips
Web Hosting Tips Web Hosting Tips
Web Hosting Tips
 
Dedicated Email Servers
Dedicated Email ServersDedicated Email Servers
Dedicated Email Servers
 
Copyright, 1999 © Quinotaur Design. All rights reserved.
Copyright, 1999 © Quinotaur Design. All rights reserved.Copyright, 1999 © Quinotaur Design. All rights reserved.
Copyright, 1999 © Quinotaur Design. All rights reserved.
 
Batten
Batten Batten
Batten
 

Similar a Windows Hosting Documentation

Inmagic Content Server Enterprise/Standard v1.3 Install Notes
Inmagic Content Server Enterprise/Standard v1.3 Install NotesInmagic Content Server Enterprise/Standard v1.3 Install Notes
Inmagic Content Server Enterprise/Standard v1.3 Install Noteswebhostingguy
 
06.m3 cms set-upwebserver
06.m3 cms set-upwebserver06.m3 cms set-upwebserver
06.m3 cms set-upwebservertarensi
 
Introducing asp
Introducing aspIntroducing asp
Introducing aspaspnet123
 
Add a web server
Add a web serverAdd a web server
Add a web serverAgCharu
 
Deploy and Publish Web Service
Deploy and Publish Web ServiceDeploy and Publish Web Service
Deploy and Publish Web Servicepradeepfdo
 
Hostgator cPanel - An Overview
Hostgator cPanel - An OverviewHostgator cPanel - An Overview
Hostgator cPanel - An Overviewwhatishostgator
 
Std 12 Computer Chapter 3 Designing Simple Website using KompoZer
Std 12 Computer Chapter 3  Designing Simple Website using KompoZerStd 12 Computer Chapter 3  Designing Simple Website using KompoZer
Std 12 Computer Chapter 3 Designing Simple Website using KompoZerNuzhat Memon
 
Web-Technologies 26.06.2003
Web-Technologies 26.06.2003Web-Technologies 26.06.2003
Web-Technologies 26.06.2003Wolfgang Wiese
 
Intro to advanced web development
Intro to advanced web developmentIntro to advanced web development
Intro to advanced web developmentStevie T
 

Similar a Windows Hosting Documentation (20)

Inmagic Content Server Enterprise/Standard v1.3 Install Notes
Inmagic Content Server Enterprise/Standard v1.3 Install NotesInmagic Content Server Enterprise/Standard v1.3 Install Notes
Inmagic Content Server Enterprise/Standard v1.3 Install Notes
 
06.m3 cms set-upwebserver
06.m3 cms set-upwebserver06.m3 cms set-upwebserver
06.m3 cms set-upwebserver
 
Web hosting Free Hosting
Web hosting Free HostingWeb hosting Free Hosting
Web hosting Free Hosting
 
Web hosting get start online
Web hosting get start onlineWeb hosting get start online
Web hosting get start online
 
Introducing asp
Introducing aspIntroducing asp
Introducing asp
 
Chapter 26
Chapter 26Chapter 26
Chapter 26
 
INLS461_day14a.ppt
INLS461_day14a.pptINLS461_day14a.ppt
INLS461_day14a.ppt
 
unit1 part 1 sem4 php.docx
unit1 part 1 sem4 php.docxunit1 part 1 sem4 php.docx
unit1 part 1 sem4 php.docx
 
Add a web server
Add a web serverAdd a web server
Add a web server
 
Learn ASP
Learn ASPLearn ASP
Learn ASP
 
Deploy and Publish Web Service
Deploy and Publish Web ServiceDeploy and Publish Web Service
Deploy and Publish Web Service
 
A comprehensive software infrastructure of .Net
A comprehensive software infrastructure of .Net  A comprehensive software infrastructure of .Net
A comprehensive software infrastructure of .Net
 
Hostgator cPanel - An Overview
Hostgator cPanel - An OverviewHostgator cPanel - An Overview
Hostgator cPanel - An Overview
 
web hosting
web hostingweb hosting
web hosting
 
Web application architecture
Web application architectureWeb application architecture
Web application architecture
 
Std 12 Computer Chapter 3 Designing Simple Website using KompoZer
Std 12 Computer Chapter 3  Designing Simple Website using KompoZerStd 12 Computer Chapter 3  Designing Simple Website using KompoZer
Std 12 Computer Chapter 3 Designing Simple Website using KompoZer
 
Php Presentation
Php PresentationPhp Presentation
Php Presentation
 
Web-Technologies 26.06.2003
Web-Technologies 26.06.2003Web-Technologies 26.06.2003
Web-Technologies 26.06.2003
 
Intro to advanced web development
Intro to advanced web developmentIntro to advanced web development
Intro to advanced web development
 
What is a Website?
What is a Website? What is a Website?
What is a Website?
 

Más de webhostingguy

Running and Developing Tests with the Apache::Test Framework
Running and Developing Tests with the Apache::Test FrameworkRunning and Developing Tests with the Apache::Test Framework
Running and Developing Tests with the Apache::Test Frameworkwebhostingguy
 
MySQL and memcached Guide
MySQL and memcached GuideMySQL and memcached Guide
MySQL and memcached Guidewebhostingguy
 
Novell® iChain® 2.3
Novell® iChain® 2.3Novell® iChain® 2.3
Novell® iChain® 2.3webhostingguy
 
Load-balancing web servers Load-balancing web servers
Load-balancing web servers Load-balancing web serversLoad-balancing web servers Load-balancing web servers
Load-balancing web servers Load-balancing web serverswebhostingguy
 
SQL Server 2008 Consolidation
SQL Server 2008 ConsolidationSQL Server 2008 Consolidation
SQL Server 2008 Consolidationwebhostingguy
 
Master Service Agreement
Master Service AgreementMaster Service Agreement
Master Service Agreementwebhostingguy
 
PHP and MySQL PHP Written as a set of CGI binaries in C in ...
PHP and MySQL PHP Written as a set of CGI binaries in C in ...PHP and MySQL PHP Written as a set of CGI binaries in C in ...
PHP and MySQL PHP Written as a set of CGI binaries in C in ...webhostingguy
 
Dell Reference Architecture Guide Deploying Microsoft® SQL ...
Dell Reference Architecture Guide Deploying Microsoft® SQL ...Dell Reference Architecture Guide Deploying Microsoft® SQL ...
Dell Reference Architecture Guide Deploying Microsoft® SQL ...webhostingguy
 
Managing Diverse IT Infrastructure
Managing Diverse IT InfrastructureManaging Diverse IT Infrastructure
Managing Diverse IT Infrastructurewebhostingguy
 
Web design for business.ppt
Web design for business.pptWeb design for business.ppt
Web design for business.pptwebhostingguy
 
IT Power Management Strategy
IT Power Management Strategy IT Power Management Strategy
IT Power Management Strategy webhostingguy
 
Excel and SQL Quick Tricks for Merchandisers
Excel and SQL Quick Tricks for MerchandisersExcel and SQL Quick Tricks for Merchandisers
Excel and SQL Quick Tricks for Merchandiserswebhostingguy
 
Parallels Hosting Products
Parallels Hosting ProductsParallels Hosting Products
Parallels Hosting Productswebhostingguy
 
Microsoft PowerPoint presentation 2.175 Mb
Microsoft PowerPoint presentation 2.175 MbMicrosoft PowerPoint presentation 2.175 Mb
Microsoft PowerPoint presentation 2.175 Mbwebhostingguy
 

Más de webhostingguy (20)

File Upload
File UploadFile Upload
File Upload
 
Running and Developing Tests with the Apache::Test Framework
Running and Developing Tests with the Apache::Test FrameworkRunning and Developing Tests with the Apache::Test Framework
Running and Developing Tests with the Apache::Test Framework
 
MySQL and memcached Guide
MySQL and memcached GuideMySQL and memcached Guide
MySQL and memcached Guide
 
Novell® iChain® 2.3
Novell® iChain® 2.3Novell® iChain® 2.3
Novell® iChain® 2.3
 
Load-balancing web servers Load-balancing web servers
Load-balancing web servers Load-balancing web serversLoad-balancing web servers Load-balancing web servers
Load-balancing web servers Load-balancing web servers
 
SQL Server 2008 Consolidation
SQL Server 2008 ConsolidationSQL Server 2008 Consolidation
SQL Server 2008 Consolidation
 
What is mod_perl?
What is mod_perl?What is mod_perl?
What is mod_perl?
 
What is mod_perl?
What is mod_perl?What is mod_perl?
What is mod_perl?
 
Master Service Agreement
Master Service AgreementMaster Service Agreement
Master Service Agreement
 
Notes8
Notes8Notes8
Notes8
 
PHP and MySQL PHP Written as a set of CGI binaries in C in ...
PHP and MySQL PHP Written as a set of CGI binaries in C in ...PHP and MySQL PHP Written as a set of CGI binaries in C in ...
PHP and MySQL PHP Written as a set of CGI binaries in C in ...
 
Dell Reference Architecture Guide Deploying Microsoft® SQL ...
Dell Reference Architecture Guide Deploying Microsoft® SQL ...Dell Reference Architecture Guide Deploying Microsoft® SQL ...
Dell Reference Architecture Guide Deploying Microsoft® SQL ...
 
Managing Diverse IT Infrastructure
Managing Diverse IT InfrastructureManaging Diverse IT Infrastructure
Managing Diverse IT Infrastructure
 
Web design for business.ppt
Web design for business.pptWeb design for business.ppt
Web design for business.ppt
 
IT Power Management Strategy
IT Power Management Strategy IT Power Management Strategy
IT Power Management Strategy
 
Excel and SQL Quick Tricks for Merchandisers
Excel and SQL Quick Tricks for MerchandisersExcel and SQL Quick Tricks for Merchandisers
Excel and SQL Quick Tricks for Merchandisers
 
OLUG_xen.ppt
OLUG_xen.pptOLUG_xen.ppt
OLUG_xen.ppt
 
Parallels Hosting Products
Parallels Hosting ProductsParallels Hosting Products
Parallels Hosting Products
 
Microsoft PowerPoint presentation 2.175 Mb
Microsoft PowerPoint presentation 2.175 MbMicrosoft PowerPoint presentation 2.175 Mb
Microsoft PowerPoint presentation 2.175 Mb
 
Reseller's Guide
Reseller's GuideReseller's Guide
Reseller's Guide
 

Windows Hosting Documentation

  • 1. Windows Hosting Documentation Web Hosting Basics Control Panel Access your Control Panel at http://your-domain-name.com/stats/ to change your password, setup your e-mail accounts, administer your account, view your visitor stats, check your disk space and data transfer usage, and more. Uploading your web site If you have Microsoft FrontPage extensions installed, only use FrontPage to upload your site or you might corrupt the extensions and your site. All other customers will use an FTP program such as WS_FTP or Cute FTP for uploading. These programs contain instructions for their use. Your activation notice provides you with the information you need to configure your FTP program: your IP address, userID, and password. You will need to use your IP address until your domain name propagates. Always upload your web pages and text files using ASCII mode and upload images and most other files using BINARY mode. Your home page In order to make your home page appear when someone visits your domain you will need to give it a proper file name. Our Windows NT-based servers look for a home page in the following order: default.asp, default.htm, index.htm, index.html. Directories Upload your files to the webroot/ directory. A cgi-bin/ directory has been set up for your personal Perl scripts. An anonymous/ directory has been set up for anonymous FTP access. You may create new directories for your own use by either clicking "mkdir" in your FTP program or by uploading a folder from your hard drive. You can not password protect any directories. Usage Statistics See who is visiting your web site, when they visit, what sites referred them to yours (if any), and more by checking your usage statistics. Raw log files are generated for your account which you may analyze with third-party programs such as WebTrends. Can't access your site? If you can't access your domain name, use your IP address from your activation notice. If you can't access your domain after three days after signing up, contact us to make sure there isn't any problem with your domain registration. If your password doesn't work, check your activation notice for the correct spelling and make sure "Caps Lock" is not activated on your keyboard. You may contact us if you need to reset your password. If you can't connect to your web site at all, there may be connectivity problems somewhere between your location and the data center where your web site is located. Microsoft® FrontPage®
  • 2. Microsoft FrontPage is an extremely popular web site authoring tool that is used by roughly one out of every four of our customers. If you are using FrontPage to create your web site, the following information will be of help to you. FrontPage Server Extensions If you use FrontPage to create your web site, you will want to have the FrontPage Server Extensions installed in your account. The Server Extensions allow you to use the server-side functionality of FrontPage, including remote administration and authoring and the ability to use the WebBot components. You may request them when placing your order. Contact our Support department if you already have an account and would like the extensions installed. There is no charge to have the extensions installed or removed. Precautions You need to be aware of the following issues when using FrontPage: • Disk space usage: FrontPage duplicates certain information into indices and hidden files. This adds "overhead", increasing the storage space required for your files. • Timeout errors: If your web site has many files or you use the Search, Table of Contents, or Discussion Forum WebBots, your server connection may "timeout" when you publish or update your web site. • Corrupt Extensions: Do not use your Control Panel to set up password protected directories or set file permissions or you will likely corrupt your FrontPage extensions and your web site. Also, do not use an FTP program to upload files to your site or you will corrupt your extensions (you may upload scripts to your cgi-local directory though). • Features Not Available: The following features are not available on our UNIX-based servers: Active Server Pages, ActiveX, VBScript, ODBC and MSSQL database functionality. However, these features are available on our NT-based servers. Customer Support We do not provide support for the use of Microsoft FrontPage. Questions about how to use the program should be sent to Microsoft. Our role is merely to install the server extensions and ensure they work properly. Special Features Midi Files You can add sound or music to spice up your web site by embedding a MIDI file in your page. MIDI files are typically only about 15k to 25k in size, so they do not take very long to load. You can use MIDI files as background music on your page by adding the following code to your web page: <embed src="yoursong.mid" autostart=true hidden=true> <noembed><bgsound src="yoursong.mid"></noembed> Replace yoursong.mid with the name of your midi file. Server Side Includes Server Side Include (SSI) commands are executed by the server before your web page is sent to
  • 3. a visitor's web browser. These allow you to add useful information to your web page such as the current date and time or the content of a separate file. To implement Server Side Includes, just add the following code to your page and rename your web page with a .shtml (or .shtm, or .stm) extension. • Include the content of a file in same directory: <!--#include file="somefile.htm" --> • Include the content of a file in different directory: <!--#include virtual="/somedirectory/somefile.htm" --> • Include the output of a cgi script: <!--#exec cgi="/cgi-bin/somescript.pl" --> • Display the current date and time (EST): <!--#config timeframe="time options" --> <!--#config timefmt="%A, %B %d, %Y %I:%M%p" --> <!--#echo var="date_local" --> You can use these codes: • Display the date the page was last modified: <!--#echo var="Last_Modified" --> • Display the size of a file: <!--#fsize file="image.gif" --> MS NetShow (RealAudio, RealVideo) Our Windows NT-based hosting accounts give you access to MS NetShow server which supports RealAudio® and RealVideo® streaming. To implement streaming audio or video on your web site, you will need to do the following: 1. Download Real Player and Real Producer from the RealNetworks web site. 2. Convert your audio or video file to a RealMedia file according to the instructions in the RealProducer software. If you have questions about this step, please contact RealNetworks for support. 3. Upload your .rm file to your web site in BINARY mode. 4. Create a .ram file containing the following line of code and upload it to your web site in ASCII mode. rtsp://your-domain-name.com/userID/filename.rm (Be sure to use your domain name, userID, and .rm file name) 5. Create a link on your web page to your newly created .ram file like this: <a href="filename.ram">Click Here</a> For additional help, download the RealProducer G2 Authoring Kit. Database Data Source Names (DSNs) A Data Source Name, or DSN, is how you reference your database in your ASP applications. To create a DSN: 1. Access your Control Panel at http://www.your-domain.com/stats/ 2. Click on Database Tools 3. Scroll to ODBC Data Sources section 4. Click on Add New Data Source button
  • 4. 5. Enter your DSN Name (give it any name you want) 6. Enter your Database Name (include path to file such as: datamy.mdb) 7. Select your Database Type (Access, FoxPro, MSSQL) 8. Click Insert button Remember that you must reference your DSN as userid.[DSNName]. Your database must be stored in the data/ directory of your hosting account if you want to allow write access in your web applications. By default, in order to protect your databases, the /data directory is configured to deny all web requests. MS SQL Server Our advanced Windows NT-based hosting plan offers shared access to our MS SQL server. You can manage your MS SQL 7.0 database by using Microsoft SQL Server 7 Enterprise Manager. To connect to our SQL server, use the following information: • SQL Server location: (see your Control Panel for location or contact our Support Department.) • User name / Password: use your hosting account userID/password • Database Name: same as your hosting account userID SSL Secure Server Transfer information securely between your web site and web browser by using our SSL secure server. You will need to obtain your own Digital Certificate from Verisign to reference a secure URL using your own domain name: https://www.your-domain-name.com/orderform.html CGI Scripts Our servers have the capability to run CGI scripts based on Perl. However, we do not provide programming support or help writing scripts. Here are some tips: • Upload your scripts to the cgi-bin directory in ASCII mode • First line of Perl scripts should read: #!/usr/local/bin/perl • Be sure Perl scrips include: print "Content-type: text/htmlnn"; • Use the Perl Script Checker in your Control Panel to check your syntax • To include the path to another file use: $ENV{DOCUMENT_ROOT}/somedirectory/somefile.html AUTH_TYPE • You can use the following environment variables: • Here's a list of our installed Perl modules: ./IO/Pipe.pm Additional Resources Useful Programs You may find the following programs to be useful: • E-mail clients: Eudora, Netscape, Microsoft Outlook • FTP clients: WS_FTP, Cute FTP
  • 5. Web design tools: Microsoft Frontpage, Netscape Composer, Adobe GoLive, Macromedia Dreamweaver • Graphic tools: Adobe Photoshop