アットウィキロゴ

php config

[XDebug]
zend_extension = "D:\xampp\php\ext\php_xdebug.dll"

xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "D:\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port=12266
xdebug.remote_connect_back=1
xdebug.trace_output_dir = "D:\xampp\tmp"

<VirtualHost *:80>
ServerName localhost
DocumentRoot "D:/xampp/htdocs/"
</VirtualHost>


<VirtualHost *:8999>
   DocumentRoot "d:/VirtualHost/"
   ServerName localhost 
   ServerAlias localhost
   <Directory "d:/VirtualHost/">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
    #insert this line
    Require all granted
    #end insertion
    </Directory>
</VirtualHost>

Alias /zf "D:/PEMS/workspace/zf2/public/"
<Directory "D:/PEMS/workspace/zf2/public/">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride FileInfo
    Order allow,deny
    Allow from all
    #insert this line
    Require all granted
    #end insertion
</Directory>

Alias /test "D:/PEMS/workspace/"
<Directory "D:/PEMS/workspace/">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride FileInfo
    Order allow,deny
    Allow from all
    #insert this line
    Require all granted
    #end insertion
</Directory>

タグ:

+ タグ編集
  • タグ:
最終更新:2013年07月10日 16:45