Note: We will be assuming the email that you will be using for receiving support requests is 'support@company.com'.
Change Permissions
The first step is to change the permissions of the admin/support_receiver.php file of the package.
This sets the permission of support_receiver.php as "executable". This is a required step to set email piping under any system.
PHP Path Confirmation
You now need to find out the path where PHP CLI (Command Line Interface) is installed. You can do so with the "whereis" command as described below.
The above image shows that the PHP is installed under /usr/bin/php and /usr/local/bin/php location. The first line of the support_receiver.php in the admin directory should match this path.
Also, after the "<?php" line in the support_receiver.php script there should be the following:
chdir("/full/path/to/support/admin/");
Note: /full/path/to/support/ is a default path which, however, might vary as it should point to where your HelpDesk is located.
|