Cannot install invoiceplane

Ubuntu 12.04
PHP 5.3

setup virtual domain: http://bill.gencloud.co.za
adjusted .hcaccess to RewriteBase /var/www/bill (where files for invoiceplane are)

when I go to http://bill.gencloud.co.za/setup I get 404 not found

Could you please post the content of your .htaccess file?

# Remove index.php
RewriteEngine on
RewriteBase /var/www/bill
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

Change the Rewrite Base to RewriteBase / and try again.
If this is not working try it with RewriteBase /bill

/setup was not found on this server.

tried / and /bill

to which directory points this subdomain? because its ‘bill.gen…’?

/var/www/bill

<VirtualHost *:80>
ServerAdmin webmaster@localhost

    DocumentRoot /var/www/bill
    ServerName bill.gencloud.co.za
    <Directory />
            Options FollowSymLinks
            AllowOverride All
    </Directory>
    <Directory /var/www/bill>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride none
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride none
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride none
    Order deny,allow
    Deny from all
    Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

Change AllowOverride none to AllowOverride All and it should work.

Thanks I gait further but now I get this

A PHP Error was encountered

Severity: Notice
Message: Undefined index: success
Filename: views/prerequisites.php
Line Number: 14

Line 14 on application/modules/setup/views/prerequisites.php only saya the following: if ($basic[‘success’]) { ?>

Does the rest of the setup shows up?
If not, replace

if ($basic['success'])

with

if (isset($basic['success']))

seemed to have install successfully not sure what that was but thanks for your assistance, much appreciated

You’re welcome.

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