Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

System requirements



Server capable of handling PUT requests (eg. Apache)
Enabled htaccess
Enabled mod_rewrite module

.htaccess file



This file should be located in sharing/ directory in your Hostbill root directory

 <Limit GET PUT POST>
   order deny,allow
   allow from all
</Limit>
<IfModule mod_rewrite.c>
   Options +FollowSymLinks
   RewriteEngine On
   RewriteBase /sharing/
   RewriteRule ^(.*)/(.*)$ index.php?/$1/$2 [L]
</IfModule>

In case if your HostBill installation is not located in your site root directory, change:

 RewriteBase /sharing/

to the location on your server eg.

 www.hostbill.com/billing/sharing/
 RewriteBase /billing/sharing/

Enabling htaccess


 

If htaccess is not enabled, and you have access to your server configuration files, edit your httpd.conf and change AllowOverride directive to All, you can find it under one of yours Directory tags

 <Directory /var/www/*>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>
  • No labels