On modern installations, the AccessConfig and ResourceConfig options point to empty
files, and the traditional contents of those files have been moved to the main httpd.conf file.
NOTE
How MySQL Databases Are Structured
For those who aren??™t familiar with how a database system is structured, here??™s a quick introduction:
Databases are the basic organizational block in a database system. Most database systems
(including MySQL) are designed to support multiple databases from a single server. This
allows separate databases to be created for different users or different functions.
Tables are found within a database. A table is very much like a spreadsheet in that it has
rows and columns. Columns define the different types of data that every entry can or must
have, and every entry takes the form of a row. A database can hold multiple tables, allowing
you to have many different data sets within a single database.
655
Running a Linux, Apache, MySQL, and PHP (LAMP) Server 24
The Include directive is distinct from AccessConfig and ResourceConfig in that it can appear
more than once and can include more than one file at a time. Files referenced by Include directives
are processed as if their contents appeared at the location of the relevant Include statement.
Pages:
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210