installation de easyphp 14.1 VC9 les config
476 hit(s)](enregistré le 02/09/2015) Classement dans 'Informatique-programation'

dans appache:

 #
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
#DocumentRoot "${path}/data/localweb"
DocumentRoot "c:/data/sites"

# This should be changed to whatever you set DocumentRoot to.
# ======================================================
# !!! DO NOT CHANGE THIS LINE AND THE FOLLOWING ONES !!!
# DocumentRootDirectory
#

 

et plus loin 

 

# Virtual Hosts

## Virtualhost localweb

<VirtualHost 127.0.0.1>

#DocumentRoot "${path}/data/localweb"

DocumentRoot "c:/data/sites"

ServerName 127.0.0.1

<Directory "${path}/data/localweb">

Options FollowSymLinks Indexes

AllowOverride All

Order deny,allow

Allow from 127.0.0.1

Deny from all

Require all granted

</Directory>

</VirtualHost>

 

 

 

dans mysql

 

 # The following options will be passed to all MySQL clients

[client]

password = 123

port = 3306

socket = "${path}/binaries/mysql/mysql.sock"

 
 
 plus loin
 
#Path to the database root
#datadir = "${path}/binaries/mysql/data/"
datadir = "c:/data/sites/mysql/"
 

pour phpmyadmin

 

si erreur 1045:

 

dans le répoertoire EasyPHP-DevServer-13.1VC9modulesphpmyadmin3581x150901232254  editer config.inc.php

 

mettre 

 

/* Authentication type */

$cfg['Servers'][$i]['auth_type'] = 'config';

$cfg['Servers'][$i]['user'] = 'root'; //parfois manque

$cfg['Servers'][$i]['password'] = '123'; //parfois manque

 

/* Server parameters */

$cfg['Servers'][$i]['host'] = '127.0.0.1';