README.txt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ********************************************************************
  2. P A G E T I T L E M O D U L E
  3. ********************************************************************
  4. Original Author: Robert Douglass
  5. Current Maintainers: Nicholas Thompson and John Wilkins
  6. ********************************************************************
  7. DESCRIPTION:
  8. This module gives you control over the page title. It gives you the chance
  9. to provide patterns for how the title should be structured, and on node
  10. pages, gives you the chance to specify the page title rather than defaulting
  11. to the node title.
  12. ********************************************************************
  13. PERMISSIONS:
  14. This module defines the "set page title" and "administer page titles"
  15. permissions. The "set page title" permission determines whether a user will
  16. be able to edit the "Page title" field on node edit forms (if visible.) The
  17. "administer page titles" permission determines whether a user will be able to
  18. edit the "Page title" administration pages.
  19. ********************************************************************
  20. INSTALLATION:
  21. 1. Place the entire page_title directory into your Drupal modules/
  22. directory or the sites modules directory (eg site/default/modules)
  23. 2. Enable this module by navigating to:
  24. Administration > Modules
  25. At this point the Drupal install system will attempt to create the database
  26. table page_title. You should see a message confirming success or
  27. proclaiming failure. If the database table creation did not succeed,
  28. you will need to manually add the following table definition to your
  29. database:
  30. CREATE TABLE `page_title` (
  31. `type` varchar(15) NOT NULL default 'node',
  32. `id` int(10) unsigned NOT NULL default '0',
  33. `page_title` varchar(255) NOT NULL default '',
  34. PRIMARY KEY (`type`,`id`)
  35. );
  36. 3. Optionally configure the two variations of page title by visiting:
  37. Administration > Configuration > Search and metadata