Asterisk CDR Viewer: Difference between revisions
From KlavoWiki
Jump to navigationJump to search
Line 29: | Line 29: | ||
= CentOS = | = CentOS = | ||
<pre> | <pre> | ||
yum -y install svn httpd | yum -y install svn httpd php php-mysql mysql-server | ||
</pre> | </pre> | ||
mysql-server is not required if you are hosting the database elsewhere. | mysql-server is not required if you are hosting the database elsewhere. |
Revision as of 23:12, 10 February 2015
Raspbian
apt-get install subversion apache2 php5 php5-mysql mysql-server
mysql-server is not required if you are hosting the database elsewhere.
cd /var/www svn checkout http://asterisk-cdr-viewer.googlecode.com/svn/trunk/ cdr cp cdr/contrib/httpd/asterisk-cdr-viewer.conf /etc/apache2/conf.d/
Eidt the following file as required
vi /var/www/cdr/include/config.inc.php vi /etc/apache2/conf.d/asterisk-cdr-viewer.conf
When performing some tasks it may take longer than the default 30 second timeout of PHP.
Increase max_execution_time
vi /etc/php5/apache2/php.ini
service apache2 restart
CentOS
yum -y install svn httpd php php-mysql mysql-server
mysql-server is not required if you are hosting the database elsewhere.
cd /var/www/html svn checkout http://asterisk-cdr-viewer.googlecode.com/svn/trunk/ cdr cp cdr/contrib/httpd/asterisk-cdr-viewer.conf /etc/httpd/conf.d/
Eidt the following file as required.
vi /var/www/html/cdr/include/config.inc.php vi /etc/httpd/conf.d/asterisk-cdr-viewer.conf
When performing some tasks it may take longer than the default 30 second timeout of PHP.
Increase max_execution_time
vi /etc/php.ini
service httpd restart