Not all of these modules are available on the Fedora Core or CentOS 4 plans. This list is only correct for CentOS 5 or newer plans. If you are on a Fedora or CentOS 4 plan, use the php -m command from the command line to see the available modules. |
The php.ini file has over a thousand lines and hundreds of settings. eApps technically offers no support for any edits you make to php.ini, but can assist with a few specific functions. |
[root@eapps-example ~]# cd /etc/ [root@eapps-example etc]# cp php.ini{,.orig} [root@eapps-example etc]# ll php.ini* -rw-r--r-- 1 root root 45912 Feb 27 12:52 php.ini -rw-r--r-- 1 root root 45912 Apr 22 11:54 php.ini.orig [root@eapps-example etc]# |
[root@eapps-example etc]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] [root@eapps-example etc]# |
; Print out errors (as a part of the output). For production web sites, ; you're strongly encouraged to turn this feature off, and use error logging ; instead (see below).Keeping display_errors enabled on a production website ; may reveal security information to end users, such as file paths on your ; Web server, your database schema or other information. ; ; possible values for display_errors: ; ; Off - Do not display any errors ; stderr - Display errors to STDERR (affects only CGI/CLI binaries!) ; On or stdout - Display errors to STDOUT (default) ; ; To output errors to STDERR with CGI/CLI: display_errors = "stderr" ; ; Default ; display_errors = Off |
memory_limit = 32M ; Maximum amount of memory a script may consume (16MB) |
; Maximum allowed size for uploaded files. upload_max_filesize = 2M |
; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized. ; NOTE: Using short tags should be avoided when developing applications or ; libraries that are meant for redistribution, or deployment on PHP ; servers which are not under your control, because short tags may not ; be supported on the target server. For portable, redistributable code, ; be sure not to use short tags. short_open_tag = Off |
eApps offers no support for any PHP modules you install yourself. If you need assistance with a self-installed module, please contact the developer for that module. Any assistance from eApps for a self-installed module will be billable at our standard rate of $90/hour. |
[root@eapps-example ~]# pear install module-name |
[root@eapps-example ~]# pecl install module-name |
[root@eapps-example ~]# pear list INSTALLED PACKAGES, CHANNEL PEAR.PHP.NET: ========================================= PACKAGE VERSION STATE Archive_Tar 1.3.3 stable Console_Getopt 1.2.3 stable PEAR 1.8.0 stable Structures_Graph 1.0.2 stable XML_RPC 1.5.1 stable XML_Util 1.2.1 stable [root@eapps-example ~]# |
[root@eapps-example php.d]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] [root@eapps-example php.d]# |
yum install php-sqlite2 |
None of these applications are available on Fedora Core plans. Only Zend Optimizer is available on CentOS 4 plans. You need to be on a CentOS 5 plan to have all these applications available to you. You will also need to be on a Standard Plus or greater plan. The Plesk and cPanel reseller plans also have some of these applications available. |