Parcourir la source

Merge pull request #925 from tripal/602-tv3-finding_content

Moderinzed images and added text differentiating the Tripal content
Stephen Ficklin il y a 5 ans
Parent
commit
b5c87bb281

BIN
docs/user_guide/drupal_overview.create_content1.png


BIN
docs/user_guide/drupal_overview.create_content2.png


BIN
docs/user_guide/drupal_overview.find_content.png


+ 4 - 0
docs/user_guide/drupal_overview.rst

@@ -27,6 +27,8 @@ You'll notice at the top a **Title** field and a **Body** text box. All pages re
 
 For practice, try to create two new pages. A **Home** page and an **About** page for our site. First, create the home page and second create the about page. Add whatever text you like for the body.
 
+In the screenshots above, you may have noticed the link **Add Tripal Content**.  Tripal content is different from the typical Drupal content types: **Basic Page** or **Article**.  Instead the content that Tripal provides is the biological and ancillary data that your site will provide to users.  Later this tutorial will describe how to add new biological data.
+
 Finding Content
 ---------------
 
@@ -36,6 +38,8 @@ To find any content that has been created on the site, click the **Find Content*
 
 You'll also notice a set of drop down boxes for filtering the content. For sites with many different content types and pages this helps to find content. You can use this list to click to view each page or to edit.
 
+Later in this guide, instructions will be provided for finding Tripal Content. Tripal content is different from the typical Drupal content types: **Basic Page** or **Article**.  Instead the content that Tripal provides is the biological and ancillary data that your site will provide to users.  It is also accessible via a link named **Find Tripal Content** found on the same menu bar as **Find Content**
+
 Site Administration
 -------------------
 

+ 18 - 1
docs/user_guide/install_tripal/upgrade_from_tripal2.rst

@@ -184,8 +184,25 @@ You have now completed the migration process and can safely disable the Tripal v
 
 Troubleshooting
 ---------------
+1. Dealing with ``stack depth limit exceeded`` on Step 4 of the Migration.
 
-1. For sites that have upgrading from Drupal 6:
+When there is a large number of nodes, Drupal's search module fails to update the search_total table and gives the following error:
+
+.. code-block:: bash
+
+    Uncaught exception thrown in shutdown function. PDOException: SQLSTATE[54001]: Statement too complex: 7 ERROR:  stack depth limit exceeded
+    HINT:  Increase the configuration parameter "max_stack_depth
+
+
+You can avoid this problem by clearing out the Drupal search tables byu executing the following SQL commands:
+
+.. code-block:: sql
+
+    TRUNCATE search_total;
+    TRUNCATE search_index;
+
+
+2. For sites that have upgrading from Drupal 6:
 
   If your site was upgraded from Drupal 6, you'll need to add a new text format with a machine name called 'full_html' as this is the default formatter that Tripal v3 uses. As in Drupal 6, the 'Full HTML' text format has a numeric machine name (usually '2') that was later changed to 'full_html' in Drupal 7.