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 9 Current »

Notice: this feature is deprecated and no longer supported by HostBill

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:

  • Connecting one or more HostBills to work on your tickets
  • Creating training environment easily, without giving access to main brand data to new employees
  • Connecting other helpdesks in your company
  • Being secure – shared ticket notifications are sent by HostBill master – source for ticket share
  • Easy sharing – with just click More actions → Share with #your_tag_name
  • Easy aggregating – shared tickets are marked by ticket tag. Remove tag = remove share

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>
  • No labels