Você está na página 1de 9

Part 6 Welcome to the sixth and final part of this article series on creating your first website.

This tutorial shows you how to set up a remote site in Dreamweaver. A remote site is usually a web server on a remote computer that holds copies of your local files. Users access the remote site when they view your pages in a browser. This tutorial presents a very broad example of connecting to a remote server. It contains troubleshooting hints, but much depends on how your remote server is configured. When in doubt, consult your hosting company's help desk or your system administrator.

Learn about remote sites


After you create a website, the next step is to publish it by uploading the files to a remote server. This is where you store your files for testing, production, collaboration, and publication (depending on your environment). Before you can proceed, you must have access to a remote web serversuch as a hosting company's server, a server owned by the client you're working for, or an intranet server within your company. Also, some Internet Service Providers (ISPs) provide access to free web space as part of your contract for internet connection. If you don't have access to such a server, contact your ISP, your client, your system administrator, or one of the many hosting companies that provide web hosting packages. Some hosting packages are free, but usually insert advertisements into your site. An advertisement-free package can cost as little as a few dollars a month. Alternatively, you can run a testing server on your local computer or network. For more information, see Setting up a local testing server in Dreamweaver CS5. The rest of this article concentrates on connecting to a remote server using FTP (file transfer protocol) or SFTP (secure file transfer protocol). You also need to have a local site defined before you proceed. For more information, see Part 1 of this tutorial series, Setting up your site and project files. Note: For more information about Dreamweaver sites, see Setting up a Dreamweaver site in Dreamweaver Help.

Define a remote server


Dreamweaver site management is based on the principle that your local files are an exact duplicate of your live site on the internet. So, index.html in your check_cs5 folder becomes the front page of your remote site. If you already have a live website that you don't want to overwrite, use your site's control panel to create a folder called check_cs5where you can upload the Check Magazine files. 1. In Dreamweaver, select Site > Manage Sites. 2. In the Manage Sites dialog box, select the Check Magazine site.

If you did not define the Check Magazine site, create a local folder for the site before you proceed. For more information, see Part 1 of this tutorial series, Setting up your site and project files. 3. Click Edit. 4. In the Site Setup dialog box, click Servers to open the panel where you add your server definitions (see Figure 1).

Figure 1. The Servers panel in the Site Setup dialog box.

Dreamweaver CS5 allows you to set up multiple server definitions for both remote and testing servers. However, only one of each type can be active at any given time. 5. Click the plus button at the bottom left of the panel to add the remote server definition. This opens a new panel for you to enter the server details (see Figure 2).

Figure 2. The panel where you enter the basic server details.

6. In the Server Name text box, type a name for the server. This is used internally by Dreamweaver to identify the server, so you can choose any name you like. For example, you might want to create a definition for a server where you upload files for a client's approval, and a different server for the live site. If you have only the one server, call it Remote Server.
7. From the pop-up menu Connect using, select the method you want to use to connect to the server. The most common methods for connecting to a server on the Internet are FTP and SFTP. If you aren't sure which to select, ask your hosting company or the server system administrator. 8. The following options apply to both FTP and SFTP:

Enter the server's FTP address (for example, ftp.yourdomain.com). Enter your user name and password in the appropriate text boxes. Click Test to test your connection.

If the connection is unsuccessful, verify that you have the correct username and password. Passwords are usually case-sensitive, so make sure that Caps Lock is not turned on. If you selected SFTP, try FTP instead. If that doesn't solve the problem, consult the troubleshooting section further down this page. 9. The value that you need to enter in Root Directory is where many people go wrong, and it's difficult to give precise instructions because hosting companies and server administrators have different policies. As I said earlier, Dreamweaver site management is based on the principle that your local files are an exact duplicate of your live site on the Internet. The value

of Root Directory should be the path you need to enter after logging into your server to get to the folder where you want to install index.html. If you want the Check Magazine home page to be the front page of your website, then this needs to be the path to the remote server's site root. On some servers, it's public_html. Others might use www, wwwroot, or even nothing at all. On my remote server, it needs to be /home/username/public_html. If in doubt, ask your hosting company or server administrator. If you want the Check Magazine home page to be in a subfolder called check_cs5, you need to enter the path to that folder. For example, on my server, it would be /home/username/public_html/check_cs5. 10. The Web URL text box should contain the URL for the folder that you defined as the Root Directory. For example, http://www.example.com/ or http://www.example.com/check_cs5/. Dreamweaver might have tried to guess the correct value, but it's only a guess. Do not accept the default value without checking it carefully. Your settings should look similar to Figure 3.

Figure 3. Settings for connecting to a remote server by SFTP.

11. Click the Advanced button at the top of the panel to display the advanced options (see Figure 4).

Figure 4. Advanced options for a remote server.

12. In most circumstances, you should leave these options at their default settings.

Maintain synchronization information is selected by default. This keeps track of when the files on your remote server were last updated, and allows you to use the Site Synchronization feature (see Synchronize the files on your local and remote sites in Dreamweaver Help).

Automatically upload files to the server on Save should rarely, if ever, be used because it overwrites your live files. If you make a mistake, it's immediately displayed on your remote site for all the world to see.

Enable file check-out is for use in a team environment. It allows only one person at a time to edit a page (seeChecking in and checking out files in Dreamweaver Help). 13. Click Save to register your server definition. This returns you to the Servers panel of the Site Setup dialog box, where your server definition is now listed (see Figure 5).

Figure 5. The remote server is now registered in the Site Setup dialog box.

Dreamweaver selects the Remote checkbox automatically. The icons at the bottom of the Servers panel allow you to add another server, or to delete, edit, or make a copy of the selected server definition. Making a copy is useful if you need to change only a few details to connect to a different server. 14. Click Save to close the Site Setup dialog box, and then click Done to close the Manage Sites dialog box.

Upload your local files


You can now upload your files from your local folder to the remote web server to make your pages publicly accessible. 1. In the Files panel (Window > Files), select the site's local root folder (check_cs5). Note: In the Files panel, the local root folder actually begins with "Site Check Magazine" because that's the name of the site. If you hover the cursor over that title, Dreamweaver shows you the full path to the check_cs5 folder. 2. Click the Put Files (up arrow) icon in the Files panel toolbar (see Figure 6).

Figure 6. Put files on the server.

3. When Dreamweaver asks if you want to put the entire site, click OK. Dreamweaver copies all of the files to the remote folder you defined in the previous section. This operation may take some time, as Dreamweaver must connect to the remote server and then upload all the files. Note: Normally, you select the local root folder and upload the entire site only the first time you upload. Afterwards, you can upload only the files you've changed. 4. Open your remote site in a browser to make sure all of the files uploaded correctly. Congratulations, you have a site online!

(Optional) Troubleshoot the remote server setup


A web server can be configured in many ways. The following list provides information about some common issues you may encounter in setting up a remote server and how to resolve them:

The Dreamweaver FTP implementation may not work properly with certain proxy servers, multilevel firewalls, and other forms of indirect server access. In the panel where you set the basic options for the remote server, set the "Connect using" pop-up menu to FTP, and click the triangle at the bottom of the panel to reveal the More Options section (see Figure 7).

Figure 7. The More Options section can help solve FTP connection problems.

Use Passive FTP often solves connection problems caused by a software firewall. Use IPV6 Transfer Mode should be used only if your remote server supports the newer IPv6 protocol (check with your hosting company or server administrator).

If you need to connect through a proxy server, select the Use Proxy check box, and click the Preferences link to set up the proxy details. The other two options are self-explanatory. If you still have problems with FTP access, contact your hosting company or system administrator for help. For the Dreamweaver FTP implementation, you must connect to the remote system's root folder. (In many applications, you can connect to any remote directory, and then navigate through the remote file system to find the directory you want.) Be sure that you indicate the remote system's root folder (or the check_cs5 subfolder) as the Root Directory. If you have problems connecting, and you've specified the host directory using a single slash (/), you might need to specify a relative path from the directory you are connecting to and the remote

root folder. For example, if the remote root folder is a higher-level directory, you may need to use ../../ to specify the host directory.

File and folder names that contain spaces and special characters often cause problems when transferred to a remote site. Use underscores in place of spaces, and avoid special characterscolons (:), slashes (/), periods (.), and apostrophes (') are not permitted in file or folder names.

Many servers use symbolic links (Unix), shortcuts (Windows), or aliases (Macintosh) to connect a folder on one part of the server's disk with another folder elsewhere. For example, the public_html subdirectory of your home directory on the server may really be a link to another part of the server entirely. In most cases, such aliases have no effect on your ability to connect to the appropriate folder or directory; however, if you can connect to one part of the server but not to another, there may be an alias discrepancy.

If you encounter an error message such as "cannot put file," your remote folder may be out of space. For more information, look at the FTP log. Note: In general, when you encounter a problem with an FTP transfer, examine the FTP log by selecting Site > Advanced > FTP Log. For more information, see the extensive tech note on FTP troubleshooting on the Adobe website. This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License

Você também pode gostar