Skip to content
Snippets Groups Projects
Commit 54cd8988 authored by Eric Rasmussen's avatar Eric Rasmussen
Browse files

Update our reference to the latest jquery lib included in elgg. Add...

Update our reference to the latest jquery lib included in elgg. Add documentation on defining locat data directory and path info in the DB.
parent e14d87f2
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,13 @@ Create the local elgg/.htaccess file using the sample on the install page
Be sure to set the correct RewriteBase /~bbieber/UNL_Elgg/elgg/ for example.
Create the local elgg/engine/settings.php file.
Be sure to specify unl_social as the database name
Create a local directory for elgg data outside of the web root.
Change the permissions so Apache has write access to it.
sudo chown _www elgg_data
Install the UNL_Templates pear packages
pear channel-discover pear.unl.edu && pear install unl/UNL_Templates-beta
Set the correct site url within the database:
UPDATE elggsites_entity SET url='http://localhost/~bbieber/UNL_Elgg/elgg/' WHERE guid=1;
UPDATE elggdatalists SET value = '/Library/WebServer/Documents/workspace/UNL_Elgg/elgg/' WHERE name = 'path';
UPDATE elggdatalists SET value = '/Library/WebServer/Documents/workspace/elgg_data/' WHERE name = 'dataroot';
Make sure the local site has an updated copy of the templatedependents
\ No newline at end of file
......@@ -30,7 +30,7 @@ $release = get_version(true);
<meta name="ElggVersion" content="<?php echo $version; ?>" />
<!-- <script type="text/javascript" src="<?php echo $vars['url']; ?>vendors/jquery/jquery-1.2.6.pack.js"></script> -->
<script type="text/javascript">var $ = window.$ = window.jQuery;</script>
<script type="text/javascript" src="<?php echo $vars['url']; ?>vendors/jquery/jquery-ui-personalized-1.5.3.packed.js"></script>
<script type="text/javascript" src="<?php echo $vars['url']; ?>vendors/jquery/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="<?php echo $vars['url']; ?>_css/js.php?lastcache=<?php echo $vars['config']->lastcache; ?>&amp;js=initialise_elgg&amp;viewtype=<?php echo $vars['view']; ?>"></script>
<?php
global $pickerinuse;
......
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