[Solved] Installation Issue

  • I have downloaded a fresh copy of WAMP with following specs"Apache :
    2.4.9 MySQL : 5.6.17 PHP : 5.5.12 PHPMyAdmin : 4.1.14 SqlBuddy : 1.3.3 XDebug : 2.2.5"
  • Have also downloaded a fresh copy of invoiceplane.
  • I have created a sub-folder inside my local web root www/invoice.
  • Have also done changes to htaccess

    Remove index.php

    RewriteEngine on
    RewriteBase /invoice
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule . index.php [L]
  • The problem is that i get an un-formatted page localhost/invoice/setup without any css/images
  • Also when i click setup it gets redirected to localhost/setup “which does not exist” insted it should be “localhost/invoice/setup”.

Have tried from my end but with no luck.Please advice.

Uhm okay that’s strange. It seems that there is something wrong with the url rewrites but the .htaccess file is correct.
Are you sure that mod_rewrite is installed and enabled?

Yes, mod_rewrite is already installed and enabled. Everything works well if i put the files in the root i.e www.
But i want it in a separate folder as there are other projects in the wamp root.

Maybe it would be better to add a virtual host for this.

1 Like

I have the same problem. I try the /setup and get a page not found error… is there an alternative way to configure this?

I have solved it my end I had to change the AllowOverrides option to All instead of the default None in the virtual hosts file

1 Like

This topic was automatically closed after 24 hours. New replies are no longer allowed.