Installation issues please help

Alright hey Guys! so we totally fell across this beautiful piece of web software but we are unable to install it

the following link is what we get. there seems to be a issue with DATABASE but i don’t get it because it doesn’t even give me a setup page to run the “installation”? anyone who can help that would be awesome as we would like to start using this software as soon as possible?

http://server.t9fd.com/billing/ this is the link where we have it placed to install its weird that it wont work

Thanks for your help in advance

Did you modified the .htaccess file according to the wiki guide? You need to modify the file as you want to install the software in the billing subfolder.
If you’ve done this you have to open http://server.t9fd.com/billing/setup to start the installation.

see i have changed the htaccess file but it still gives the database error and if i do /setup i get file not found. theres no setup directory in the installation folder that i donloaded from invoiceplane

another update did some changes getting2 different errors depending where i go

server.t9fd.com/billing - gets this error

billing.t9fd.com - gets this error

not sure whats going on i do /setup on both and it doesnt work…please help

Thanks

If you are using a subdomain for your subdirectory, you do not need to do anything to .htcaccess, it should work fine with just billing.t9fd.com

ok so i reset my htaccess fie and everything but i still get issues

billing.t9fd.com gives a database error

and billing.t9fd.com/setup gives no files error there is no setup directory in the install files…

Good new all! We got it working had to do with the htaccess file not being configured properly in the download when you donwload it had to had some codes to it.

Thanks for the hel all!

Could you post your .htaccess file here if anyone other needs help?

Here it is! Thanks for the awesome help! We are loving the software already it is just want we needed for the new year! Starting it off right! This will work on all apache2 webservers as well tested it on multiple and it works amazing. no need to add the sub directory either. we are running it in sub directory but we have the domain route to it through the server.

Add this code to the htaccess file ate the top <IfModule mod_rewrite.c>and run </IfModule>
at the bottom

code should look like this in the end.

<IfModule mod_rewrite.c>

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

# Enable the following if you want to force HTTPS access:
#RewriteCond %{SERVER_PORT} 80
#RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]

</IfModule>
1 Like

Hi,

I’m trying to get this to work and I’m having some of the same issues.

I’m wanting to run this under an add-on domain running in a folder off the main domain…

ie. Primary domain: h ttp://primary.com/
add-on domain: h ttp://addondomain.com/ is directed to the folder h ttp://primary.com/addondomian/

I’d like to run this under h ttp://addondomain.com/cms/

I’ve unzipped everything.

I’ve made the mod to the the httaccess as shown above… Although I have seen in some samples of the code below a “/” in front of index.php[L] I don’t see it here. I’ve tried it both ways. I’m also running a forced https so I tried with and without the https access RewriteCond.

<IfModule mod_rewrite.c>

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

# Enable the following if you want to force HTTPS access:
#RewriteCond %{SERVER_PORT} 80
#RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]

</IfModule>

I’ve also tried

<IfModule mod_rewrite.c>

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

# Enable the following if you want to force HTTPS access:
#RewriteCond %{SERVER_PORT} 80
#RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]

</IfModule>

When I go to the h ttp://addondomain.com/cms I get:

An Error Was Encountered The configuration file database.php does not exist.

When I go to the h ttp://addondomain.com/cms/setup I get page can’t be found.

Can someone tell me what I’m missing?

Thanks. Hope to get this sorted and take it for a whirl :smile:

What server are you using it it apache2 on Linux?

Change this line to 'RewriteBase /cms'

1 Like

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