Home » Authentication » LiveUser » Bug #4591
wrong schema filenames in sql/install.php
Details
| Submitted | 2005-06-14 14:22 UTC |
|---|---|
| From | soox at gmx dot net |
| Status | Bogus |
| Package | LiveUser |
| PHP Version | Irrelevant |
| OS | Irrelevant |
| Roadmaps | (Not assigned) |
Comments
[2005-06-14 14:22 UTC] soox at gmx dot net
Description:
------------
the db-schema-filenames which are used in the sql/
install.php file are not available. they should be
changed to that one which are available in the sql
direcotry.
liveuser version: current (14.June.2005)
Reproduce code:
---------------
line:
$result = LiveUser_Misc_Schema_Install::generateSchema($auth, 'auth_schema.xml');
should be changed to:
$result = LiveUser_Misc_Schema_Install::generateSchema($auth, 'Auth_XML.xml');
line:
$result = LiveUser_Misc_Schema_Install::generateSchema($perm, 'perm_schema.xml')
should be changed to:
$result = LiveUser_Misc_Schema_Install::generateSchema($auth, 'Perm_XML.xml');
[2005-06-14 16:34 UTC] smith at backendmedia dot com
Ah now I understand what you meant. Thats not a bug. The Auth_XML.xml and Perm_XML.xml are for the xml based containers. So the sample file names are good. I presume the installer only works if you change to these file names due to permission problems?
[2005-06-14 19:59 UTC] soox at gmx dot net
uuups! of course your right.
i think i was a little bit confused by reading the
source.
sorry for troubles.