| 1 |
Export_DocBook installation
|
| 2 |
===========================
|
| 3 |
|
| 4 |
Unpack the export_docbook directory in the modules directory of your
|
| 5 |
Drupal installation:
|
| 6 |
|
| 7 |
% cd /path/to/drupal/modules
|
| 8 |
% tar -zxf /path/to/export_docbook.tar.gz
|
| 9 |
|
| 10 |
Enable the export_docbook module by checking the 'export_docbook' item on the
|
| 11 |
module administration page at admin/modules.
|
| 12 |
|
| 13 |
Enable 'export books as DocBook XML' permissions under
|
| 14 |
|
| 15 |
administer > access control
|
| 16 |
|
| 17 |
for all user roles which should be able to export books as DocBook XML
|
| 18 |
*Both* 'access content' and 'export books as DocBook XML'
|
| 19 |
permissions are required.
|
| 20 |
|
| 21 |
Note: exporting as DocBook XML is very computationally intensive. You will
|
| 22 |
need to ensure your Drupal/PHP installation is set up with access to adequate
|
| 23 |
memory and CPU time.
|
| 24 |
|
| 25 |
You should also protect your site from denial of service attacks by
|
| 26 |
making sure that only authorized users have permission to access the
|
| 27 |
export functions.
|
| 28 |
|
| 29 |
|
| 30 |
Requirements
|
| 31 |
-----------
|
| 32 |
|
| 33 |
The Export_DocBook module requires PHP5, and Tidy Support enabled.
|
| 34 |
|
| 35 |
You can view the configuration of your PHP installation by creating a
|
| 36 |
PHP page containing the following code. Make sure that it is visible
|
| 37 |
only by people you trust.
|
| 38 |
|
| 39 |
<?php
|
| 40 |
print phpinfo();
|
| 41 |
?>
|
| 42 |
|
| 43 |
|
| 44 |
Bugs:
|
| 45 |
-----
|
| 46 |
|
| 47 |
Please see the file README.txt for information on reporting bugs.
|
| 48 |
|
| 49 |
|