Projet

Général

Profil

Anomalie #34687

Mis à jour par Joël Cuissinat il y a plus d'un an

https://dev-eole.ac-dijon.fr/jenkins/job/2.9.0/job/test-importation-envole-2.9.0-amd64

<pre>
run-parts: executing /usr/share/eole/postservice/10-gepi reconfigure
PHP Fatal error: Array and string offset access syntax with curly braces is no longer supported in /var/www/html/gepi/lib/share.inc.php on line 613
PHP Fatal error: Array and string offset access syntax with curly braces is no longer supported in /var/www/html/gepi/lib/share.inc.php on line 613
</pre>

Visiblement, il "suffit" de remplacer :
> @$test1 = $login_user{0};@
par :
> @$test1 = $login_user[0];@

Idem pour les lignes : 616, 619, 622, 877, 884, 921, 952, 955, 958, 961 !

Puis les fichiers :
* /var/www/html/gepi/lib/share-pdf.inc.php on line 307
* /var/www/html/gepi/lib/HTMLPurifier.standalone.php x4

Ensuite, une "vraie" erreur :
<pre>
root@scribe:~# /usr/share/eole/postservice/10-gepi reconfigure
PHP Fatal error: Uncaught mysqli_sql_exception: Table 'edt_creneaux' already exists in /var/www/html/gepi/utilitaires/updates/152_to_153.inc.php:553
Stack trace:
#0 /var/www/html/gepi/utilitaires/updates/152_to_153.inc.php(553): mysqli_query()
#1 /var/www/html/gepi/utilitaires/maj.sh(99): require('...')
#2 {main}
thrown in /var/www/html/gepi/utilitaires/updates/152_to_153.inc.php on line 553
PHP Fatal error: Uncaught mysqli_sql_exception: Table 'gepi.sso_table_correspondance' doesn't exist in /var/www/html/gepi/utilitaires/updateenvole.sh:4
Stack trace:
#0 /var/www/html/gepi/utilitaires/updateenvole.sh(4): mysqli_query()
#1 {main}
thrown in /var/www/html/gepi/utilitaires/updateenvole.sh on line 4
</pre>

Retour