i installed this on my harddrive (can also run form usb stick), downloaded the PHP module
i test the standard webserver on uniformserver = ok
replaced the www folder files with the phpdomo files, i then end with an error 403 forbidden page
i have deleted the apache security, in the log there is an issue wich i do not understand (no apache or iss knowledge), but i read in the log that something is forbidden
Code: Select all
Sun Dec 29 19:08:09.250101 2013] [mpm_winnt:notice] [pid 6076:tid 140] AH00418: Parent: Created child process 8476
[Sun Dec 29 19:08:30.170298 2013] [mpm_winnt:notice] [pid 8476:tid 556] AH00354: Child: Starting 150 worker threads.
[Sun Dec 29 19:08:30.280304 2013] [rewrite:error] [pid 8476:tid 1744] [client ::1:28863] AH00670: Options FollowSymLinks and SymLinksIfOwnerMatch are both off, so the RewriteRule directive is also forbidden due to its similar ability to circumvent directory restrictions : P:/domoticz/UNIFORMSERVER/www/controller.php
[Sun Dec 29 19:08:30.280304 2013] [rewrite:error] [pid 8476:tid 1760] [client ::1:28861] AH00670: Options FollowSymLinks and SymLinksIfOwnerMatch are both off, so the RewriteRule directive is also forbidden due to its similar ability to circumvent directory restrictions : P:/domoticz/UNIFORMSERVER/www/index.php
[Sun Dec 29 19:09:26.211503 2013] [rewrite:error] [pid 8476:tid 1760] [client ::1:28915] AH00670: Options FollowSymLinks and SymLinksIfOwnerMatch are both off, so the RewriteRule directive is also forbidden due to its similar ability to circumvent directory restrictions : P:/domoticz/UNIFORMSERVER/www/server-info
[Sun Dec 29 19:09:36.490091 2013] [rewrite:error] [pid 8476:tid 1764] [client ::1:28918] AH00670: Options FollowSymLinks and SymLinksIfOwnerMatch are both off, so the RewriteRule directive is also forbidden due to its similar ability to circumvent directory restrictions : P:/domoticz/UNIFORMSERVER/www/server-status
[Sun Dec 29 19:11:22.932179 2013] [core:warn] [pid 8056:tid 140] AH00098: pid file P:/domoticz/UNIFORMSERVER/core/apache2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
[Sun Dec 29 19:11:29.372548 2013] [mpm_winnt:notice] [pid 8056:tid 140] AH00455: Apache/2.4.7 (Win32) PHP/5.4.23 configured -- resuming normal operations
[Sun Dec 29 19:11:29.378548 2013] [mpm_winnt:notice] [pid 8056:tid 140] AH00456: Apache Lounge VC10 Server built: Nov 26 2013 15:46:56
[Sun Dec 29 19:11:29.379548 2013] [core:notice] [pid 8056:tid 140] AH00094: Command line: 'P:\\domoticz\\UNIFORMSERVER\\core\\apache2\\bin\\httpd_z.exe -d P:/domoticz/UNIFORMSERVER/core/apache2 -f P:\\domoticz\\UNIFORMSERVER\\core\\apache2\\conf\\httpd.conf -d P:\\domoticz\\UNIFORMSERVER\\core\\apache2'
[Sun Dec 29 19:11:29.611561 2013] [mpm_winnt:notice] [pid 8056:tid 140] AH00418: Parent: Created child process 5196
played arround
installed pearl
added 2 lines in the .htaccess in the www folder
Code: Select all
#####################################################
# BEGIN Controller
Options Indexes FollowSymLinks >>>>>>>>>>>> added this line
Options +FollowSymLinks >>>>>>>>>>>>>>>>>>> added this line
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)controller\.php$ - [L]
RewriteRule ^(.*)static/ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . controller.php [L]
</IfModule>
# END Controller
#####################################################
(the 403 pages are gone)
i also try to run it as vHost but no luck