Hi Mahmood,
Looking at the list of files and the URL that’s being searched for, there isn’t any “install" file or directory present. Probably your webapplication is trying to access that URL but you’re missing some kind of Redirect rules to handle URL’s through the index.php?
Hopefully you’ll find it it the app’s documentation, but it might be something as simple as:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
Depending on your configuration, this could be in your config file, or in a .htaccess file and make sure that mod_rewrite is available.
--
Riemer Palstra
riemer@xxxxxxxxxxx---------------------------------------------------------------------
To unsubscribe, e-mail:
users-unsubscribe@xxxxxxxxxxxxxxxxFor additional commands, e-mail:
users-help@xxxxxxxxxxxxxxxx