/[drupal]/contributions/modules/faq/README.txt
ViewVC logotype

Diff of /contributions/modules/faq/README.txt

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1.4.5.4.5 by snpower, Wed Aug 13 10:01:10 2008 UTC revision 1.1.4.5.4.6 by snpower, Wed Nov 18 12:47:26 2009 UTC
# Line 7  CONTENTS OF THIS FILE Line 7  CONTENTS OF THIS FILE
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
# Line 73  and not the FAQ module. This is because Line 75  and not the FAQ module. This is because
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    

Legend:
Removed from v.1.1.4.5.4.5  
changed lines
  Added in v.1.1.4.5.4.6

  ViewVC Help
Powered by ViewVC 1.1.3