Es seht aus dass die "Modify Page Structure" Berechtigung durch ein bug nicht immer bei ein upgrade zugefugt wird.
Fur mehr Info sehe dieses Englischen posting: http://forum.cmsmadesimple.org/index.ph ... 977.0.html
Seiten ordnen Topic is solved
Re: Seiten ordnen
Tatsächlich - tja - ein einfachere Lösung als eine Neuinstallation wäre mir auch lieber gewesen, da die Seite aber relativ streng geupdatet wird, kann ich nicht wochenlang warten - leider.
Re: Seiten ordnen
As a workaround you can try adding it manually:ochsner wrote: Tatsächlich - tja - ein einfachere Lösung als eine Neuinstallation wäre mir auch lieber gewesen, da die Seite aber relativ streng geupdatet wird, kann ich nicht wochenlang warten - leider.
* check the value in table cms_permissions_seq field id (for example 43) and increment it with 1 (change it to 44)
* use that value in an insert query:
Code: Select all
INSERT INTO `cms_permissions` (
permission_id,
permission_name,
permission_text,
create_date,
modified_date
)
VALUES (
'44', 'Modify Page Structure', 'Modify Page Structure', NOW(), NOW()
)
Re: Seiten ordnen
Herzlichen Dank Dee - leider habe ich die Neuinstallation am Wochenende gemacht - aber hoffentlich hilfts anderen...
Re: Seiten ordnen
Sorry to hear that ochsner, wish I looked into it earlier.
It looks like this happens when full adodb is used instead of adodb lite.
For others that are experiencing this I wrote a PHP script to add the permission:
http://forum.cmsmadesimple.org/index.ph ... l#msg37857
Also the upgrade is fixed, so the issue will not be in 1.0.3 when it is released:
http://viewsvn.cmsmadesimple.org/viewsv ... 98&r2=3459
It looks like this happens when full adodb is used instead of adodb lite.
For others that are experiencing this I wrote a PHP script to add the permission:
http://forum.cmsmadesimple.org/index.ph ... l#msg37857
Also the upgrade is fixed, so the issue will not be in 1.0.3 when it is released:
http://viewsvn.cmsmadesimple.org/viewsv ... 98&r2=3459