Hi, on the admin vicidial page on users details there is a user stats menu where i can check realtime recordings per agent basis, the link is like this:
RECORDINGS FOR THIS TIME PERIOD: (10000 record limit)
# LEAD DATE/TIME SECONDS RECID FILENAME LOCATION
1 516935 2009-11-05 12:43:07 1706 54905 CRES_20091105-124306_7187368093
http://192.168.2.5/RECORDIN...
2 516891 2009-11-05 12:42:08 30 54895 CRES_20091105-124207_7187765897
http://192.168.2.5/RECORDIN...
3 516828 2009-11-05 12:41:14 42 54878 CRES_20091105-124113_7187402340
http://192.168.2.5/RECORDIN...
4 516780 2009-11-05 12:40:21 25 54863 CRES_20091105-124020_7184546721
http://192.168.2.5/RECORDIN...
5 516742 2009-11-05 12:39:50 19 54852 CRES_20091105-123949_7182176672
http://192.168.2.5/RECORDIN...
6 535543 2009-11-05 12:38:56 35 54837 CRES_20091105-123855_7188355633
http://192.168.2.5/RECORDIN...
7 541112 2009-11-05 12:37:55 56 54812 CRES_20091105-123754_5165795405
http://192.168.2.5/RECORDIN...
8 541046 2009-11-05 12:36:51 34 54796 CRES_20091105-123650_5165208848
http://192.168.2.5/RECORDIN...
9 541017 2009-11-05 12:36:17 22 54786 CRES_20091105-123616_5165204563
http://192.168.2.5/RECORDIN...
10 540959 2009-11-05 12:35:29 26 54774 CRES_20091105-123528_5164339828
http://192.168.2.5/RECORDIN...
11 540858 2009-11-05 12:33:54 51 54758 CRES_20091105-123353_5164338682
http://192.168.2.5/RECORDIN...
12 540781 2009-11-05 12:32:20 76 54735 CRES_20091105-123219_5164337861
http://192.168.2.5/RECORDIN...
13 540721 2009-11-05 12:31:27 23 54717 CRES_20091105-123126_5164337397
http://192.168.2.5/RECORDIN...
14 540666 2009-11-05 12:30:42 29 54700 CRES_20091105-123041_5164336899
http://192.168.2.5/RECORDIN...
15 540633 2009-11-05 12:30:06 25 54682 CRES_20091105-123005_5164336564
http://192.168.2.5/RECORDIN...
problem but when i click the hyperlink
http://192.168.2.5/RECORDINGS/
errors appear--->
Not Found
The requested URL /RECORDINGS/CRES_20091105-122942_5164336368-all.wav was not found on this server.
Apache/2.2.8 (Ubuntu) Server at 192.168.2.5 Port 80
what could be the problem, i laready added the virtual host: on the asterisk vicidial server (192.168.2.5)
$ vim /etc/apache2/sites-available/default (add the following lines)
Alias /RECORDINGS/ "/var/spool/asterisk/monitorDONE/"
<Directory "/var/spool/asterisk/monitorDONE">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
<files *.mp3>
Forcetype application/forcedownload
</files>
</Directory>
$ chmod 0777 /var/spool/asterisk/monitorDONE/
$ /etc/init.d/apache2 restart
Im using 2 servers for my vicidial system
1 asterisk/vicidial
2 databased
anyone have idea on this.