Linode Forum
Linode Community Forums
 FAQFAQ    SearchSearch    MembersMembers      Register Register 
 LoginLogin [ Anonymous ] 
Post new topic  Reply to topic
Author Message
PostPosted: Fri Jul 08, 2011 3:58 am 
Offline
Senior Newbie

Joined: Fri Jul 08, 2011 3:16 am
Posts: 7
I followed this guide build an LEMP server
http://library.linode.com/lemp-guides/centos-5

when install Magento, I got an error
Quote:
PHP extension "dom" must be loaded.
PHP extension "mcrypt" must be loaded.
PHP extension "gd" must be loaded.


my phpinfo is here
http://www.upincn.com/phpinfo.php

but I've installled these entensions

Quote:
[***@*** ~]# php -m
[PHP Modules]
bz2
calendar
Core
ctype
curl
date
dom
ereg
exif
fileinfo
filter
ftp
gd
gettext
gmp
hash
iconv
json
libxml
mcrypt
mhash
mysql
mysqli
openssl
pcntl
pcre
PDO
pdo_mysql
pdo_sqlite
Phar
readline
Reflection
session
shmop
SimpleXML
sockets
SPL
standard
tokenizer
wddx
xml
xmlreader
xmlwriter
xsl
zip
zlib

[Zend Modules]


any help? thanks

My solution:
issue
Code:
/etc/init.d/php-fastcgi restart

and then install extensions
Actually I've updated to centos 6 and after that I can install these extensions.
For centos 6 issue
Code:
rpm -Uvh http://download.fedora.redhat.com/pub/epel/6/i386/epel-release-6-5.noarch.rpm

issue
Code:
yum install php-dom
yum install php-mcrypt
yum install php-gd


Last edited by mikeyin on Thu Aug 04, 2011 5:53 am, edited 1 time in total.

Top
   
 Post subject:
PostPosted: Fri Jul 08, 2011 10:26 am 
Offline
Senior Newbie

Joined: Thu Jun 23, 2011 12:57 pm
Posts: 19
Actually your missing the mcrypt extension and gd which both need to be installed using your package manager. On Debian you simply apt-get install php5-mcrypt php5-dom php5-gd

For centos I think you can use yum.

If you have installed them then try restarting the web server.


Top
   
 Post subject:
PostPosted: Sun Jul 10, 2011 12:07 pm 
Offline
Senior Newbie

Joined: Fri Jul 08, 2011 3:16 am
Posts: 7
Quote:
yum install php5-dom
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: linux.mirrors.es.net
* epel: mirrors.kernel.org
* extras: centos.mirror.facebook.net
* remi: remi-mirror.dedipower.com
* updates: centos.mirror.facebook.net
Setting up Install Process
No package php5-dom available.
Error: Nothing to do

yum install php-dom
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: linux.mirrors.es.net
* epel: mirrors.kernel.org
* extras: centos.mirror.facebook.net
* remi: remi-mirror.dedipower.com
* updates: centos.mirror.facebook.net
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package php53-xml.i386 0:5.3.3-1.el5_6.1 set to be updated
--> Processing Dependency: php53-common = 5.3.3-1.el5_6.1 for package: php53-xml -5.3.3-1.el5_6.1.i386
--> Running transaction check
---> Package php53-common.i386 0:5.3.3-1.el5_6.1 set to be updated
--> Processing Conflict: php53-common-5.3.3-1.el5_6.1.i386 conflicts php-common
--> Finished Dependency Resolution
Error: php53-common conflicts with php-common
You could try using --skip-broken to work around the problem
redhat-menus-6.7.8-3.el5.noarch has missing requires of /usr/bin/update-desktop- database
redhat-menus-6.7.8-3.el5.noarch has missing requires of /usr/bin/update-desktop- database
redhat-menus-6.7.8-3.el5.noarch has missing requires of desktop-file-utils >= (' 0', '0.9', None)


I try to install php5-dom, but it got nothing, I don't know if there's anything difference between php-dom and php5-dom.

Quote:
yum install php-mcrypt
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: linux.mirrors.es.net
* epel: mirrors.kernel.org
* extras: centos.mirror.facebook.net
* remi: remi-mirror.dedipower.com
* updates: centos.mirror.facebook.net
Setting up Install Process
Package php-mcrypt-5.3.6-4.el5.remi.i386 already installed and latest version
Nothing to do

yum install php-gd
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: linux.mirrors.es.net
* epel: mirrors.kernel.org
* extras: centos.mirror.facebook.net
* remi: remi-mirror.dedipower.com
* updates: centos.mirror.facebook.net
Setting up Install Process
Package php-gd-5.3.6-4.el5.remi.i386 already installed and latest version
Nothing to do


Top
   
 Post subject:
PostPosted: Sun Jul 10, 2011 7:31 pm 
Offline
Senior Newbie

Joined: Thu Jun 23, 2011 12:57 pm
Posts: 19
Try using php5-dom


Top
   
 Post subject:
PostPosted: Mon Jul 11, 2011 1:49 am 
Offline
Senior Newbie

Joined: Fri Jul 08, 2011 3:16 am
Posts: 7
I said before, No package php5-dom available.

yum install php5-dom
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: linux.mirrors.es.net
* epel: mirrors.kernel.org
* extras: centos.mirror.facebook.net
* remi: remi-mirror.dedipower.com
* updates: centos.mirror.facebook.net
Setting up Install Process
No package php5-dom available.
Error: Nothing to do


Top
   
 Post subject:
PostPosted: Mon Jul 11, 2011 4:03 am 
Offline
Senior Member

Joined: Sat Nov 13, 2010 3:05 am
Posts: 91
Website: http://www.graq.co.uk
You may be using a different ini from the command line. Does php -m -c /etc/php.ini show the same set of modules?


Top
   
 Post subject:
PostPosted: Mon Jul 11, 2011 5:38 am 
Offline
Senior Newbie

Joined: Fri Jul 08, 2011 3:16 am
Posts: 7
i think no, i have these additional ini files under /etc/php.d
/etc/php.d/curl.ini
/etc/php.d/dom.ini
/etc/php.d/fileinfo.ini
/etc/php.d/gd.ini
/etc/php.d/json.ini
/etc/php.d/mcrypt.ini
/etc/php.d/mysql.ini
/etc/php.d/mysqli.ini
/etc/php.d/pdo.ini
/etc/php.d/pdo_mysql.ini
/etc/php.d/pdo_sqlite.ini
/etc/php.d/phar.ini
/etc/php.d/wddx.ini
/etc/php.d/xmlreader.ini
/etc/php.d/xmlrpc.ini
/etc/php.d/xmlwriter.ini
/etc/php.d/xsl.ini
/etc/php.d/zip.ini

you can check my phpinfo here, http://www.upincn.com/phpinfo.php

i found this

Quote:
additional .ini files parsed /etc/php.d/dbase.ini, /etc/php.d/json.ini, /etc/php.d/mysql.ini, /etc/php.d/mysqli.ini, /etc/php.d/pdo.ini, /etc/php.d/pdo_mysql.ini, /etc/php.d/pdo_sqlite.ini, /etc/php.d/ssh2.ini, /etc/php.d/zip.ini


and some ini files aren't there, does this mean they aren't loaded?

Thanks for all your help


Top
   
 Post subject:
PostPosted: Tue Jul 12, 2011 10:34 am 
Offline
Senior Newbie

Joined: Thu Jun 23, 2011 12:57 pm
Posts: 19
Sorry I missed that in your post. Anyways. Could you please send me a list of all your available PHP packages that you could install.

On deb its apt-cache search ^php*

Thx!


Top
   
 Post subject:
PostPosted: Wed Jul 13, 2011 3:08 am 
Offline
Senior Newbie

Joined: Fri Jul 08, 2011 3:16 am
Posts: 7
hey, i hope it's not too long


yum search php
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.5ninesolutions.com
* epel: mirrors.kernel.org
* extras: mirrors.kernel.org
* remi: remi-mirror.dedipower.com
* updates: centos.mirror.facebook.net
============================================================================= Matched: php =============================================================================
mod_suphp.i386 : An apache2 module for executing PHP scripts with the permissions of their owners
php.i386 : The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor)
php-PHPMailer.noarch : PHP email transport class with a lot of features
php-bcmath.i386 : A module for PHP applications for using the bcmath library
php-captchaphp.noarch : PHP very user-friendly CAPTCHA solution
php-channel-phpdb.noarch : Adds phpdb channel to PEAR
php-channel-phpmd.noarch : PHP Mess Detector PEAR channel
php-channel-phpunit.noarch : Adds phpunit channel to PEAR
php-cli.i386 : Command-line interface for PHP
php-common.i386 : Common files for PHP
php-dba.i386 : A database abstraction layer module for PHP applications
php-devel.i386 : Files needed for building PHP extensions.
php-domxml-php4-php5.noarch : Transition du XML de PHP4 domxml à PHP5 dom
php-email-address-validation.noarch : A PHP class for validating email addresses
php-embedded.i386 : PHP library for embedding in applications
php-facedetect.i386 : PHP extension to access the OpenCV library
php-fpm.i386 : PHP FastCGI Process Manager
php-gd.i386 : A module for PHP applications for using the gd graphics library
php-idn.i386 : PHP API for GNU LibIDN
php-imap.i386 : A module for PHP applications that use IMAP.
php-interbase.i386 : A module for PHP applications that use Interbase/Firebird databases
php-intl.i386 : Internationalization extension for PHP applications
php-layers-menu.noarch : Hierarchical PHP based DHTML menu system
php-ldap.i386 : A module for PHP applications that use LDAP.
php-markdown.noarch : Markdown implementation in PHP
php-mbstring.i386 : A module for PHP applications which need multi-byte string handling
php-mcrypt.i386 : Standard PHP module provides mcrypt library support
php-mhash.i386 : Standard PHP module provides mhash support
php-mssql.i386 : MSSQL database module for PHP
php-mysql.i386 : A module for PHP applications that use MySQL databases.
php-ncurses.i386 : A module for PHP applications for using ncurses interfaces
php-oci8.i386 : A module for PHP applications that use OCI8 databases
php-odbc.i386 : A module for PHP applications that use ODBC databases.
php-pdo.i386 : A database access abstraction module for PHP applications
php-pear.noarch : PHP Extension and Application Repository framework
php-pear-Auth.noarch : Authentication provider for PHP
php-pear-Auth-radius.noarch : RADIUS support for php-pear-Auth
php-pear-Auth-samba.noarch : Samba support for php-pear-Auth
php-pear-Benchmark.noarch : Framework to benchmark PHP scripts or function calls
php-pear-Config.noarch : Configuration file manipulation for PHP
php-pear-Console-Color.noarch : Easily use ANSI console colors from PHP applications
php-pear-HTML_Template_PHPLIB.noarch : PHP template system based on preg_*
php-pear-Log.noarch : Abstracted logging facility for PHP
php-pear-Net-Curl.noarch : OO interface to PHP's cURL extension
php-pear-Net-FTP.noarch : Provides an OO interface to the PHP FTP functions plus some additions
php-pear-Net-IDNA2.noarch : PHP library for punycode encoding and decoding
php-pear-PHP-CodeSniffer.noarch : PHP coding standards enforcement tool
php-pear-PHP-Compat.noarch : Provides missing functionality for older versions of PHP
php-pear-PhpDocumentor.noarch : The complete documentation solution for PHP
php-pear-PhpDocumentor-docs.noarch : Documentation for PhpDocumentor
php-pear-XML-Parser.noarch : XML parsing class based on PHP's bundled expat
php-pear-creole.noarch : A database abstraction layer for PHP5
php-pear-propel_generator.noarch : An ORM framework for PHP5 - generator component
php-pear-propel_runtime.noarch : An ORM framework for PHP5 - runtime component
php-pecl-apc.i386 : APC caches and optimizes PHP intermediate code
php-pecl-igbinary.i386 : Replacement for the standard PHP serializer
php-pecl-json.i386 : PECL library to implement JSON in PHP
php-pecl-mongo.i386 : PHP MongoDB database driver
php-pgsql.i386 : A PostgreSQL database module for PHP.
php-phpSmug.noarch : PHP wrapper for the SmugMug API
php-phpmd-PHP-PMD.noarch : PHPMD - PHP Mess Detector
php-phpunit-PHP-CodeBrowser.noarch : PHP_CodeBrowser for integration in Hudson and CruiseControl
php-phpunit-PHP-CodeCoverage.noarch : PHP code coverage information
php-phpunit-PHP-TokenStream.noarch : Wrapper around PHP tokenizer extension
php-phpunit-phpcpd.noarch : Copy/Paste Detector (CPD) for PHP code
php-phpunit-phpdcd.noarch : Dead Code Detector (DCD) for PHP code
php-phpunit-phploc.noarch : A tool for quickly measuring the size of a PHP project
php-process.i386 : Modules for PHP script using system process interfaces
php-pspell.i386 : A module for PHP applications for using pspell interfaces
php-recode.i386 : A module for PHP applications for using the recode library
php-snmp.i386 : A module for PHP applications that query SNMP-managed devices.
php-soap.i386 : A module for PHP applications that use the SOAP protocol
php-suhosin.i386 : Suhosin is an advanced protection system for PHP installations
php-tidy.i386 : Standard PHP module provides tidy library support
php-xml.i386 : A module for PHP applications which use XML
php-xmlrpc.i386 : A module for PHP applications which use the XML-RPC protocol
php-xmpphp.noarch : XMPPHP is the successor to Class.Jabber.PHP
php-zipstream.noarch : Streaming dynamic zip from PHP without writing to the disk
php-zts.i386 : Thread-safe PHP interpreter for use with the Apache HTTP Server
php53.i386 : PHP scripting language for creating dynamic web sites
php53-bcmath.i386 : A module for PHP applications for using the bcmath library
php53-cli.i386 : Command-line interface for PHP
php53-common.i386 : Common files for PHP
php53-dba.i386 : A database abstraction layer module for PHP applications
php53-devel.i386 : Files needed for building PHP extensions
php53-gd.i386 : A module for PHP applications for using the gd graphics library
php53-imap.i386 : A module for PHP applications that use IMAP
php53-intl.i386 : Internationalization extension for PHP applications
php53-ldap.i386 : A module for PHP applications that use LDAP
php53-mbstring.i386 : A module for PHP applications which need multi-byte string handling
php53-mysql.i386 : A module for PHP applications that use MySQL databases
php53-odbc.i386 : A module for PHP applications that use ODBC databases
php53-pdo.i386 : A database access abstraction module for PHP applications
php53-pgsql.i386 : A PostgreSQL database module for PHP
php53-process.i386 : Modules for PHP script using system process interfaces
php53-pspell.i386 : A module for PHP applications for using pspell interfaces
php53-snmp.i386 : A module for PHP applications that query SNMP-managed devices
php53-soap.i386 : A module for PHP applications that use the SOAP protocol
php53-xml.i386 : A module for PHP applications which use XML
php53-xmlrpc.i386 : A module for PHP applications which use the XML-RPC protocol
phpFlickr.noarch : PHP client for the Flickr web service
phpMyAdmin.noarch : Web based MySQL browser written in php
phpdoc.noarch : Command-line utility for PhpDocumentor
graphviz-php.i386 : PHP extension for graphviz
limph.noarch : A PHP5-compatible network host/service poller with web interface
nntpgrab-php.i386 : PHP module which allows PHP scripts to communicate with NNTPGrab
php-ZendFramework.noarch : Leading open-source PHP framework
php-ZendFramework-Search-Lucene.noarch : Apache Lucene engine PHP port
php-adodb.noarch : Database abstraction layer for PHP
php-bartlett-PHP-CompatInfo.noarch : Find out version and the extensions required for a piece of code to run
php-bartlett-PHP-Reflect.noarch : Adds the ability to reverse-engineer PHP
php-channel-pdepend.noarch : PHP Depend PEAR channel
php-dbase.i386 : Standard dBase module for PHP applications
php-deepend-Mockery.noarch : Mockery is a simple but flexible PHP mock object framework
php-doctrine-Doctrine.noarch : PHP Object Relational Mapper
php-eaccelerator.i386 : PHP accelerator, optimizer, encoder and dynamic content cacher
php-enchant.i386 : Human Language and Character Encoding Support
php-ezc-Database.noarch : A lightweight database layer on top of PHP's PDO
php-ezc-File.noarch : Provides support for file operations which are not covered by PHP
php-fpdf.noarch : PHP class to generate PDF Files
php-igbinary.i386 : Replacement for the standard PHP serializer
php-libdmtx.i386 : PHP bindings for libdmtx
php-libpuzzle.i386 : PHP extension for libpuzzle
php-magickwand.i386 : PHP API for ImageMagick
php-magpierss.noarch : MagpieRSS is an RSS parser written in PHP
php-mapi.i386 : The PHP MAPI extension by Zarafa
php-mapserver.i386 : PHP/Mapscript map making extensions to PHP
php-nusoap.noarch : SOAP Toolkit for PHP
php-pdepend-PHP-Depend.noarch : PHP_Depend design quality metrics for PHP package
php-pear-Auth-Yubico.noarch : Authentication class for verifying Yubico OTP tokens
php-pear-Auth_HTTP.noarch : Class providing HTTP authentication methods
php-pear-CAS.noarch : Central Authentication Service client library in php
php-pear-Cache-Lite.noarch : Fast and Safe little cache system for PHP
php-pear-CodeGen-PECL.noarch : Tool to generate PECL extensions from an XML description
php-pear-Console-CommandLine.noarch : A full featured command line options and arguments parser
php-pear-Crypt-Blowfish.noarch : Quick two-way blowfish encryption
php-pear-DB.noarch : PEAR: Database Abstraction Layer
php-pear-Date.noarch : Date and Time Zone Classes
php-pear-Event-Dispatcher.noarch : Dispatch notifications using PHP callbacks
php-pear-File-Bittorrent2.noarch : Decode and Encode data in Bittorrent format
php-pear-HTML-Table.noarch : Class to easily design HTML tables
php-pear-HTML-Template-IT.noarch : Integrated Templates
php-pear-HTTP-Request2.noarch : Provides an easy way to perform HTTP requests
php-pear-MDB2.noarch : Database Abstraction Layer
php-pear-Mail.noarch : Class that provides multiple interfaces for sending emails
php-pear-Net-SMTP.noarch : Provides an implementation of the SMTP protocol
php-pear-PEAR-Command-Packaging.noarch : Create RPM spec files from PEAR modules
php-pear-PHP-CompatInfo.noarch : Find out version and extensions required for a piece of code to run
php-pear-PHPUnit.noarch : Regression testing framework for unit tests
php-pear-Phlickr.noarch : Phlickr is a PHP5 based api kit used with the Flickr API
php-pear-SOAP.noarch : Simple Object Access Protocol (SOAP) Client/Server for PHP
php-pear-Services-Twitter.noarch : PHP interface to Twitter's API
php-pear-Spreadsheet-Excel-Writer.noarch : Package for generating Excel spreadsheets
php-pear-pake.noarch : PHP5 project builder system
php-pecl-Fileinfo.i386 : Fileinfo is a PHP extension that wraps the libmagic library
php-pecl-geoip.i386 : Extension to map IP addresses to geographic places
php-pecl-gmagick.i386 : Provides a wrapper to the GraphicsMagick library
php-pecl-imagick.i386 : Provides a wrapper to the ImageMagick library
php-pecl-mailparse.i386 : PHP PECL package for parsing and working with email messages
php-pecl-memcache.i386 : Extension to work with the Memcached caching daemon
php-pecl-ncurses.i386 : Terminal screen handling and optimization package
php-pecl-oauth.i386 : PHP OAuth consumer extension
php-pecl-pdflib.i386 : Extension pour générer des fichiers PDF
php-pecl-phar.i386 : Allows running of complete applications out of .phar files
php-pecl-solr.i386 : API orientée objet pour Apache Solr
php-pecl-sphinx.i386 : PECL extension for Sphinx SQL full-text search engine
php-pecl-ssh2.i386 : PHP bindings to the functions of libssh2
php-pecl-xdebug.i386 : PECL package for debugging PHP scripts
php-pecl-yaml.i386 : PHP Bindings for yaml
php-phpunit-PHP-Timer.noarch : PHP Utility class for timing
php-phpunit-PHPUnit.noarch : Regression testing framework for unit tests
php-phpunit-PHPUnit-MockObject.noarch : Mock Object library for PHPUnit
php-phpunit-PHPUnit-Selenium.noarch : Selenium RC integration for PHPUnit
php-phpunit-bytekit.noarch : A command-line tool built on the PHP Bytekit extension
php-readline.i386 : Standard PHP module provides readline library support
php-simplepie.noarch : Simple RSS Library in PHP
php-spyc.noarch : A simple php yaml class
php-swift-Swift.noarch : Free Feature-rich PHP Mailer
phpPgAdmin.noarch : Web-based PostgreSQL administration
phpldapadmin.noarch : Web-based tool for managing LDAP servers
rrdtool-php.i386 : PHP RRDtool bindings
syck-php.i386 : YAML module for php
uuid-php.i386 : PHP support for Universally Unique Identifier library
entertrack.noarch : Web-based artifact tracking/management system written in PHP
lighttpd-fastcgi.i386 : FastCGI module and spawning helper for lighttpd and PHP configuration
php-Smarty.noarch : Template/Presentation Framework for PHP
php-ZendFramework-Pdf.noarch : PDF file handling helper
php-ZendFramework-Soap.noarch : SOAP web services server part helper
php-ezc-Archive.noarch : A component for create, modify, and extract archive files of various formats
php-ezc-Cache.noarch : Provides a collection of lightweight classes to cache different kinds of data
php-ezc-Configuration.noarch : A component that allows you to use configuration files in different formats
php-ezc-DatabaseSchema.noarch : A set of classes that allow you to use information from a database schema
php-ezc-PersistentObject.noarch : Allows you to store an arbitrary data structures to a fixed database table
php-ezc-PersistentObjectDatabaseSchemaTiein.noarch : Automatic generation of PersistentObject from DatabaseSchema definitions
php-ezc-Template.noarch : A fully functional Templating system
php-feedcreator.noarch : Create RSS feeds
php-fpdf-doc.noarch : Documentation for php-fpdf
php-pear-Auth-OpenID.noarch : PHP OpenID
php-pear-Auth-RADIUS.noarch : Wrapper Classes for the RADIUS PECL
php-pear-Auth-SASL.noarch : PEAR: Abstraction of various SASL mechanism responses
php-pear-Cache.noarch : Framework for caching of arbitrary data
php-pear-CodeGen.noarch : Framework to create code generators that operate on XML descriptions
php-pear-Console-Getargs.noarch : Command-line arguments and parameters parser
php-pear-Console-ProgressBar.noarch : This class provides you with an easy-to-use interface to progress bars
php-pear-Console-Table.noarch : Class that makes it easy to build console style tables
php-pear-Crypt-CHAP.noarch : Class to generate CHAP packets
php-pear-DB-DataObject.noarch : An SQL Builder, Object Interface to Database Tables
php-pear-DB-DataObject-FormBuilder.noarch : Automatically build HTML_QuickForm objects
php-pear-DB-QueryTool.noarch : An OO-interface for easily retrieving and modifying data in a DB
php-pear-Date-Holidays.noarch : Driver based class to calculate holidays
php-pear-Date-Holidays-USA.noarch : Driver based class to calculate holidays in USA
php-pear-File.noarch : Common file and directory routines
php-pear-File-CSV.noarch : Read and write of CSV files
php-pear-File-Find.noarch : Class which facilitates the search of filesystems
php-pear-File-Passwd.noarch : Manipulate many kinds of password files
php-pear-File-SMBPasswd.noarch : Class for managing SAMBA style password files
php-pear-File-Util.noarch : Common file and directory utility functions
php-pear-HTML-Common.noarch : Base class for other HTML classes
php-pear-HTML-QuickForm.noarch : Class for creating, validating, processing HTML forms
php-pear-HTML-QuickForm-ElementGrid.noarch : Meta-element which holds any other element in a grid
php-pear-HTML-QuickForm-advmultiselect.noarch : Element for HTML_QuickForm that emulate a multi-select
php-pear-HTML_Javascript.noarch : Class for creating simple JS scripts
php-pear-HTTP.noarch : PEAR: Miscellaneous HTTP utilities
php-pear-HTTP-Client.noarch : Easy way to perform multiple HTTP requests and process their results
php-pear-HTTP-OAuth.noarch : Implementation of the OAuth spec
php-pear-HTTP-Request.noarch : Provides an easy way to perform HTTP requests
php-pear-HTTP-Upload.noarch : Secure managment of files submitted via HTML Forms
php-pear-Image-Canvas.noarch : Common interface to image drawing
php-pear-Image-Color.noarch : Manage and handles color data and conversions
php-pear-Image-Graph.noarch : Displays numerical data as a graph/chart/plot
php-pear-Image-GraphViz.noarch : Interface to AT&T's GraphViz tools
php-pear-MDB2-Driver-mysql.noarch : MySQL MDB2 driver
php-pear-MDB2-Driver-mysqli.noarch : MySQL Improved MDB2 driver
php-pear-MDB2-Driver-pgsql.noarch : PostgreSQL MDB2 driver
php-pear-MDB2-Schema.noarch : Database Abstraction Layer
php-pear-Mail-Mime.noarch : Classes to create and decode mime messages
php-pear-Mail-mimeDecode.noarch : Class to decode mime messages
php-pear-Math-Stats.noarch : Classes to calculate statistical parameters
php-pear-Net-DIME.noarch : Implements Direct Internet Message Encapsulation (DIME)
php-pear-Net-DNS.noarch : Resolver library used to communicate with a DNS server
php-pear-Net-IPv4.noarch : IPv4 network calculations and validation
php-pear-Net-POP3.noarch : Provides a POP3 class to access POP3 server
php-pear-Net-Ping.noarch : Execute ping
php-pear-Net-Sieve.noarch : Communication with timsieved
php-pear-Net-Socket.noarch : Network Socket Interface
php-pear-Net-Traceroute.noarch : Execute traceroute
php-pear-Net-URL.noarch : Easy parsing of URLs
php-pear-Net-URL-Mapper.noarch : Simple and flexible way to build nice URLs for web applications
php-pear-Net-URL2.noarch : Class for parsing and handling URL
php-pear-Net-UserAgent-Detect.noarch : Extract information from an HTTP user agent
php-pear-Numbers-Roman.noarch : Provides methods for converting to and from Roman Numerals
php-pear-Numbers-Words.noarch : Methods for spelling numerals in words
php-pear-OLE.noarch : Package for reading and writing OLE containers
php-pear-Pager.noarch : Data paging class
php-pear-Payment-Process.noarch : Unified payment processor
php-pear-Services-Weather.noarch : This class acts as an interface to various online weather-services
php-pear-Structures-DataGrid.noarch : Tabular structure for converting data
php-pear-Structures-DataGrid-DataSource-Array.noarch : DataSource driver using arrays
php-pear-Structures-DataGrid-DataSource-DataObject.noarch : DataSource driver using PEAR::DB_DataObject
php-pear-Structures-DataGrid-DataSource-MDB2.noarch : DataSource driver using PEAR::MDB2 and an SQL query
php-pear-Structures-DataGrid-DataSource-RSS.noarch : DataSource driver using RSS files
php-pear-Structures-DataGrid-Renderer-Pager.noarch : Renderer driver using PEAR::Pager
php-pear-Structures-DataGrid-Renderer-Smarty.noarch : Renderer driver using Smarty
php-pear-Text-Diff.noarch : Engine for performing and rendering text diffs
php-pear-Validate.noarch : Validation Class for Various Data Types
php-pear-Validate-Finance-CreditCard.noarch : Validation class for Credit Cards
php-pear-Var-Dump.noarch : Provides methods for dumping structured information about a variable
php-pear-XML-Beautifier.noarch : Class to format XML documents
php-pear-XML-RPC2.noarch : XML-RPC client/server library
php-pear-XML-RSS.noarch : RSS parser
php-pear-XML-Serializer.noarch : Swiss-army knife for reading and writing XML files
php-pear-XML-Util.noarch : XML utility class
php-pear-phing.noarch : A project build system based on Apache Ant
php-pecl-apc-devel.i386 : APC developer files (header)
php-pecl-igbinary-devel.i386 : Igbinary developer files (header)
php-pecl-lzf.i386 : Extension to handle LZF de/compression
php-pecl-memcached.i386 : Extension to work with the Memcached caching daemon
php-pecl-radius.i386 : Radius client library
php-pecl-runkit.i386 : Mangle with user defined functions and classes
php-pecl-zip.i386 : A zip management extension
php-phpunit-DbUnit.noarch : DbUnit port for PHP/PHPUnit
php-phpunit-File-Iterator.noarch : FilterIterator implementation that filters files based on a list of suffixes
php-phpunit-Text-Template.noarch : Simple template engine
php-sqlite.i386 : Extension for the SQLite V2 Embeddable SQL Database Engine
php-symfony-YAML.noarch : The Symfony YAML Component
php-symfony-symfony.noarch : Open-Source PHP Web Framework
tiquit.noarch : A PHP5-compatible help desk incident tracking/knowledgebase system
abcde.noarch : A Better CD Encoder
akode.i386 : Audio-decoding framework
akode-devel.i386 : Headers for developing programs that will use akode
cacti.noarch : An rrd based graphing tool
cherokee.i386 : Flexible and Fast Webserver
cherokee-devel.i386 : Development files of cherokee
compat-readline43.i386 : The readline 4.3 library for compatibility with older software.
cpqarrayd.i386 : Cpqarrayd is a daemon to monitor HP (compaq) arraycontrollers
dhcping.i386 : DHCP daemon ping program
dnsperf.i386 : Benchmarking authorative and recursing DNS servers
dnstracer.i386 : Trace a DNS record to its start of authority
drupal.noarch : An open-source content-management platform
drupal6.noarch : An open-source content-management platform
drupal6-auto_nodetitle.noarch : A small and efficient module that allows hiding of the content title
drupal6-login_destination.noarch : Customize login landing page in Drupal 6
drupal7.noarch : An open-source content-management platform
fetch-crl3.noarch : Downloads Certificate Revocation Lists
flann.i386 : Fast Library for Approximate Nearest Neighbors
flann-devel.i386 : Development headers and libraries for flann
flann-python.i386 : Python bindings for flann
flann-static.i386 : Static libraries for flann
fonts-arabic.noarch : Fonts for Arabic
fuse-python.i386 : Python bindings for FUSE - filesystem in userspace
ganglia-web.i386 : Ganglia Web Frontend
glpi.noarch : Gestion Libre de Parc Informatique
glpi-reports.noarch : Extension GLPI fournissant des rapports supplémentaires
gollem-h3.noarch : The Horde web-based File Manager.
gperiodic.i386 : Program for browsing the periodic table
gtk-murrine-engine.i386 : Murrine GTK2 engine
hddtemp.i386 : Hard disk temperature tool
horde.noarch : The common Horde Framework for all Horde modules.
horde-enhanced.noarch : Adds extra functionality to the horde framework
idesk.i386 : Light desktop manager for minimal WMs
imp.noarch : The Internet Messaging Program: webmail access to IMAP/POP3 accounts
imp-h3.noarch : The Internet Messaging Program: webmail access to IMAP/POP3 accounts.
ingo.noarch : The Horde web-based Email Filter Rules Manager
ingo-h3.noarch : The Horde web-based Email Filter Rules Manager.
ipplan.noarch : Web-based IP address manager and tracker
iproute.i386 : Advanced IP routing and network device configuration tools.
jeta.noarch : Horde Java SSH module
kronolith.noarch : The Horde calendar application
kronolith-h3.noarch : The Horde calendar application.
libAfterImage.i386 : A generic image manipulation library
libAfterImage-devel.i386 : Files needed for software development with libAfterImage
libc-client.i386 : C-client mail access routines for IMAP and POP protocols
libdrizzle.i386 : Drizzle Client & Protocol Library
libkni3.i386 : C++ KNI library v3 for the Katana 300 robot arm
libkni3-devel.i386 : Development files for libkni3
libkni3-doc.i386 : Documentation for libkni3
libkni3-examples.i386 : Example applications for libkni3
libkni3-static.i386 : Static libraries for libkni3
libvmime07.i386 : A powerful C++ class library for working with MIME/Internet messages
libvmime07-devel.i386 : Development files for the libvmime library
libxc.i386 : Library of exchange and correlation functionals to be used in DFT codes
libxc-devel.i386 : Development library and headers for libxc
limph-common.noarch : Common config file for Limph and Limph-hostagent
limph-hostagent.noarch : A host agent for Limph, the network monitor
linsmith.i386 : A Smith charting program
mantis.noarch : Web-based issue tracking system
metagoofil.noarch : Meta-data analyzer, information gathering tool
mingw32-readline.noarch : MinGW port of readline for editing typed command lines
mnemo-h3.noarch : The Horde note manager application.
mod_xsendfile.i386 : Apache module to send files efficiently
mrbs.noarch : Meeting Room Booking System
nag-h3.noarch : The Horde task list manager.
ndoutils.i386 : Stores all configuration and event data from Nagios in a database
perl-Net-LibIDN.i386 : Perl bindings for GNU LibIDN
php-IDNA_Convert.noarch : Provides conversion of internationalized strings to UTF8
php-ZendFramework-Auth-Adapter-Ldap.noarch : Zend Framework LDAP Authentication Adapter
php-ZendFramework-Cache-Backend-Apc.noarch : Zend Framework APC cache backend
php-ZendFramework-Cache-Backend-Memcached.noarch : Zend Framework memcache cache backend
php-ZendFramework-Cache-Backend-Sqlite.noarch : Zend Framework sqlite back end
php-ZendFramework-Captcha.noarch : Zend Framework CAPTCHA component
php-ZendFramework-Db-Adapter-Firebird.noarch : Zend Framework database adapter for InterBase
php-ZendFramework-Db-Adapter-Mysqli.noarch : Zend Framework database adapter for mysqli
php-ZendFramework-Db-Adapter-Oracle.noarch : Zend Framework database adapter for Oracle
php-ZendFramework-Dojo.noarch : Zend Framework Dojo Toolkit integration component
php-ZendFramework-Feed.noarch : Live syndication feeds helper
php-ZendFramework-Gdata.noarch : Google Data APIs
php-ZendFramework-Ldap.noarch : Basic LDAP operations API
php-ZendFramework-Services.noarch : Web service APIs for a number of providers
php-ZendFramework-demos.noarch : Demos for the Zend Framework
php-ZendFramework-extras.noarch : Zend Framework Extras (ZendX)
php-ZendFramework-tests.noarch : Unit tests for the Zend Framework
php-channel-bartlett.noarch : Adds bartlett channel to PEAR
php-channel-deepend.noarch : Survive The Deep End PEAR Channel
php-channel-doctrine.noarch : Adds doctrine project channel to PEAR
php-channel-ezc.noarch : Adds eZ Components channel to PEAR
php-channel-htmlpurifier.noarch : Adds htmlpurifier channel to PEAR
php-channel-phing.noarch : Adds phing channel to PEAR
php-channel-swift.noarch : Adds swift mailer project channel to PEAR
php-channel-symfony.noarch : Adds symfony project channel to PEAR
php-ezc-Authentication.noarch : Support for different means of identification and authentication
php-ezc-AuthenticationDatabaseTiein.noarch : Provides a Database filter for the Authentication component
php-ezc-Base.noarch : Provides the basic infrastructure that all packages rely on
php-ezc-ConsoleTools.noarch : A set of classes to do different actions with the console
php-ezc-EventLog.noarch : Allows you to log events or audit trails
php-ezc-EventLogDatabaseTiein.noarch : Contains the database writer backend for the EventLog component
php-ezc-Feed.noarch : This component handles parsing and creating RSS1, RSS2 and ATOM feeds
php-ezc-Graph.noarch : A component for creating pie charts, line graphs and other kinds of diagrams
php-ezc-Mail.noarch : Construct and/or parse Mail messages conforming to the mail standard
php-ezc-SystemInformation.noarch : Provides access to common system variables
php-ezc-Webdav.noarch : Set up and run your own WebDAV server
php-geshi.noarch : Generic syntax highlighter
php-igbinary-devel.i386 : Igbinary developer files (header)
python-mwclient.noarch : Mwclient is a client to the MediaWiki API
readline.i386 : A library for editing typed command lines.
readline-devel.i386 : Files needed to develop programs which use the readline library.
ris-linux.noarch : RIS for Linux - Boot winpe from the net / Ris Windows Installation
roundcubemail.noarch : Round Cube Webmail is a browser-based multilingual IMAP client
sphinx.i386 : Free open-source SQL full-text search engine
squirrelmail.noarch : SquirrelMail webmail client
sslscan.i386 : Security assessment tool for SSL
syck.i386 : YAML for C, Python, and PHP
syck-python.i386 : YAML module for python
totem.i386 : Movie player for GNOME 2
totem-devel.i386 : Libraries/include files for Totem
totem-mozplugin.i386 : Mozilla plugin for Totem
translate-toolkit.noarch : Tools to assist with translation and software localization
turba.noarch : The Horde contact management application
turba-h3.noarch : The Horde contact management application.
unicornscan-web.i386 : Web-based front-end for unicornscan database results
uuid.i386 : Universally Unique Identifier library
velocity.i386 : Java-based template engine
wordpress-plugin-bad-behavior.noarch : Bad Behavior plugin for WordPress
xdrfile.i386 : A small C-library for reading and writing GROMACS trr and xtc files
xdrfile-devel.i386 : Development library and headers for xdrfile
xprobe2.i386 : Xprobe2 is an active operating system fingerprinting tool
zabbix-web.i386 : Zabbix Web Frontend
zarafa.i386 : Open Source Edition of the Zarafa Collaboration Platform
zikula.noarch : Zikula is a free open source Web Application Framework


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
RSS

Powered by phpBB® Forum Software © phpBB Group