最終更新:2013-04-02 (火) 19:14:53 (4041d)  

XAMPP 1.8.1
Top / XAMPP 1.8.1

  • Apache 2.4.2?
  • MySQL 5.5.27?
  • PHP 5.4.7?
  • OpenSSL 1.0.1c?
  • phpMyAdmin 3.5.2.2?
  • XAMPP Control Panel 3.1.0?
  • Webalizer 2.23-04?
  • Mercury Mail Transport System v4.62?
  • FileZilla FTP Server 0.9.41?
  • Tomcat 7.0.30? (with mod_proxy_ajp? as connector)
  • Strawberry Perl 5.16.0.1? Portable

Apache 2.4での変更点

  • httpd.conf
    Order allow,deny
    Allow from all
  • を下記に書き換える必要がある。
    Require all granted

設定

php.ini

  • error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
    extension=php_openssl.dll
    date.timezone = Asia/Tokyo
    mbstring.language = Japanese
    mbstring.internal_encoding = UTF-8

my.ini

  • [client]
    default-character-set=utf8
    [mysqld]
    character_set_server=utf8
    skip-character-set-client-handshake
    innodb_file_per_table
    [mysql]
    default-character-set=utf8

httpd-vhosts.conf

  • NameVirtualHost *:80
    
    <VirtualHost *:80>
    	ServerAdmin postmaster@dummy-host.localhost
    	DocumentRoot "C:/dev/php"
    	ServerName dev.local
    	<Directory "C:/dev/php/">
    		Options Indexes FollowSymLinks Includes ExecCGI
    		AllowOverride All
    		Require all granted
    	</Directory>
    </VirtualHost>

関連