|
basic guide on 0.8.4 with php on windows? July 13, 2009 07:19AM | Registered: 1 year ago Posts: 7 |
|
basic guide on 0.8.5 with php on windows July 17, 2009 06:46PM | Registered: 1 year ago Posts: 7 |
conf\ contrib\ docs\ html\ logs\ php\ temp\ nginx.exec. google a bit and add Process.exe and RunHiddenConsole.exe to the same folder
@ECHO OFF ECHO Starting PHP FastCGI... RunHiddenConsole.exe PHP\php-cgi.exe -b 127.0.0.1:10000 ECHO Starting nginx... RunHiddenConsole.exe nginx.exe ::ECHO Starting MySQL... ::RunHiddenConsole.exe "C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqld-nt" --defaults-file="C:\Program Files\MySQL\MySQL Server 5.0\my.ini" SLEEP 1 EXIT(i is a slightly modified code like found on some blog, i don't need mysql so i edited that out)
@ECHO OFF ::ECHO Stopping MySQL... ::process -k mysqld-nt.exe >nul ECHO Stopping nginx... process -k nginx.exe >nul process -k nginx.exe >nul process -k nginx.exe >nul process -k nginx.exe >nul ECHO Stopping PHP FastCGI... process -k php-cgi.exe >nul SLEEP 1 EXITf. and optional deleteLogs.bat
del autoindex.acess.txt del logs\access.log del logs\error.logg. conf/nginx.conf
location / {
root html;
index index.php index.html index.htm autoindex.php;
}
and
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:10000
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:10000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME ./html/$fastcgi_script_name;
include fastcgi_params;
}conf\ contrib\ docs\ html\ logs\ php\ temp\ deleteLogs.bat nginx.exe Process.exe RunHiddenConsole.exe start.bat stop.bat
|
Re: basic guide on 0.8.5 with php on windows July 17, 2009 07:20PM | Registered: 1 year ago Posts: 7 |
|
Re: basic guide on 0.8.4 with php on windows? July 21, 2009 01:07PM | Registered: 1 year ago Posts: 7 |
|
Re: basic guide on 0.8.4 with php on windows? July 23, 2009 07:31PM | Registered: 1 year ago Posts: 7 |
|
Re: basic guide on 0.8.4 with php on windows? July 23, 2009 08:47PM | Admin Registered: 1 year ago Posts: 396 |
|
Re: basic guide on 0.8.4 with php on windows? July 26, 2009 10:03AM | Registered: 1 year ago Posts: 7 |
![]() | ![]() | ![]() | ![]() |



