Changes between Version 7 and Version 8 of Drupal HowTo Copy site to test server


Ignore:
Timestamp:
11/25/15 15:15:43 (8 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Drupal HowTo Copy site to test server

    v7 v8  
    19191. **This user should not be the admin user account**
    20201. Restore the contents to the database using {{{mysql -u {username} -p {database} < dbcontent.sql}}}
    21 1. Make any necessary changes to the Apache config
     211. Change the apache config file `/local/apache2/etc/httpd.conf`
     22 1. Remove the section:
     23{{{
     24DocumentRoot "/local/www/htdocs"
     25<Directory "/local/www/htdocs">
     26        Options None
     27        AllowOverride None
     28        Order allow,deny
     29        Allow from all
     30</Directory>
     31}}}
     32 1. And replace it with:
     33{{{
     34DocumentRoot "/local/www/{site name}/"
     35<Directory "/local/www/{site name}">
     36        Options FollowSymLinks Indexes
     37        AllowOverride None
     38        Order allow,deny
     39        Allow from all
     40        Include /local/www/{site name}/.htaccess
     41</Directory>
     42}}}
    22431. Restart Apache
    2344