[Solved] Installation Database Error / 404 Forbidden

Hi Everyone,

Am a newbie to invoice plane. I need some help installing invp on a cloud server, I managed to install it on my localhost using apache am using WAMP. It was fairly easy on the localhost but uploading it to my site folder, I seem to been hitting a rock.

Thats my .htaccess code

RewriteEngine on
RewriteBase /http://www.example.com/invoice/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

But now it keeps bring up this error message.

www.example.com/invoice

I get 404 Forbidden

If i get use this url www.example.com/invoice/index.php

I get database error

Please anyone out there, help this :disappointed: developer

The rewriteBase is not correct. It should be

RewriteBase /invoice

(Just the folder, no domain and protocol)

Thank you so much Kovah

I managed to install. You are the man