To define the Dreamweaver remote folder: 1 In the Advanced tab of the Site Definition dialog box, select Remote Info from the Category list...
Serwis znalezionych hasełOdnośniki
- Smutek to uczucie, jak gdyby się tonęło, jak gdyby grzebano cię w ziemi.
- int mcrypt_get_key_size ( int cipher) int mcrypt_get_key_size ( string cipher, string module) mcrypt_list_algorithms Funkcja używana do pobrania...
- class ColorPick{ static void Main(){Color favorite = SelectFavoriteColor();RespondToFavoriteColor(favorite);}static Color...
- We arrive, then, at a definition of the syllable as a minimal pulse of initiatory activity bounded by a momentary retardation of the initiator, either self-imposed, or, more...
- - A onirofilm?- Onirofilm w swej formie definitywnej pojawił się kilka lat później...
- W encyklopediach i sownikach w definicjach bezpieczestwa eksponuje si gwnie te jego desygnaty, ktre wi si z poczuciem zagroenia, brakiem nalenej ochrony...
- bp Kaoshsiung; Joseph Wang bp pomocniczyTaipei; Thomas Pai administrator apostolskiPenghu; John Tsao wikary kapituy Hualien Biskupi Tajwanu, PO Box...
- Co Polacy musieli przeżywać w zaborze rosyjskim - dobrze ilustruje list Zygmunta Krasińkiego do Delfiny Potockiej, pisany w styczniu 1848 r...
- In England, Wales and Northern Ireland the General Certificate of Secondary Education General Certificate of Education Advanced (GCE (GCSE) is the main...
- INTERSECT INTERSECT INTERSECT returns all the common elements of two SELECT statements...
- INPUT/OUTPUT: SQL> SELECT DISTINCT COMPANY...
Smutek to uczucie, jak gdyby się tonęło, jak gdyby grzebano cię w ziemi.
The Remote Info screen appears.
2 In the Access pop-up menu, choose how you want to move your files to and from the server:
across a local network (the Local/Network option) or using FTP.
Note: There are other options in the Access pop-up menu, but this chapter doesn’t cover them.
For information about them, see Using Dreamweaver Help.
3 Enter the path or FTP settings to the web server folder you created in “Creating a root folder
(Windows)” on page 128.
The folder may be on your hard disk or on a remote computer. Even if you created the folder
on your hard disk, that folder is still considered to be the remote folder. The following example
shows a possible Remote Folder path if you chose Local/Network access and your remote
folder is on your Windows hard disk:
Remote Folder: C:\Inetpub\wwwroot\MySampleApp
On the Macintosh, the folder might be as follows:
Remote Folder: /Users/ your_user_name/Sites/MySampleApp
For more information on FTP, see “Setting Remote Info options for FTP access” in Using
Dreamweaver Help.
Leave the Site Definition dialog box open. Next, define a folder to process dynamic pages.
Defining a Dreamweaver site (PHP)
131
Specifying where dynamic pages can be processed (PHP)
After defining the Dreamweaver remote folder, specify a folder to process dynamic pages.
Dreamweaver uses this folder to display dynamic pages and connect to databases while you’re
developing your application.
To specify the folder to process dynamic pages:
1 In the advanced Site Definition dialog box, click Testing Server in the Category list.
The Testing Server screen appears. Dreamweaver needs the services of a testing server to
generate and display dynamic content while you work. The testing server can be your local
computer, a development server, a staging server, or a production server, as long as it can
process PHP pages. In many situations, including setting up for the Trio site, you can use the
same settings as the Remote Info category (see “Defining a remote folder” on page 131)
because they point to a server capable of processing PHP pages.
2 Select PHP MySQL from the Server Model pop-up menu.
3 In the Access pop-up menu, select the same method (Local/Network or FTP) you specified for
accessing your remote folder.
Dreamweaver enters the settings you specified in the Remote Info category. Leave the
settings unchanged.
4 In the URL Prefix text box, enter the root URL you would enter in a web browser to request a
page in your web application.
To display live data in your pages while you work, Dreamweaver creates a temporary file,
copies it to the website’s root folder, and attempts to request it using the URL prefix.
Dreamweaver makes a best guess at the URL prefix based on the information you provided in
the Site Definition dialog box. However, the suggested URL prefix may be incorrect. Correct
or enter a new URL prefix if the suggestion in Dreamweaver is incorrect. For more
information, see “About the URL prefix” in Dreamweaver Help (Help > Using
Dreamweaver).
For the PHP sample content in Windows, the prefix should be as follows:
URL Prefix: http://localhost/MySampleApp/
On the Macintosh, the prefix should be as follows:
URL Prefix: http://localhost/ ~your_user_name/MySampleApp/
Tip: The URL prefix should always specify a directory, rather than a particular page on the site.
Also, be sure to use the same capitalization you used when you created the folder.
5 Click OK to define the site and dismiss the Site Definition dialog box, then click Done to
dismiss the Manage Sites dialog box.
After specifying a folder to process dynamic pages, upload the sample files to the web server.
132
Chapter 13: Setup for Sample PHP Site
Uploading the sample files
After specifying a folder to process dynamic pages, upload the sample files to the web server. You
must upload the files even if the web server is running on your local computer.
If you don’t upload the files, features such as Live Data view and Preview in Browser may not
work properly with dynamic pages. For example, image links might be broken in Live Data view
because the image files are not on the server yet. Similarly, clicking a link to a detail page while
previewing a master page in a browser will cause an error if the detail page is missing from
the server.
To upload the samples files to the web server:
1 In the Files panel (Window > Files), select the root folder of the site in the Local View pane.
The root folder is the first folder in the list.
2 Click the blue Put Files arrow icon in the Files panel toolbar, and confirm that you want to
upload the entire site.
Dreamweaver copies all the files to the web server folder you defined in “Defining a remote
folder” on page 131.
The Dreamweaver site is now defined. The next step is to connect to the sample database
installed with Dreamweaver.
Connecting to the sample database (PHP)
During installation, Dreamweaver copies a SQL script to your hard disk. You can use this script
to automatically create a sample MySQL database. This section describes how to create a
connection to the sample database.
This section assumes you have installed and configured MySQL on your local or remote
computer. To download and install the database system, visit the MySQL website at
www.mysql.com.
To create a database connection:
1 Create the sample MySQL database using the SQL script (see “Creating the MySQL database”
on page 134).
2 Create the connection in Dreamweaver (see “Creating a database connection” on page 135).
Connecting to the sample database (PHP)
133
Creating the MySQL database
The sample files for Dreamweaver MX 2004 include a SQL script capable of creating and
populating a sample MySQL database.
Before starting, make sure MySQL is installed and configured on your local or remote computer.
You can download the latest version from the MySQL website at www.mysql.com.
To create the sample MySQL database:
1 Copy the SQL script file, insert.sql, to an appropriate folder on the computer that has
MySQL installed.
If you installed Dreamweaver to its default location, the path to the script file is as follows:
■
C:\Program Files\Macromedia\Dreamweaver MX 2004\Samples\Database\insert.sql
(Windows)
■