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

Tags

PHP: ‘Fatal error: Allowed memory size of 8388608 bytes exhausted’

Aug 02, 2010 - by kurinchilamp / / Post Comment
Reason why you see this message is due to PHP memory leakage. PHP is trying to load a large image or file into memory and is not finding enough space for it to load. If you think, that you will need the necessary feature to upload large files then there are two ways by which you can enable this feature. i) Edit the physical file and have the line ini_set("memory_limit","20M"); ii) Edit php.ini and add the following line. You need to restart the apache/IIS server once php.ini file is modified. memory_limit=32M
Continue Reading

Ubuntu: Where to find Apache Error log?

Feb 10, 2010 - by kurinchilamp / / Post Comment
Location where the Apache error log entries can be found in Ubuntu user@server:~# less /var/log/apache2/error.log
Continue Reading

cakephp Deprecated: PHP 5.3 Wamp

Sep 01, 2009 - by kurinchilamp / / Post Comment
Error message cakephp Deprecated: Assigning the return value of new by reference is deprecated You will see the above error message when you try to configure cakePHP framework using a Wamp Server installation and set the debug parameter as in Configure::write('debug', 2); Cause: CakePHP is not PHP 5.3 ready unlike the latest version of Zend framework. Remedy: Try downloading older version of PHP - e.g. PHP 5.2.9
Continue Reading

Apache Error Log

Aug 30, 2009 - by kurinchilamp / / Post Comment
Apache Error Log Expected "</File> but saw </Files>" Check the error log file (in ubuntu it is in /var/log/apache2/error.log) for the above stated error message. Check the .htaccess file or the apache configuration files where you have restricted file permission using File Directive.
Continue Reading

Ubuntu, Apache: Virtual Hosting

Aug 04, 2009 - by kurinchilamp / / Post Comment
Virtual Hosting in Ubuntu Hardy Heron: Case Example Consider the case of two domain names mysite1 and site2 to be served on IP Address 192.168.1.100 (port 80) Before proceeding let us look at how resolv.conf and hosts file are set up ... $ cat /etc/resolv.conf search kurinchilion.com nameserver 192.168.1.100 $ cat /etc/hosts 127.0.0.1 localhost 192.168.1.100 myserver.kurinchilion.com myserver # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters ff02::3 ip6-allhosts (more…)
Continue Reading

Apache, Ubuntu, CentOS: Virtual Host Configuration

Aug 03, 2009 - by kurinchilamp / / Post Comment
What is Virtual Hosting? Virtual Hosting is a technique by which web servers can serve more than one domain name on the same server. It can also be a variation of serving different sites on the same IP but on different ports. (more…)
Continue Reading

TECHNOLOGY DEV STACK

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