Blogger Jateng
Install JSON PHP Extension on Linux CentOs
- Ensure you have the necessary dependecies (php, php-pear, php-devel, gcc, make):
- $ sudo yum install gcc make
- $ sudo yum install php php-pear php-devel
- Use PECL (PHP Extension Community Library) to download the json package:
- $ sudo pecl download json
- Use PEAR (PHP Extension and Application Repository) to extract and install the extension:
- $ sudo pear install json-1.2.1.tgz
- Create a file in
/etc/php.d
called “json.ini”, and add the following lines: - ; php-json extension
- extension=json.so
- Restart apache (gracefully if you’re running a live site:
- $ sudo service httpd restart (apachectl graceful)
- Check for availability by creating an info.php file in the web root with the following line:
Location:
Post a Comment for "Install JSON PHP Extension on Linux CentOs"