cgi-bin folder in a subdomain

Should I delete the cgi-bin folder in a subdomain A cgi-bin folder was automatically created in the directory for clothing.mysite.com. Do I need it? I’m only using the subdomain to install wordpress on it. I don’t really understand what the cgi-bin folder is for and I’m happy to leave it if it doesn’t harm anything. … Read more

Why Even Recycle an Application Pool: why recycle the webserver

I have a .NET web application that has been thoroughly vetted. It loads a cache per appdomain (process) whenever one starts and can not fully reply to requests until it completes this cache loading. I have been examining the settings on my application pools and have started wondering why I was even recycling so often … Read more

Virtual Receptionist / Virtual Assistant

What is Virtual Receptionist ? Stay in touch with customers when the office is closed or staff members are out of the office by using Virtual Office. Incoming phone calls will be answered by one of our trained remote receptionists. The receptionist will then ask the caller who he or she is trying to reach … Read more

unmount a Linux disk partition centos

To unmount a Linux disk partition centos # umount /dev/sda1 Type the command to unmount /mnt forcefully: # fuser -km /mnt Where, -k : Kill processes accessing the file. -m : Name specifies a file on a mounted file system or a block device that is mounted. In above example you are using /mnt Linux … Read more

what you need to know, before you deploy the VoIP in your organization : QoS (Quality of Service) for VoIP

The organization(s) that migrate from legacy PABX system (traditional phone system) to IP based PBX (Private Branch eXchange), they require a very carefully planning before they deploy the VoIP. They need to ensure the QoS (Quality of Service) for VoIP in your organization. Step 1 Analyze your existing LAN (Local Area Network) and find if … Read more

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

Asterisk : Creating a Simple IVR Menu

[demo-menu] exten => s,1,Answer(500)    same => n(loop),Background(press-1&or&press-2)    same => n,WaitExten() exten => 1,1,Playback(you-entered)    same => n,SayNumber(1)    same => n,Goto(s,loop) exten => 2,1,Playback(you-entered)    same => n,SayNumber(2)    same => n,Goto(s,loop) [from-pstn] exten => 6598,1,Goto(demo-menu,s,1)