-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 12
-
Fix Version/s: 12
-
Component/s: ARI User Portal, Fax Pro (Commercial), UCP (User Control Panel)
-
Labels:None
-
Environment:
6.12.65-14
asterisk 11
all updated
-
Sprint:12 RC1
-
ToDo:
I noticed that the old path to voicemail & fax is still here, so users that created shortcut on their desktop continue to work in http://HOSTNAME/recordings. I'm worried that they send fax with the old fax pro, that will lead to a inconsistent fax archive.
I suppose that I still have the old path (hostname/recordings), because my install is not clean, but it is a 5.211 upgraded to 6.12
In your official upgrade script to 6.12, please delete the "/recordings" directory or do a redirect to the /ucp directory.
To solve I put the following redirect in the file index.php stored in /recordings directory:
<?php
header( 'Location: ../ucp' ) ;
/**
- @file
- main
*/
include_once("includes/bootstrap.php");
ariPageHeader();
include_once("includes/common.php");
handler();
ariPageFooter();
?>