Night_Fox wrote: |
You need a webserver to run it doh! Like apache or something.... |
Solo Ace wrote: |
Notice: your MySQL server's account with the highest access level: "root", is not protected with a password yet. |
Solo Ace wrote: |
Wtf?!
Do you have any idea what you're trying to do? |
Solo Ace wrote: |
Wtf?!
Do you have any idea what you're trying to do? |
install.txt wrote: |
Installing as an Apache module
You need to insert these two lines to your Apache httpd.conf configuration file to set up the PHP module for Apache 2.0: [...] # For PHP 5 do something like this: LoadModule php5_module "c:/php/php5apache2.dll" AddType application/x-httpd-php .php # configure the path to php.ini PHPIniDir "C:/php" Note: Remember to substitute the c:/php/ for your actual path to PHP in the above examples. Take care to use either php4apache2.dll or php5apache2.dll in your LoadModule directive and not php4apache.dll or php5apache.dll as the latter ones are designed to run with Apache 1.3.x. [...] |
httpd.conf wrote: |
#LoadModule unique_id_module modules/mod_unique_id.so
LoadModule userdir_module modules/mod_userdir.so #LoadModule usertrack_module modules/mod_usertrack.so #LoadModule vhost_alias_module modules/mod_vhost_alias.so #LoadModule ssl_module modules/mod_ssl.so LoadModule php5_module "c:/php/php5apache2.dll" |
httpd.conf wrote: |
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz AddType application/x-httpd-php .php |
httpd.conf wrote: |
# Bring in additional module-specific configurations
# <IfModule mod_ssl.c> Include conf/ssl.conf </IfModule> # # This directive should point at the directory php.ini is in # Note: use '/' in path configurations, not '\'. # PHPIniDir "C:/php" ### Section 3: Virtual Hosts |
Code: Show/Hide <?php
// Generate a test page with information about my server: phpinfo(); ?> |
Apache Test Configuration wrote: |
Syntax error on line 174 of D:/Web/Host/Apache 2.0.53/Apache2/conf/httpd.conf: LoadModule takes two arguments, a module name and the name of a shared object file to load it from Note the errors or messages above, and press the <ESC> key to exit. |
Apache Monitor Tray Description wrote: |
Running none of 1 Apache services |
Apache Monitor Alert On Start-Up wrote: |
The requested operation has failed! |
install.txt wrote: |
Installing as a CGI binary
You need to insert these three lines to your Apache httpd.conf configuration file to set up the CGI binary: Example 2-5. PHP and Apache 2.0 as CGI ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php # For PHP 4 Action application/x-httpd-php "/php/php.exe" # For PHP 5 Action application/x-httpd-php "/php/php-cgi.exe" Warning By using the CGI setup, your server is open to several possible attacks. Please read our CGI security section to learn how to defend yourself from those attacks. |
Quote: |
ScriptAlias /php/ "d:/web/host/php 5.0.4/"
AddType application/x-httpd-php .php Action application/x-httpd-php "/php/php-cgi.exe" |