• support[@]kurinchilion.com
  • +1 (888) 666-4252

PHP Excel reader

Jan 26, 2011 - by kurinchilamp // 333 Views
php-excel-reader Parse and retrieve information from XLS files Download from Code Google When the excel reader is run on PHP 5.3, below mentioned deprecated warning messages gets shown. i) Assigning the return value of new by reference is deprecated Remove & from the line below $this->_ole =& new OLERead(); and have $this->_ole = new OLERead(); instead. ii) Function split() is deprecated Function split() is deprecated and we can use explode() instead of that. $parts = split(";",$format); change it to $parts = explode(";",$format);
Continue Reading

Linux hosting and Vendors in the market

Dec 30, 2010 - by kurinchilamp // 275 Views
Some hosting providers Dedicated or Virtual Server Options Monthly or yearly rental charge Pre-configured hosts Rackspace Linode UK2
Continue Reading

FTP: 530 login authentication failed

Jul 14, 2010 - by kurinchilamp // 316 Views
In certain scenarios, users encounter above message when they try to connect to their web hosting accounting using one of their ftp programs like filezilla, ws-ftp, cuteftp, smartftp Solutions that seemed to have worked for me i) Host name: Try adding ftp://www.mysite.com and set the port to 21 ii) User name: Try typing username@domain.com instead of just the user name of the ftp user
Continue Reading

ASTERISK Configuration: for beginners

May 10, 2010 - by kurinchilamp /Linux Server/ 424 Views
This will be a simple step by step tutorial to help beginners catch up with ASTERISK - an open source tool for voice communication. It is a software installation of PBX connecting even the PSTN and VOIP networks. Originally developed for Linux, Asterisk now runs on a variety of operating systems including Solaris, Windows and MacOS. Environment setup (more…)
Continue Reading

How to move the SSL certificates?

May 05, 2010 - by kurinchilamp // 321 Views
Migrating SSL certificates: CPanel, WHM Possible Scenarios i) Server load balancing ii) Moving web sites between servers Find where the SSL certificates, private keys are installed in the old server and gzip the certs $ tar -zxcf /tmp/crt.tar.gz /etc/ssl/certs $ tar -zxcf /tmp/priv.tar.gz /etc/ssl/private In the new server, extract the certificates and keys to its respective folder location. Edit httpd.conf file and add the following lines SSLEngine on SSLCertificateFile /etc/ssl/certs/example.com.crt SSLCertificateKeyFile /etc/ssl/private/example.com.key SSLCACertificateFile /etc/ssl/certs/example.com.cabundle CustomLog /usr/local/apache/domlogs/exampleuser-ssl_log combined Sample virtual host configuration setting
<VirtualHost xxx.xxx.xxx.xxx:443>
    ServerName subdomain.example.com
    ServerAlias www.subdomain.example.com
    DocumentRoot /home/emaple/public_html
    ScriptAlias /cgi-bin/ /home/example/public_html/cgi-bin/
    SSLEngine on
    SSLCertificateFile /etc/ssl/certs/example.com.crt
    SSLCertificateKeyFile /etc/ssl/private/example.com.key        
   SSLCACertificateFile /etc/ssl/certs/example.com.cabundle    
  CustomLog /usr/local/apache/domlogs/exampleuser-ssl_log combined
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
    <Directory "/home/example.com/public_html/cgi-bin">
        SSLOptions +StdEnvVars
    </Directory>

    # To customize this VirtualHost use an include file at the following location
    # Include "/usr/local/apache/conf/userdata/ssl/2/exampleuser/example.com/*.conf"
</VirtualHost>
Restart apache $ /etc/init.d/httpd restart (or) $ /sbin/service httpd restart Note: Once moving the SSL certificates to the new server, you can also use WHM or CPanel to configure the certs.
Continue Reading

ANSWER: Failed to open a secure file transfer session

May 02, 2010 - by kurinchilamp // 3730 Views
Check for the existence of the file sshd_config (/etc/ssh/sshd_config). Before editing the file check that path settings for sftp-server $ locate sftp-server /usr/libexec/openssh/sftp-server Check for the existence of following line in sshd_config Subsystem sftp /usr/libexec/openssh/sftp-server (more…)
Continue Reading

TECHNOLOGY DEV STACK

Following are some of the technologies that we use to build and maintain solutions for our clients.