Skip to content
Snippets Groups Projects
Commit 89579292 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Pb with personalise value of apache port

parent aa7f3f7c
Branches
No related tags found
No related merge requests found
...@@ -326,11 +326,14 @@ begin ...@@ -326,11 +326,14 @@ begin
if not FileExists (destFile) then if not FileExists (destFile) then
begin begin
myporta := Page.Values[1];
LoadStringFromFile (srcFile, srcContents); LoadStringFromFile (srcFile, srcContents);
//installDir et version de php //installDir et version de php
StringChange (srcContents, 'WAMPROOT', pathWithSlashes); StringChange (srcContents, 'WAMPROOT', pathWithSlashes);
StringChange (srcContents, 'WAMPPHPVERSION', phpVersion); StringChange (srcContents, 'WAMPPHPVERSION', phpVersion);
StringChange (srcContents, 'WAMPAPACHEPORT', myporta);
SaveStringToFile(destFile,srcContents, False); SaveStringToFile(destFile,srcContents, False);
end end
......
...@@ -50,7 +50,7 @@ ServerRoot "WAMPROOT/bin/apache/apache2.2.6" ...@@ -50,7 +50,7 @@ ServerRoot "WAMPROOT/bin/apache/apache2.2.6"
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0) # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
# #
#Listen 12.34.56.78:80 #Listen 12.34.56.78:80
Listen 81 Listen WAMPAPACHEPORT
Listen 444 Listen 444
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment