Difference between revisions of "Scuttle"
m |
m (smecontribs) |
||
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
+ | http://scuttle.org | ||
+ | |||
Scuttle is a web-based social bookmarks manager that enables you to: | Scuttle is a web-based social bookmarks manager that enables you to: | ||
*Store all your favourite links in one place, accessible from anywhere. | *Store all your favourite links in one place, accessible from anywhere. | ||
Line 10: | Line 12: | ||
*Tag your bookmarks with as many labels, instead of wrestling with folders. | *Tag your bookmarks with as many labels, instead of wrestling with folders. | ||
− | |||
=== Installation === | === Installation === | ||
− | This contrib can be found in the [http:// | + | This contrib can be found in the [http://mirror.contribs.org/smeserver/releases/7/smecontribs/i386/repodata/index.html smecontribs] repository. |
− | + | Download and install scuttle and smeserver-scuttle | |
+ | yum install --enablerepo=smecontribs smeserver-scuttle | ||
− | + | No need to reboot. | |
− | + | Create database structure | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
/usr/bin/mysql scuttle < /opt/scuttle/tables.sql | /usr/bin/mysql scuttle < /opt/scuttle/tables.sql | ||
− | + | Copy and rename the config file | |
cp /opt/scuttle/config.inc.php.example /opt/scuttle/config.inc.php | cp /opt/scuttle/config.inc.php.example /opt/scuttle/config.inc.php | ||
− | + | Find scuttle mysql password (DbPassword=) with | |
config show scuttle | config show scuttle | ||
Copy the string, it should be similar to this: 2zvEiYibIewQOsQ07KAtObnh5FcOhUhaq+dtSAdXBjuOBsbSoPt5Bty8PEPfjhfHmL0wejMAmUMO | Copy the string, it should be similar to this: 2zvEiYibIewQOsQ07KAtObnh5FcOhUhaq+dtSAdXBjuOBsbSoPt5Bty8PEPfjhfHmL0wejMAmUMO | ||
− | + | and add the password to the config file | |
− | + | nano -w /opt/scuttle/config.inc.php | |
− | |||
− | |||
− | |||
− | |||
− | |||
$dbpass = 'paste copied password here'; | $dbpass = 'paste copied password here'; | ||
− | |||
− | |||
− | + | Open http://yourserver/scuttle/ and register a user. | |
− | + | === Options === | |
− | + | * [http://scuttle.org/wiki/firefox_extension Firefox plugin] | |
− | + | * Restrict usage with PublicAccess db, (global-pw are default): | |
config setprop scuttle PublicAccess global-pw | config setprop scuttle PublicAccess global-pw | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==== Uninstall ==== | ==== Uninstall ==== | ||
− | + | rpm -e scuttle smeserver-scuttle | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
=== Bugs === | === Bugs === | ||
Line 101: | Line 62: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category: Contrib]] | [[Category: Contrib]] | ||
[[Category: Dungog]] | [[Category: Dungog]] |
Revision as of 14:00, 17 January 2008
Scuttle
Maintainer
Description
Scuttle is a web-based social bookmarks manager that enables you to:
- Store all your favourite links in one place, accessible from anywhere.
- Share your bookmarks with everyone, with friends or just keep them private.
- Tag your bookmarks with as many labels, instead of wrestling with folders.
Installation
This contrib can be found in the smecontribs repository.
Download and install scuttle and smeserver-scuttle
yum install --enablerepo=smecontribs smeserver-scuttle
No need to reboot.
Create database structure
/usr/bin/mysql scuttle < /opt/scuttle/tables.sql
Copy and rename the config file
cp /opt/scuttle/config.inc.php.example /opt/scuttle/config.inc.php
Find scuttle mysql password (DbPassword=) with
config show scuttle
Copy the string, it should be similar to this: 2zvEiYibIewQOsQ07KAtObnh5FcOhUhaq+dtSAdXBjuOBsbSoPt5Bty8PEPfjhfHmL0wejMAmUMO
and add the password to the config file
nano -w /opt/scuttle/config.inc.php $dbpass = 'paste copied password here';
Open http://yourserver/scuttle/ and register a user.
Options
- Restrict usage with PublicAccess db, (global-pw are default):
config setprop scuttle PublicAccess global-pw
Uninstall
rpm -e scuttle smeserver-scuttle
Bugs
Please raise bugs under the SME-Contribs section in bugzilla and select the smeserver-scuttle component or use this link .
Patches
http://sourceforge.net/tracker/?group_id=134378&atid=729862
a simple one is to allow https usage (https fix)
nano -w /opt/scuttle/header.inc.php - $root = 'http://'. $_SERVER['HTTP_HOST'] . $root; + + $protocol = ($_SERVER["HTTPS"] == 'on') ? 'https://' : 'http://'; + $root = $protocol . $_SERVER['HTTP_HOST'] . $root;