| Commit | Line | Data |
|---|---|---|
| f934145d FG |
1 | conStruct uses the structWSF (both part of the Open Semantic Framework) web services |
| 2 | endpoints to operate. | |
| 3 | ||
| 4 | == Notes == | |
| 5 | ||
| 6 | If you want to be able to use automatic updates for conStruct, you will have to fix a file | |
| 7 | in the Drupal 6 framework. Because of the uppercase letters used in the current | |
| 8 | version of conStruct, we have to fix a bug in Drupal that ignore conStruct when come the | |
| 9 | time to list possible modules to upgrade. | |
| 10 | ||
| 11 | Open that file: druapl/includes/install.php | |
| 12 | ||
| 13 | Search for that line: | |
| 14 | ||
| 15 | ------------- | |
| 16 | function drupal_get_schema_versions($module) { | |
| 17 | ------------- | |
| 18 | ||
| 19 | Then replace it by these two lines: | |
| 20 | ||
| 21 | ------------- | |
| 22 | function drupal_get_schema_versions($module) { | |
| 23 | $module = strtolower($module); | |
| 24 | ------------- | |
| 25 | ||
| 26 | Then each time you will use the update.php script, you will see new updates appearing for conStruct modules. | |
| 27 | ||
| 28 | Note: the installation script below take care of this modification for you. | |
| 29 | ||
| 30 | == Installation == | |
| 31 | ||
| 32 | You can install the full Open Semantic Framework stack by | |
| 33 | using this OSF installation script: | |
| 34 | ||
| 35 | http://techwiki.openstructs.org/index.php/Open_Semantic_Framework_Installation | |
| 36 | ||
| 37 | ||
| 38 | Additionally, you can read the full installation manual from the TechWiki: | |
| 39 | ||
| 40 | http://techwiki.openstructs.org/index.php/StructWSF_Installation_Guide |