Modified httf.conf file and added : ------------------------------------------------------ Alias /recordings/ "/var/spool/asterisk/monitorDONE/" <Directory "/var/spool/asterisk/monitorDONE"> Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all </Directory> Created a folder under vicidial as recordings. FULL_RECORDING is also enabled. But I don't see recordings under recording folder. Any guidance ? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090129/bab7a4ee/attachment.htm
dud please go to asterisk.org support and download the asterisk book and then READ IT!!!!. David 2009/1/28 David @ULC <ucoms2001 at gmail.com>> > Modified httf.conf file and added : > ------------------------------------------------------ > > Alias /recordings/ "/var/spool/asterisk/monitorDONE/" > > <Directory "/var/spool/asterisk/monitorDONE"> > Options Indexes MultiViews > AllowOverride None > Order allow,deny > Allow from all > </Directory> > > Created a folder under vicidial as recordings. > > FULL_RECORDING is also enabled. > > But I don't see recordings under recording folder. > > Any guidance ? > > > _______________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090128/7fdea87d/attachment.htm
Thanks for your advice , but I asked for expert guidance as I read the doc and it says like that. but somehow It didn't work out. On Thu, Jan 29, 2009 at 12:13 AM, David @ULC <ucoms2001 at gmail.com> wrote:> > Modified httf.conf file and added : > ------------------------------------------------------ > > Alias /recordings/ "/var/spool/asterisk/monitorDONE/" > > <Directory "/var/spool/asterisk/monitorDONE"> > Options Indexes MultiViews > AllowOverride None > Order allow,deny > Allow from all > </Directory> > > Created a folder under vicidial as recordings. > > FULL_RECORDING is also enabled. > > But I don't see recordings under recording folder. > > Any guidance ? > >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090129/78c18e60/attachment.htm
http://download.vicidial-group.com/svn/agc_2-X/trunk/docs/SCRATCH_INSTALL.txt vi /usr/local/apache2/conf/httpd.conf add the following lines: "AddType application/x-httpd-php .php .phtml" "LoadModule php4_module libexec/libphp5.so" or "LoadModule php4_module modules/libphp5.so" modify the index.html line and add index.php to the list to disable logging, change: "CustomLog logs/access_log common" to this: "CustomLog /dev/null common" to enable web browsing of Recordings on Asterisk server, add this: 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> - /usr/local/apache2/bin/apachectl start - go to http://your-new-asterisk-server-ipaddress/ to see if it worked - you are done NOTE: If using PHP5 you may need to add the following line to php.ini: short_open_tag = On On Thu, Jan 29, 2009 at 12:13 AM, David @ULC <ucoms2001 at gmail.com> wrote:> > Modified httf.conf file and added : > ------------------------------------------------------ > > Alias /recordings/ "/var/spool/asterisk/monitorDONE/" > > <Directory "/var/spool/asterisk/monitorDONE"> > Options Indexes MultiViews > AllowOverride None > Order allow,deny > Allow from all > </Directory> > > Created a folder under vicidial as recordings. > > FULL_RECORDING is also enabled. > > But I don't see recordings under recording folder. > > Any guidance ? > >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090129/46e6fdb1/attachment.htm
http://download.vicidial-group.com/svn/agc_2-X/trunk/docs/SCRATCH_INSTALL.txt vi /usr/local/apache2/conf/httpd.conf add the following lines: "AddType application/x-httpd-php .php .phtml" "LoadModule php4_module libexec/libphp5.so" or "LoadModule php4_module modules/libphp5.so" modify the index.html line and add index.php to the list to disable logging, change: "CustomLog logs/access_log common" to this: "CustomLog /dev/null common" to enable web browsing of Recordings on Asterisk server, add this: 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> - /usr/local/apache2/bin/apachectl start - go to http://your-new-asterisk-server-ipaddress/ to see if it worked - you are done NOTE: If using PHP5 you may need to add the following line to php.ini: short_open_tag = On On Thu, Jan 29, 2009 at 12:13 AM, David @ULC <ucoms2001 at gmail.com> wrote:> > Modified httf.conf file and added : > ------------------------------------------------------ > > Alias /recordings/ "/var/spool/asterisk/monitorDONE/" > > <Directory "/var/spool/asterisk/monitorDONE"> > Options Indexes MultiViews > AllowOverride None > Order allow,deny > Allow from all > </Directory> > > Created a folder under vicidial as recordings. > > FULL_RECORDING is also enabled. > > But I don't see recordings under recording folder. > > Any guidance ? > >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090129/b9eae91d/attachment.htm