Hello,
I have a role called "site developer" that should be able to edit any page, but for some reason they can't. On the access-control page (admin/user/access), this role has the permissions "administer nodes" and "edit page content". So users with this role should be able to edit any page, right?
I am running Drupal 5. Ten minutes ago I deleted everything in the node_access table and inserted the following line:
INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0)
I have the taxonomy-access module installed, but I'm not using it for page nodes.
Any ideas? Is it safe to run "rebuild-permissions"? I don't want to lose what I just gained by editing the node_access table.
Thanks for the help.
Daniel.
Perhaps check out the permissions for input filters... All permissions that might have any bearing on the content type and its permissions...
On Mon, Dec 1, 2008 at 3:38 PM, Daniel Carrera daniel.carrera@zmsl.com wrote:
Hello,
I have a role called "site developer" that should be able to edit any page, but for some reason they can't. On the access-control page (admin/user/access), this role has the permissions "administer nodes" and "edit page content". So users with this role should be able to edit any page, right?
I am running Drupal 5. Ten minutes ago I deleted everything in the node_access table and inserted the following line:
INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0)
I have the taxonomy-access module installed, but I'm not using it for page nodes.
Any ideas? Is it safe to run "rebuild-permissions"? I don't want to lose what I just gained by editing the node_access table.
Thanks for the help.
Daniel.
[ Drupal support list | http://lists.drupal.org/ ]
Daniel, are they getting 'access denied' errors, or something else?
On Mon, Dec 1, 2008 at 12:42 PM, Victor Kane victorkane@gmail.com wrote:
Perhaps check out the permissions for input filters... All permissions that might have any bearing on the content type and its permissions...
On Mon, Dec 1, 2008 at 3:38 PM, Daniel Carrera daniel.carrera@zmsl.com wrote:
Hello,
I have a role called "site developer" that should be able to edit any page, but for some reason they can't. On the access-control page (admin/user/access), this role has the permissions "administer nodes" and "edit page content". So users with this role should be able to edit any page, right?
I am running Drupal 5. Ten minutes ago I deleted everything in the node_access table and inserted the following line:
INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0)
I have the taxonomy-access module installed, but I'm not using it for page nodes.
Any ideas? Is it safe to run "rebuild-permissions"? I don't want to lose what I just gained by editing the node_access table.
Thanks for the help.
Daniel.
[ Drupal support list | http://lists.drupal.org/ ]
-- [ Drupal support list | http://lists.drupal.org/ ]
If you are a user with the "site developer" role, an visit a page that is not yours, you don't see the "edit" link that would allow you to edit the page. There is no "access denied" error, or any error at all. Just an inability to edit the page.
William Smith wrote:
Daniel, are they getting 'access denied' errors, or something else?
On Mon, Dec 1, 2008 at 12:42 PM, Victor Kane <victorkane@gmail.com mailto:victorkane@gmail.com> wrote:
Perhaps check out the permissions for input filters... All permissions that might have any bearing on the content type and its permissions... On Mon, Dec 1, 2008 at 3:38 PM, Daniel Carrera <daniel.carrera@zmsl.com <mailto:daniel.carrera@zmsl.com>> wrote: > Hello, > > I have a role called "site developer" that should be able to edit any > page, but for some reason they can't. On the access-control page > (admin/user/access), this role has the permissions "administer nodes" > and "edit page content". So users with this role should be able to edit > any page, right? > > > I am running Drupal 5. Ten minutes ago I deleted everything in the > node_access table and inserted the following line: > > INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0) > > > I have the taxonomy-access module installed, but I'm not using it for > page nodes. > > Any ideas? Is it safe to run "rebuild-permissions"? I don't want to lose > what I just gained by editing the node_access table. > > Thanks for the help. > > Daniel. > -- > [ Drupal support list | http://lists.drupal.org/ ] > -- [ Drupal support list | http://lists.drupal.org/ ]
What are input filters?
Victor Kane wrote:
Perhaps check out the permissions for input filters... All permissions that might have any bearing on the content type and its permissions...
On Mon, Dec 1, 2008 at 3:38 PM, Daniel Carrera daniel.carrera@zmsl.com wrote:
Hello,
I have a role called "site developer" that should be able to edit any page, but for some reason they can't. On the access-control page (admin/user/access), this role has the permissions "administer nodes" and "edit page content". So users with this role should be able to edit any page, right?
I am running Drupal 5. Ten minutes ago I deleted everything in the node_access table and inserted the following line:
INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0)
I have the taxonomy-access module installed, but I'm not using it for page nodes.
Any ideas? Is it safe to run "rebuild-permissions"? I don't want to lose what I just gained by editing the node_access table.
Thanks for the help.
Daniel.
[ Drupal support list | http://lists.drupal.org/ ]
Daniel Carrera wrote:
What are input filters?
If the "site developers" don't have, for example, permission to use the full HTML, and the pages in question are written in full HTML, they won't be able to edit them. All this is controlled at {site}/admin/settings/filters
Cheers,
Jonathan
Jonathan Hedstrom wrote:
Daniel Carrera wrote:
What are input filters?
If the "site developers" don't have, for example, permission to use the full HTML, and the pages in question are written in full HTML, they won't be able to edit them.
Ah, thanks.
Anyways, the input filters were not the problem. I don't know what the problem was, but whatever it is, it's gone now. This is what I did:
1. I ran "rebuild permissions" again. This broke the permissions and made the "access denied" error come back.
2. But no worries, I implemented Victor's solution again. I cleared node_access and inserted the one row Victor said.
Then, like magic, all the permissions seem to work right.
Cheers, Daniel.