Skip to content
Snippets Groups Projects
Commit 78e4b844 authored by Brett Bieber's avatar Brett Bieber
Browse files

Use svn:externals to pull in all the necessary plugins, and add a setup script...

Use svn:externals to pull in all the necessary plugins, and add a setup script which will symlink all plugins.
parent fbd6d677
No related branches found
No related tags found
No related merge requests found
******** ********
** How to set up UNL_Elgg: ** How to set up UNL_Elgg:
******** ********
Navigate to the elgg/mod directory in Terminal and sym-link to cas_auth and unl_theme Run the setup.sh script to symlink all the necessary plugins
ln -s ../../cas_auth cas_auth ./setup.sh
ln -s ../../unl_theme unl_theme
Create a database named unl_social Create a database named unl_social
Import the full_dump.sql file* Import the full_dump.sql file*
mysql -u root unl_social < stable_dump.sql mysql -u root unl_social < stable_dump.sql
...@@ -46,11 +45,4 @@ http://ucommjuhl.unl.edu/UNL_Elgg/elgg, change it!) ...@@ -46,11 +45,4 @@ http://ucommjuhl.unl.edu/UNL_Elgg/elgg, change it!)
******* *******
** Plugin info ** Plugin info
******* *******
Just run the setup.sh script. If any plugins are added, add this to the setup.sh script.
These are plugins that are included in trunk/UNL_Elgg that must be copied or sym linked to the elgg/mod directory
flexprofile_mj (doesn't seem to work with a sym link, must be copied. not sure why.)
cas_auth
unl_theme
customindex
form
\ No newline at end of file
setup.sh 0 → 100755
# Make a directory for elgg data files outside the root
mkdir elgg_data
cd elgg/mod
# Our Plugins
ln -s ../../cas_auth cas_auth
ln -s ../../customindex customindex
ln -s ../../flexprofile_mj flexprofile_mj
ln -s ../../unl_theme unl_theme
ln -s ../../plugins/flexfile flexfile
ln -s ../../plugins/flexgroupprofile flexgroupprofile
ln -s ../../plugins/flexprofile flexprofile
ln -s ../../plugins/form form
# Core Plugins
ln -s ../../core_plugins/groups groups
ln -s ../../core_plugins/notifications notifications
ln -s ../../core_plugins/profile profile
ln -s ../../core_plugins/reportedcontent reportedcontent
ln -s ../../core_plugins/riverdashboard riverdashboard
ln -s ../../core_plugins/thewire thewire
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment