Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
xampp:config [2016-05-22 20:30] adminxampp:config [2023-10-26 20:04] (current) – external edit 127.0.0.1
Line 2: Line 2:
 === Installation === === Installation ===
   * Download from [[https://www.apachefriends.org/index.html]]   * Download from [[https://www.apachefriends.org/index.html]]
-  * Install e.g. in c:\xampp56+  * Install e.g. in c:\xampp72
 === Configuration === === Configuration ===
   * Apache > Config > httpd.conf   * Apache > Config > httpd.conf
Line 27: Line 27:
 </code> </code>
     * Note: Apache 2.4 needs Require, i.o. Allow from all, see http://httpd.apache.org/docs/2.4/upgrading.html#access and http://stackoverflow.com/questions/18392741/apache2-ah01630-client-denied-by-server-configuration     * Note: Apache 2.4 needs Require, i.o. Allow from all, see http://httpd.apache.org/docs/2.4/upgrading.html#access and http://stackoverflow.com/questions/18392741/apache2-ah01630-client-denied-by-server-configuration
 +    * Enable following modules (for Apache 2.4)
 +      * LoadModule deflate_module modules/mod_deflate.so
 +      * LoadModule filter_module modules/mod_filter.so
     * Update DocumentRoot     * Update DocumentRoot
   * MySQL   * MySQL
Line 33: Line 36:
 mysqladmin.exe -u root password secret mysqladmin.exe -u root password secret
 </code> </code>
 +    * add following line to my.ini under [mysqld] to ensure case sensitivity on Windows systems, see https://mariadb.com/kb/en/library/identifier-case-sensitivity/ and https://karthicraghupathi.com/2013/06/14/force-mysql-to-be-case-sensitive-in-windows/ <code>lower_case_table_names=2</code> 
 === Debugging === === Debugging ===
   * Apache: check error.log. If that doesn't help, issue following commands in Command Prompt:   * Apache: check error.log. If that doesn't help, issue following commands in Command Prompt:
-  * <code>cd \xampp56\apache\bin+  * <code>cd \xampp72\apache\bin
 httpd httpd
 </code> </code>