Help with nodes in drupal
I have been tasked with updating a drupal site. I have a link like this site.com/node/28 which lists stories. Where does the 28 come from, I have been all over the admin and there is n开发者_Python百科othing with that number there. How do i find that page and edit it?
The 28 is the node id (nid). If you have the correct administrator privileges, you should see a tab at the top of the node titled 'Edit' on at that url. You can also try going to 'site.com/node/28/edit' to edit the node.
If you see an "Access Denied" message when trying to access that url, you will need to be given more permissions to edit the node.
For a better general understanding of Drupal see http://drupal.org/getting-started and to learn more about administering Drupal see http://drupal.org/documentation/administer
If you're seeing a list, it's most likely coming from a Views block, which will be added to the page in the blocks admin section at admin/build/block, with the content of the view actually configured in the Views admin section at admin/build/views.
精彩评论