Ticket Sharing


HostBill is compliant with NetworkedHelpdesk guidelines – an initiative that allows you to connect multiple communication streams together to provide great customer experience. You can now connect multiple HostBill installations to work with other brands or branches in your company on support issues. You can also outsource your support easily to other companies – share your tickets! Ticket sharing feature gives you the opportunity for:

Ticket Sharing requirements


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, for example:

 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>