I am trying to install invoice plane on my cpanel account under a subdomain.
The URL is a2bremovals.leapingfoxmm.com.au
The files have been uploaded into the correct folder but when I go to the website link it redirects to an IP address and displays an error.
I have setup the htaccess file within the Invoice Plane root folder as shown on the wiki but it doesn’t seem to make any difference.
## Run InvoicePlane in a subfolder
## If you are using a subfolder please remove the hash in front of the line ‘#RewriteBase /subfolder’
## and replace ‘subfolder’ with the actual name of your folder, i.e. ‘RewriteBase /invoices’
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /a2bremovals
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
## Remove the hash in front of the following two lines if you want to force HTTPS
#RewriteCond %{HTTPS} off
#RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
I haven’t yet been given the option of setting one. Every time I go to index.php I get the same error.
Is it possible to set it manually in a configuration file?