PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WEBDEV 2024 → Configuration webDev7 -  EasyPHP 1.6
Configuration webDev7 - EasyPHP 1.6
Débuté par b.engelmajer, 02 juil. 2003 11:53 - 2 réponses
Posté le 02 juillet 2003 - 11:53
Bonjour.

Impossible de faire fonctionner WW70AWP avec EasyPHP 1.6
(je suis sous XP)

Le test de l'application:

http://localhost/WW70AWP/WW70AWP.EXE/CTX_3644-0-SiUithvCgM/CONNECT_MODETEST

donne une erreur 404

Comme alias pour WW70AWP
j'ai [ C:/WebDev7/Programmes/AWP/ ]

Si vous avez une solution...
Merci
Posté le 03 juillet 2003 - 21:49
"b.engelmajer" <b.engelmajer@free.fr> wrote:
Bonjour.

Impossible de faire fonctionner WW70AWP avec EasyPHP 1.6
(je suis sous XP)

Le test de l'application:

http://localhost/WW70AWP/WW70AWP.EXE/CTX_3644-0-SiUithvCgM/CONNECT_MODETEST

donne une erreur 404

Comme alias pour WW70AWP
j'ai [ C:/WebDev7/Programmes/AWP/ ]

Si vous avez une solution...
Merci

Il faut modifier le fichier httpd.conf (directory apache de easyphp)


et lui rajouter ces lignes.

ScriptAlias /WWAWP/ "C:/WEBDEV/AWP/"
<Directory "C:/WEBDEV/AWP/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>

ScriptAlias /WW70AWP/ "C:/WEBDEV7/PROGRAMMES/AWP/"
<Directory "C:/WEBDEV7/PROGRAMMES/AWP/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Posté le 04 juillet 2003 - 20:49
philippe wrote:
"b.engelmajer" <b.engelmajer@free.fr> wrote:

Bonjour.

Impossible de faire fonctionner WW70AWP avec EasyPHP 1.6
(je suis sous XP)

Le test de l'application:

http://localhost/WW70AWP/WW70AWP.EXE/CTX_3644-0-SiUithvCgM/CONNECT_MODETEST

donne une erreur 404

Merci... ça marche.

J'avais juste mis
Alias
au lieu de
ScriptAlias

>>Comme alias pour WW70AWP

j'ai [ C:/WebDev7/Programmes/AWP/ ]


>>

Si vous avez une solution...
Merci

Il faut modifier le fichier httpd.conf (directory apache de easyphp)


et lui rajouter ces lignes.

ScriptAlias /WWAWP/ "C:/WEBDEV/AWP/"
<Directory "C:/WEBDEV/AWP/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>

ScriptAlias /WW70AWP/ "C:/WEBDEV7/PROGRAMMES/AWP/"
<Directory "C:/WEBDEV7/PROGRAMMES/AWP/">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>