When I try to put my website in production, i get an error, but everything works well in my wamp localhost.
The error =>
- Type: ErrorException
- Code: 8
- Message: Undefined offset: 0
- File: *******/httpdocs/alliance/slimrest/datamanager/dm_utilisateur.php
- Line: 20
Le line 20 is the last of this code portion =>
$user = $o_utilisateur->getUserByLogPass($log, $pass);
if(isset($user['0'])){
//GET group BY user
$tmp = $o_droit->getGroupById($user['0']['TB_groupe_id_groupe']);
$user['0']['libele'] = $tmp['0']['libele'];
I might be the PHP version ?
- Localhost : PHP_VERSION = 5.5.12
- Server : PHP_VERSION = 5.5.9-1ubuntu4.4
$user['0']to$user[0]echo "<pre>"; var_dump($user); exit;