Had asked earlier about a WPS and someone had suggested Processmaker. I need their assistance once again or anyone proficient in deciphering web error codes. In the process of installing the app on a Debian machine and following the instructions provided here
http://wiki.processmaker.com/index.php/2.0/ProcessMaker_Debian_Installation I have gone all the way to the point of now accessing the app from the web-browser. Its at this point where if I try accessing the app using
http://192.168.10.102:8010/ I get a
403 Forbidden: You don't have permission to access / on this server. error. If i do
http://localhost:8010/ I get
404 Not Found: The requested URL / was not found on this server. error.
The install directory is /opt and the sub directories (/opt/processmaker) are owned by www-data with 0751 permissions as indicated in the install link earlier. Below is my pmos.conf file. If i change the DocumentRoot to /www/var it works fine as it brings the default apache index page saying IT WORKS!! I suspect that its a permission problem but that's just my limited knowledge and seek your assistance.
# Please change the ip address with your server ip address and
# the ServerName with you own subdomains.
#processmaker virtual host
ServerName "192.168.10.102"
DocumentRoot /opt/processmaker/workflow/public_html
DirectoryIndex index.html index.php
<Directory "/opt/processmaker/workflow/public_html">
AddDefaultCharset UTF-8
AllowOverRide none
Options FollowSymlinks
Order allow,deny
Allow from all
RewriteEngine on
RewriteRule ^.*/(.*)$ sysGeneric.php [NC,L]
ExpiresActive On
ExpiresDefault "access plus 1 day"
ExpiresByType image/gif "access plus 1 day"
ExpiresByType image/png "access plus 1 day"
ExpiresByType image/jpg "access plus 1 day"
ExpiresByType text/css "access plus 1 day"
ExpiresByType text/javascript "access plus 1 day"
AddOutputFilterByType DEFLATE text/html
</Directory>
</VirtualHost>
Your advice on this is highly appreciated.