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

Tags

PHP: Warning: Module “zip” is already loaded in Unknown

Nov 22, 2023 - by kurinchilamp / / Post Comment
In order to solve the issue, we need to find out what all PHP .ini files are getting loaded up as part of the webserver setup. (more…)
Continue Reading

PHP SYSTEM WARNING: ‘date(): It is not safe to rely on the system’s timezone settings

Apr 15, 2015 - by kurinchilamp / Linux Server / Post Comment
Edit /etc/php.ini and add the timezone setting within the file. For a list of timezone settings, visit http://php.net/manual/en/timezones.php [Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone date.timezone = America/New_York
Continue Reading

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

PHP: What is PEAR?

Oct 09, 2009 - by kurinchilamp / / Post Comment
PEAR stands for PHP Extension and Application Repository. To learn more about the PEAR library click here If you are beginner, the following link will help you tread with the library usage PEAR Manual Installation instructions clearly walks through the steps for PEAR configuration. There may be cases where you may want to use PEAR libraries for specific projects only in which case you can install PEAR library for that specific purpose. To use it in projects, PEAR path should be set in php.ini settings or should be included in the project configuration's physical path.
Continue Reading

PHP removing deprecated related errors from display

Aug 31, 2009 - by kurinchilamp / / Post Comment
To remove deprecated warning message displays when executing PHP programs, open php.ini file and ADD to it error_reporting = E_ALL & ~E_DEPRECATED This is the setting for the production environment where you would not like to display the deprecated function related errors. Sample error message Assigning the return value of new by reference is deprecated in nusoap.php on line 7381
Continue Reading

How to turn off register_globals via php.ini?

Jul 16, 2009 - by kurinchilamp / / Post Comment
It is always secured to turn OFF register_globals in PHP applications. Earlier, we have seen how to turn OFF register_globals setting via .htaccess file and in this blog we will use php.ini instead. Using a text editor create a file called php.ini. This will be our first step. Next, we need to add the following line of code in php.ini register_globals = off Upload php.ini file to the root folder where your application resides.
Continue Reading

TECHNOLOGY DEV STACK

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