phpMyAdmin + CentOS 6.0 – Forbidden : phpmyadmin allow remote access centos

phpmyadmin

To remove and add access to phpmyadmin in asterisk : Add your IP as follow: vi /etc/httpd/conf.d/phpmyadmin.conf <Directory “/usr/share/phpmyadmin”> Order allow,deny Allow from all </Directory> Here in Allow from all and Allow from 192.168.0.10 Then issue the following command: # service httpd restart Now All done.      

SIP error code

SIP error code Code Meaning 1xx Informational — request received, continuing to process the request 2xx Success — the action was successfully received, understood, and accepted 3xx Redirection — further action needs to be taken in order to complete the request 4xx Client Error — the request contains bad syntax or cannot be fulfilled at … Read more

sip show channel command not found

my problem is that I cannot run ‘sip show peers’ or any other sip commands from the CLI.   Solution:- Check your /etc/asterisk/sip.conf    file carefully. Find the missing one and restart the asterisk server (service asterisk restart) and go to asterisk cli prompt (asterisk -r) and type the SIP command. 🙂        

call transfer or call forwarding in asterisk

call transfer or call forwarding in asterisk [test] exten => 1000,1,Dial(SIP/User1) exten => 1000,n,Hangup() exten => 2000,1,Dial(SIP/User2) exten => 2000,n,Hangup() exten => 3000,1,Dial(SIP/User3) exten => 3000,n,Hangup() ;call forwarding exten => _*21*X.,1,NoCDR exten => _*21*X.,2,Set(DB(CFIM/${CALLERID(NUM)}=${EXTEN:4}) exten => _*21*X.,3,Playback(vm-saved) exten => _*21*X.,4,Hangup()    

Dialer in one hour

Expertise in : OPEN SOURCE Dialer DEVELOPMENT Features:- Reports :  Optimized dialer reporting, Real-time and summary reports, Hourly Totals by Status, Category on Real Time report Call report Lead performance by campaign report Agent performance report Call Features: Call conference , Call Transfer Call Barge, Whisper, Call monitor (snoop or silent) Click to Call / … Read more

saving data into custom cdr field – add new filed in cdr

I created custom field “rec_name” id table “cdr”, database “asteriskcdrdb”. In this field I want to store recording name. I know i should do it by adding this line in one of .conf files, but where? exten => s,1,set(CDR(rec_name)=${CALLFILENAME}) I can do it by sql statement, too, but i don’t know where is the file … Read more

Find Linux RAM Information Command and system information

Linux yum

  You need to use the free command: # free # free -m total used free shared buffers cached Mem: 7930 4103 3826 0 59 2060 -/+ buffers/cache: 1983 5946 Swap: 15487 0 15487 For system information: You need to use the dmidecode command: # dmidecode –type 17 OR # dmidecode –type memory OR # … Read more