I just installed your script -- not the svn but the latest one linked to your various download links Readme says 0.3-- on a hosting company unix server so there is NO LDAP. This is left to "default".
At first I was getting blank pages after setup. But now I do get a login page and my admin user name and password log me in. But, there is no CSS styling and I get this error at the top of every page:
Strict Standards: Declaration of defaultAuth::useredit() should be compatible with authBase::useredit($user) in /homepages/98/dxxxxxxxx/htdocs/mywebfolder/ios/openupload/lib/modules/auth/default.inc.php on line 72
Can you tell me what I should probably look for to correct this?
My database files for users and groups does not look unusual.
I looked at the config.inc.php and nothing jumps up at me.
Is there a way I can re-install in case I chose the wrong mode?
I can not find what my Mode configuration is.
the function referred to in the error message file starts and ends:
function useredit(&$user,$pwd = false) {
if ($pwd) {
$user['password']=crypt($user['password']);
}
$this->db->update('users',$user,array('id' => $user['id']),$this->userfields);
}
function userdel($id) {
$this->db->delete('users',array('login' => $id));
}
function groupadd($group) {
$this->db->insert('groups',$group);
}
function groupedit($group) {
app()->db->update('groups',$group,array('name' => $group['name']));
}
function groupdel($group_id) {
app()->db->delete('groups',array('name' => $group_id));
}
}
Anonymous
I see that there is a version 0.4.2 which I have just downloaded after finding references to this issue in other posts. I will try 0.4.2.