[asterisk-users] Call Recording Alias

David @ULC ucoms2001 at gmail.com
Wed Jan 28 13:37:25 CST 2009


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 


More information about the asterisk-users mailing list