| 7 |
* Known Issues |
* Known Issues |
| 8 |
- No FAQs appear after module upgrade |
- No FAQs appear after module upgrade |
| 9 |
- <p> tags appear in FAQ question text |
- <p> tags appear in FAQ question text |
| 10 |
|
- Clicking on category links takes user to front page |
| 11 |
|
- FAQ nodes not being created |
| 12 |
|
|
| 13 |
|
|
| 14 |
INTRODUCTION |
INTRODUCTION |
| 75 |
attach themselves to all textareas on a given page. Details on how to prevent |
attach themselves to all textareas on a given page. Details on how to prevent |
| 76 |
this can be found at http://drupal.org/node/294708 |
this can be found at http://drupal.org/node/294708 |
| 77 |
|
|
| 78 |
|
Clicking on category links takes user to front page |
| 79 |
|
--------------------------------------------------- |
| 80 |
|
Instead of being taken to the categorized faq page, the front page is displayed |
| 81 |
|
when the user clicks on a faq category. This is something to do with the |
| 82 |
|
pathauto module and can be easily fixed by doing a bulk update of paths for the |
| 83 |
|
faq vocabulary. |
| 84 |
|
|
| 85 |
|
FAQ nodes not being created |
| 86 |
|
--------------------------- |
| 87 |
|
If using MySQL 5.0.* with STRICT_ALL_TABLES mode, then you may get errors about |
| 88 |
|
the question text being too long to be inserted into the node and node_revisions |
| 89 |
|
tables. The solution is to either not use the strict mode, or add the following |
| 90 |
|
4 triggers: |
| 91 |
|
|
| 92 |
|
CREATE TRIGGER node_shrtn_ttl_ins BEFORE INSERT ON node FOR EACH ROW SET NEW.title = SUBSTR(NEW.title,1,128); |
| 93 |
|
CREATE TRIGGER node_shrtn_ttl_upd BEFORE UPDATE ON node FOR EACH ROW SET NEW.title = SUBSTR(NEW.title,1,128); |
| 94 |
|
CREATE TRIGGER node_rev_shrtn_ttl_ins BEFORE INSERT ON node_revisions FOR EACH ROW SET NEW.title = SUBSTR(NEW.title,1,128); |
| 95 |
|
CREATE TRIGGER node_rev_shrtn_ttl_upd BEFORE UPDATE ON node_revisions FOR EACH ROW SET NEW.title = SUBSTR(NEW.title,1,128); |
| 96 |
|
|