Topic: Cant Login after installation

Hello, I installed frontaccounting 2.3.22 on my internet web server.
After a successfully completed installation, i cant login. whenever i try to login, it well
give me the following error

"Not Acceptable

An appropriate representation of the requested resource /index.php could not be found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."

Please what can i do?
thanks.

Re: Cant Login after installation

Check for file / folders permissions and ownerships and webserver (apache) conf and .htaccess file issues.

Re: Cant Login after installation

Hello,
Thanks for your response.  please there are many files which one do i check specifically.
thanks

Re: Cant Login after installation

Change ownerships of all files to your web server process owner (www-data:www-data in Ubuntu/Debian, httpd or apache in CentOS)

Make all folders 755 and all files 644 to start with and disable all .htaccess files and put them back one by one to see what breaks where.

Re: Cant Login after installation

Hello apmuthu,
thanks for your response. Please the question am about to ask might sound like a novice thats because i am one. Please how do i change the ownership of all FA files that you ask me to do.
Thanks.

Re: Cant Login after installation

Please no solution yet. i still need help.
thanks

Re: Cant Login after installation

if the webroot is /var/www/frontac
and the webserver user:group is www:data:www-data
then:

WEBPATH=.var/www/frontac
chown -R www-data:www-data ${WEBPATH}
find ${WEBPATH} -type f -exec chmod 644 {} \;
find ${WEBPATH} -type d -exec chmod 755 {} \;