Discussion:Php 5 mysql 5 : Différence entre versions

De SME Server Wiki
 
(php 5.2)
 
(10 révisions intermédiaires par 2 utilisateurs non affichées)
Ligne 1 : Ligne 1 :
bonjour a tous, j'ai mis a jour vers php5 et mysql5 avec cette methode (legerement modifiée par rapport au wiki car trop de petites erreurs):
 
  
Code:
+
par contre maintenant j'ai en erreur sur mes log:
Php 5 mysql 5
+
So what you have to do to install MySQL 5 on SME7 is:
+
  
 
==============================
 
STEP 1: MAKE A BACKUP OF YOUR DATABASES:
 
==============================
 
 
Code:
 
Code:
mysqldump -aec >backup_mysql_databases.sql
 
  
 +
Nov 27 15:47:03 localhost httpd: PHP Notice:  Only variable references should be returned by reference in
 +
/home/httpd/html/horde/lib/Horde/Cipher/BlockMode.php on line 48
  
 +
Nov 27 16:18:47 localhost httpd: PHP Notice:  Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/DataTree.php on line 1180
  
==========================
+
Nov 27 16:18:47 localhost httpd: PHP Notice:  Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Perms.php on line 347
STEP 2: GET THE NEW RPM'S:
+
==========================
+
  
THERE ARE TWO WAYS OF DOING THIS:
+
Nov 27 16:18:47 localhost httpd: PHP Notice:  Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Auth.php on line 1168
  
-------------
 
FIRST METHOD:
 
-------------
 
Code:
 
wget \
 
http://mirror.centos.org/centos/4/centosplus/i386/RPMS/mysqlclient14-4.1.14-4.2.c4.1.i386.rpm \
 
http://mirror.centos.org/centos/4/centosplus/i386/RPMS/mysql-server-5.0.22-1.centos.1.i386.rpm \
 
http://mirror.centos.org/centos/4/centosplus/i386/RPMS/mysql-5.0.22-1.centos.1.i386.rpm
 
  
rpm -U mysql-5.0.22-1.centos.1.i386.rpm \
+
en voyant ce message et le probleme des variable, je me demandais si c'etait lié et si c'etait risqué en production d'avoir ce genre de log ?? Sachant que je n'ai pas de scripts perso !!
mysql-server-5.0.22-1.centos.1.i386.rpm \
+
mysqlclient14-4.1.14-4.2.c4.1.i386.rpm
+
  
Code:
+
== Reponse ==
/etc/rc.d/init.d/mysqld stop
+
rm -f /etc/my.cnf.rpmnew
+
/etc/rc.d/init.d/mysqld start
+
  
 +
salut
  
To fix the privileges on Horde:
+
apparement ces problemes avec horde existait deja avec SME5 lors d emsie à jour de php, voila les suggestions de l'époque :
Code:
+
mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE ON horde.* TO 'horde'@'localhost';FLUSH PRIVILEGES"
+
  
 +
PHP 4.1.1 doesn't like some of the database calls that IMP uses, even though they still work. To avoid having errors clutter up your screen, you'll want to find the line that says display_errors and set that to Off  . If you want them to be logged, set log_errors to  On , and error_log to syslog.
  
-------------------------
 
SECOND METHOD: (prefered)
 
-------------------------
 
Code:
 
/etc/rc.d/init.d/mysqld stop
 
yum --enablerepo=centosplus update mysql
 
/etc/rc.d/init.d/mysqld start
 
  
  
To fix the privileges on Horde:
+
== ebauche nouvelle version PHP5==
Code:
+
mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE ON horde.* TO 'horde'@'localhost';FLUSH PRIVILEGES"
+
  
 +
yum --enablerepo=centosplus php
 +
=============================================================================
 +
Package                Arch      Version          Repository        Size
 +
=============================================================================
 +
Installing:
 +
php-xml                i386      5.1.6-3.el4s1.8  centosplus        85 k
 +
    replacing  php-domxml.i386 4.3.9-3.22.9
  
 +
Updating:
 +
php                    i386      5.1.6-3.el4s1.8  centosplus        1.1 M
 +
Installing for dependencies:
 +
mysql-libs              i386      5.0.58-1.el4.centos  centosplus        1.8 M
 +
php-cli                i386      5.1.6-3.el4s1.8  centosplus        2.0 M
 +
php-common              i386      5.1.6-3.el4s1.8  centosplus        136 k
 +
php-pdo                i386      5.1.6-3.el4s1.8  centosplus        220 k
 +
Updating for dependencies:
 +
php-gd                  i386      5.1.6-3.el4s1.8  centosplus        102 k
 +
php-imap                i386      5.1.6-3.el4s1.8  centosplus        48 k
 +
php-ldap                i386      5.1.6-3.el4s1.8  centosplus        31 k
 +
php-mbstring            i386      5.1.6-3.el4s1.8  centosplus        970 k
 +
php-mysql              i386      5.1.6-3.el4s1.8  centosplus        77 k
 +
php-pear                noarch    1:1.4.11-1.el4s1.1  centosplus        345 k
  
 +
Transaction Summary
 +
=============================================================================
 +
Install      5 Package(s)
 +
Update      7 Package(s)
 +
Remove      0 Package(s)
 +
Total download size: 6.9 M
 +
Is this ok [y/N]:
  
===================================================
+
== le 10 05 2011 ==
STEP 3: ADD MISSING MySQL-TABLES TO MYSQL DATABASE: (for instance with PhpMyAdmin)
+
===================================================
+
Code:
+
DROP TABLE IF EXISTS proc;
+
CREATE TABLE proc (
+
db char( 64 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',
+
name char( 64 ) NOT NULL default '',
+
type enum( 'FUNCTION', 'PROCEDURE' ) NOT NULL ,
+
specific_name char( 64 ) NOT NULL default '',
+
language enum( 'SQL' ) NOT NULL default 'SQL',
+
sql_data_access enum( 'CONTAINS_SQL', 'NO_SQL', 'READS_SQL_DATA', 'MODIFIES_SQL_DATA' ) NOT NULL default 'CONTAINS_SQL',
+
is_deterministic enum( 'YES', 'NO' ) NOT NULL default 'NO',
+
security_type enum( 'INVOKER', 'DEFINER' ) NOT NULL default 'DEFINER',
+
param_list blob NOT NULL ,
+
returns char( 64 ) NOT NULL default '',
+
body longblob NOT NULL ,
+
definer char( 77 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',
+
created timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ,
+
modified timestamp NOT NULL default '0000-00-00 00:00:00',
+
sql_mode set( 'REAL_AS_FLOAT', 'PIPES_AS_CONCAT', 'ANSI_QUOTES', 'IGNORE_SPACE', 'NOT_USED', 'ONLY_FULL_GROUP_BY', 'NO_UNSIGNED_SUBTRACTION', 'NO_DIR_IN_CREATE', 'POSTGRESQL', 'ORACLE', 'MSSQL', 'DB2', 'MAXDB', 'NO_KEY_OPTIONS', 'NO_TABLE_OPTIONS', 'NO_FIELD_OPTIONS', 'MYSQL323', 'MYSQL40', 'ANSI', 'NO_AUTO_VALUE_ON_ZERO', 'NO_BACKSLASH_ESCAPES', 'STRICT_TRANS_TABLES', 'STRICT_ALL_TABLES', 'NO_ZERO_IN_DATE', 'NO_ZERO_DATE', 'INVALID_DATES', 'ERROR_FOR_DIVISION_BY_ZERO', 'TRADITIONAL', 'NO_AUTO_CREATE_USER', 'HIGH_NOT_PRECEDENCE' ) NOT NULL default '',
+
comment char( 64 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',
+
PRIMARY KEY ( db , name , type )
+
) ENGINE = MYISAM DEFAULT CHARSET = utf8 COMMENT = 'Stored Procedures';
+
  
DROP TABLE IF EXISTS procs_priv;
+
Dependencies Resolved
CREATE TABLE procs_priv (
+
Host char(60) collate utf8_bin NOT NULL default '',
+
Db char(64) collate utf8_bin NOT NULL default '',
+
User char(16) collate utf8_bin NOT NULL default '',
+
Routine_name char(64) collate utf8_bin NOT NULL default '',
+
Routine_type enum('FUNCTION','PROCEDURE') collate utf8_bin NOT NULL,
+
Grantor char(77) collate utf8_bin NOT NULL default '',
+
Proc_priv set('Execute','Alter Routine','Grant') character set utf8 NOT NULL default '',
+
Timestamp timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
+
PRIMARY KEY (Host,Db,User,Routine_name,Routine_type),
+
KEY Grantor (Grantor)
+
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges';
+
  
 +
=============================================================================
 +
Package                Arch      Version          Repository        Size
 +
=============================================================================
 +
Updating:
 +
mysql-server            i386      5.0.82sp1-1.el4_8  centosplus        9.9 M
 +
Updating for dependencies:
 +
mysql                  i386      5.0.82sp1-1.el4_8  centosplus        3.3 M
 +
mysql-libs              i386      5.0.82sp1-1.el4_8  centosplus        1.8 M
  
 +
Transaction Summary
 +
=============================================================================
 +
Install      0 Package(s)
 +
Update      3 Package(s)
 +
Remove      0 Package(s)
 +
Total download size: 15 M
  
======================
 
STEP 4: RESTART MySQL:
 
======================
 
  
You simply reboot the server
 
  
OR
 
  
without rebooting the server:
 
Code:
 
/etc/rc.d/init.d/mysqld stop;
 
/etc/rc.d/init.d/mysqld start;
 
/etc/rc.d/init.d/mysql.init restart;
 
  
  
===========================================
+
Dependencies Resolved
  
PHP5
+
=============================================================================
 +
Package                Arch      Version          Repository        Size
 +
=============================================================================
 +
Installing:
 +
php-pear-Auth-SASL      noarch    1.0.2-4.el4.centos  centosplus        10 k
 +
php-pear-DB            noarch    1.7.6-6.el4.centos  centosplus        130 k
 +
php-pear-HTTP          noarch    1.4.0-7.el4.centos  centosplus        10 k
 +
php-pear-Mail          noarch    1.1.14-1.el4.centos  centosplus        25 k
 +
php-pear-XML-Parser    noarch    1.2.7-4.el4.centos  centosplus        19 k
 +
php-xml                i386      5.1.6-3.el4s1.10  centosplus        85 k
 +
    replacing  php-domxml.i386 4.3.9-3.31
  
PHP 5
+
Updating:
1 installez les mise à jour de php 5 sur centosplus
+
php                     i386      5.1.6-3.el4s1.10  centosplus       1.1 M
yum --enablerepo=centosplus update php
+
php-gd                  i386      5.1.6-3.el4s1.10  centosplus       103 k
2 verifiez voir corrigez ceci:
+
php-pear-Net-Socket    noarch    1.0.6-5.el4.centos  centosplus        10 k
php.ini
+
Installing for dependencies:
vi /etc/e-smith/templates/etc/php.ini/50PathsDirectories
+
php-cli                i386      5.1.6-3.el4s1.10  centosplus        1.9 M
extension_dir = /usr/lib/php/modules . Si ce n'est pas le cas faites ceci
+
php-common              i386      5.1.6-3.el4s1.10  centosplus        136 k
cp /etc/e-smith/templates/etc/php.ini/50PathDirectories /etc/e-smith/templates-custom/etc/php.ini/50PathDirectories
+
php-pdo                i386      5.1.6-3.el4s1.10  centosplus        220 k
mcedit /etc/e-smith/templates-custom/etc/php.ini/50PathDirectories
+
php-pear                noarch    1:1.4.11-1.el4s1.1  centosplus        345 k
et modifiez en consequence... Puis:
+
php-pear-Net-SMTP      noarch    1.2.8-5.el4.centos  centosplus        16 k
expand-template /etc/php.ini
+
Updating for dependencies:
 +
php-devel              i386      5.1.6-3.el4s1.10  centosplus        490 k
 +
php-imap                i386      5.1.6-3.el4s1.10  centosplus        49 k
 +
php-ldap                i386      5.1.6-3.el4s1.10  centosplus        32 k
 +
php-mbstring            i386      5.1.6-3.el4s1.10  centosplus        970 k
 +
php-mysql              i386      5.1.6-3.el4s1.10  centosplus        77 k
  
httpd.conf
+
Transaction Summary
mcedit  /etc/e-smith/templates/etc/httpd/conf/httpd.conf/20loadModule80PHP
+
=============================================================================
verifiez que la ligne est pressente: return "LoadModule php5_module modules/libphp5.so";
+
Install    11 Package(s)
si ce n'est pas le cas :
+
Update      8 Package(s)
cp /etc/e-smith/templates/etc/httpd/conf/httpd.conf/20loadModule80PHP /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/20loadModule80PHP
+
Remove      0 Package(s)
mcedit /etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/20loadModule80PHP
+
Total download size: 5.6 M
et modifiez en consequence... Puis:
+
expand-template /etc/httpd/conf/httpd.conf
+
  
3 verifiez le bon fonctionnement de
+
== php 5.2 ==
/etc/rc.d/init.d/httpd restart
+
(puis n'oubliez pas php-domxml)
+
  
 +
voici une source pour trouver php5 plus recent que sur centos plus : atomicorp
 +
http://www6.atomicorp.com/channels/atomic/centos/4/i386/RPMS/
  
par contre maintenant j'ai en erreur sur mes log:
+
ou encore
 +
http://rpms.famillecollet.com/
  
Code:
+
pour info :
Nov 27 15:47:03 localhost httpd: PHP Notice:  Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Cipher/BlockMode.php on line 48
+
Nov 27 16:18:47 localhost httpd: PHP Notice:  Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/DataTree.php on line 1180
+
Nov 27 16:18:47 localhost httpd: PHP Notice:  Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Perms.php on line 347
+
Nov 27 16:18:47 localhost httpd: PHP Notice:  Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Auth.php on line 1168
+
  
en voyant ce message et le probleme des variable, je me demandais si c'etait lié et si c'etait risqué en production d'avoir ce genre de log ?? Sachant que je n'ai pas de scripts perso !!
+
/sbin/e-smith/db yum_repositories set dag repository \
 +
Name 'remi' \
 +
BaseURL 'http://rpms.famillecollet.com/enterprise/4/remi/$basearch' \
 +
EnableGroups no \
 +
GPGCheck yes \
 +
GPGKey http://rpms.famillecollet.com/RPM-GPG-KEY-remi \
 +
Visible no \
 +
status disabled
  
 +
et/ou
  
  
 +
/sbin/e-smith/db yum_repositories set dag repository \
 +
Name 'atomicorp' \
 +
BaseURL 'http://www6.atomicorp.com/channels/atomic/centos/4/$basearch' \
 +
EnableGroups no \
 +
GPGCheck yes \
 +
GPGKey https://www.atomicorp.com/RPM-GPG-KEY.art.txt \
 +
Visible no \
 +
status disabled
  
De meme lors d'un yum update, j'obtient ca maintenant:
+
== semserver phpmultiadmin ==
  
Code:
+
il sera necessaire de reconfigurer les droits d'admin de cette contrib apres mise a jour
--> Finished Dependency Resolution
+
Error: Missing Dependency: php >= 4.3.0 is needed by package turba-h3
+
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-imap
+
Error: Missing Dependency: php is needed by package pear-mail
+
Error: Missing Dependency: php >= 4.3.0 is needed by package ingo-h3
+
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-ldap
+
Error: Missing Dependency: php is needed by package e-smith-ingo
+
Error: Missing Dependency: php >= 5.1.0-1 is needed by package php-pear
+
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-gd
+
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-pdo
+
Error: Missing Dependency: php is needed by package pear-mail_mime
+
Error: Missing Dependency: php >= 4.3.0 is needed by package imp-h3
+
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-mysql
+
Error: Missing Dependency: php is needed by package pear-file
+
Error: Missing Dependency: php is needed by package e-smith-imp
+
Error: Missing Dependency: php is needed by package pear-date
+
Error: Missing Dependency: php = 5.1.6-1.2.1.centos is needed by package php-mbstring
+
Error: Missing Dependency: php is needed by package pear-db
+
Error: Missing Dependency: php >= 4.3.0 is needed by package horde
+
Error: Missing Dependency: php is needed by package pear-log
+
Error: Missing Dependency: php >= 4.0.1 is needed by package e-smith-php
+
Error: Missing Dependency: php = 4.3.9-3.15 is needed by package php-domxml
+
================================================================
+
No new rpms were installed. No additional commands are required.
+
================================================================
+
  
sachant qu'avec un rpm -qa '*php*" j'ai
+
source : http://forums.ixus.net/viewtopic.php?f=19&t=44505
 
+
Code:
+
php-mbstring-5.1.6-1.2.1.centos
+
php-5.1.6-1.2.1.centos
+
e-smith-php-1.12.0-01
+
php-mysql-5.1.6-1.2.1.centos
+
php-ldap-5.1.6-1.2.1.centos
+
php-imap-5.1.6-1.2.1.centos
+
php-xml-5.1.6-1.2.1.centos
+
php-pdo-5.1.6-1.2.1.centos
+
php-gd-5.1.6-1.2.1.centos
+
php-pear-1.4.9-1.2.centos
+
 
+
 
+
Ca me fout un peu les boules tout ca, donc merci par avance pour vos feedback et aide.
+
 
+
salut
+

Version actuelle en date du 14 octobre 2011 à 04:29

par contre maintenant j'ai en erreur sur mes log:

Code:

Nov 27 15:47:03 localhost httpd: PHP Notice: Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Cipher/BlockMode.php on line 48

Nov 27 16:18:47 localhost httpd: PHP Notice: Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/DataTree.php on line 1180

Nov 27 16:18:47 localhost httpd: PHP Notice: Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Perms.php on line 347

Nov 27 16:18:47 localhost httpd: PHP Notice: Only variable references should be returned by reference in /home/httpd/html/horde/lib/Horde/Auth.php on line 1168


en voyant ce message et le probleme des variable, je me demandais si c'etait lié et si c'etait risqué en production d'avoir ce genre de log ?? Sachant que je n'ai pas de scripts perso !!

Reponse

salut

apparement ces problemes avec horde existait deja avec SME5 lors d emsie à jour de php, voila les suggestions de l'époque :

PHP 4.1.1 doesn't like some of the database calls that IMP uses, even though they still work. To avoid having errors clutter up your screen, you'll want to find the line that says display_errors and set that to Off . If you want them to be logged, set log_errors to On , and error_log to syslog.


ebauche nouvelle version PHP5

yum --enablerepo=centosplus php
=================================================================
Package                 Arch       Version          Repository        Size
=================================================================

Installing:

php-xml                 i386       5.1.6-3.el4s1.8  centosplus         85 k
    replacing  php-domxml.i386 4.3.9-3.22.9

Updating:

php                     i386       5.1.6-3.el4s1.8  centosplus        1.1 M

Installing for dependencies:

mysql-libs              i386       5.0.58-1.el4.centos  centosplus        1.8 M
php-cli                 i386       5.1.6-3.el4s1.8  centosplus        2.0 M
php-common              i386       5.1.6-3.el4s1.8  centosplus        136 k
php-pdo                 i386       5.1.6-3.el4s1.8  centosplus        220 k

Updating for dependencies:

php-gd                  i386       5.1.6-3.el4s1.8  centosplus        102 k
php-imap                i386       5.1.6-3.el4s1.8  centosplus         48 k
php-ldap                i386       5.1.6-3.el4s1.8  centosplus         31 k
php-mbstring            i386       5.1.6-3.el4s1.8  centosplus        970 k
php-mysql               i386       5.1.6-3.el4s1.8  centosplus         77 k
php-pear                noarch     1:1.4.11-1.el4s1.1  centosplus        345 k

Transaction Summary

=================================================================

Install 5 Package(s) Update 7 Package(s) Remove 0 Package(s) Total download size: 6.9 M Is this ok [y/N]:

le 10 05 2011

Dependencies Resolved

=================================================================
Package                 Arch       Version          Repository        Size
=================================================================

Updating:

mysql-server            i386       5.0.82sp1-1.el4_8  centosplus        9.9 M

Updating for dependencies:

mysql                   i386       5.0.82sp1-1.el4_8  centosplus        3.3 M
mysql-libs              i386       5.0.82sp1-1.el4_8  centosplus        1.8 M

Transaction Summary

=================================================================

Install 0 Package(s) Update 3 Package(s) Remove 0 Package(s) Total download size: 15 M




Dependencies Resolved

=================================================================
Package                 Arch       Version          Repository        Size
=================================================================

Installing:

php-pear-Auth-SASL      noarch     1.0.2-4.el4.centos  centosplus         10 k
php-pear-DB             noarch     1.7.6-6.el4.centos  centosplus        130 k
php-pear-HTTP           noarch     1.4.0-7.el4.centos  centosplus         10 k
php-pear-Mail           noarch     1.1.14-1.el4.centos  centosplus         25 k
php-pear-XML-Parser     noarch     1.2.7-4.el4.centos  centosplus         19 k
php-xml                 i386       5.1.6-3.el4s1.10  centosplus         85 k
    replacing  php-domxml.i386 4.3.9-3.31

Updating:

php                     i386       5.1.6-3.el4s1.10  centosplus        1.1 M
php-gd                  i386       5.1.6-3.el4s1.10  centosplus        103 k
php-pear-Net-Socket     noarch     1.0.6-5.el4.centos  centosplus         10 k

Installing for dependencies:

php-cli                 i386       5.1.6-3.el4s1.10  centosplus        1.9 M
php-common              i386       5.1.6-3.el4s1.10  centosplus        136 k
php-pdo                 i386       5.1.6-3.el4s1.10  centosplus        220 k
php-pear                noarch     1:1.4.11-1.el4s1.1  centosplus        345 k
php-pear-Net-SMTP       noarch     1.2.8-5.el4.centos  centosplus         16 k

Updating for dependencies:

php-devel               i386       5.1.6-3.el4s1.10  centosplus        490 k
php-imap                i386       5.1.6-3.el4s1.10  centosplus         49 k
php-ldap                i386       5.1.6-3.el4s1.10  centosplus         32 k
php-mbstring            i386       5.1.6-3.el4s1.10  centosplus        970 k
php-mysql               i386       5.1.6-3.el4s1.10  centosplus         77 k

Transaction Summary

=================================================================

Install 11 Package(s) Update 8 Package(s) Remove 0 Package(s) Total download size: 5.6 M

php 5.2

voici une source pour trouver php5 plus recent que sur centos plus : atomicorp http://www6.atomicorp.com/channels/atomic/centos/4/i386/RPMS/

ou encore http://rpms.famillecollet.com/

pour info :

/sbin/e-smith/db yum_repositories set dag repository \
Name 'remi' \
BaseURL 'http://rpms.famillecollet.com/enterprise/4/remi/$basearch' \
EnableGroups no \
GPGCheck yes \
GPGKey http://rpms.famillecollet.com/RPM-GPG-KEY-remi \
Visible no \
status disabled

et/ou


/sbin/e-smith/db yum_repositories set dag repository \
Name 'atomicorp' \
BaseURL 'http://www6.atomicorp.com/channels/atomic/centos/4/$basearch' \
EnableGroups no \
GPGCheck yes \
GPGKey https://www.atomicorp.com/RPM-GPG-KEY.art.txt \
Visible no \
status disabled

semserver phpmultiadmin

il sera necessaire de reconfigurer les droits d'admin de cette contrib apres mise a jour

source : http://forums.ixus.net/viewtopic.php?f=19&t=44505