Changes

From SME Server
Jump to navigationJump to search
1,543 bytes added ,  09:01, 21 December 2016
m
Abandonned
Line 1: Line 1:  +
{{Warning box|The Scuttle project has abandoned. This how-to no longer applies. Please find an alternative and report back. If you still want to try this how-to, you are on your own including many security risks.}}
 
== Scuttle ==
 
== Scuttle ==
 +
{{Level|medium}}
 +
 +
{{Warning box|The information on this page was for SME Server 7 only!}}
    
=== Maintainer ===
 
=== Maintainer ===
Line 50: Line 54:  
=== Options ===
 
=== Options ===
   −
* [http://scuttle.org/wiki/firefox_extension Firefox plugin]
+
* [http://scuttle.org/wiki/firefox_extension Firefox 2 plugin]
 +
* [http://www.kai-mai.com/node/11 Firefox 3 plugin]
    
* Restrict usage with PublicAccess db, (global-pw are default):
 
* Restrict usage with PublicAccess db, (global-pw are default):
Line 59: Line 64:     
=== Patches ===
 
=== Patches ===
 +
====htpps====
 
http://sourceforge.net/tracker/?group_id=134378&atid=729862
 
http://sourceforge.net/tracker/?group_id=134378&atid=729862
   Line 69: Line 75:  
  +    $root = $protocol . $_SERVER['HTTP_HOST'] . $root;
 
  +    $root = $protocol . $_SERVER['HTTP_HOST'] . $root;
    +
====404 error====
 +
In some cases the following occurs, this change is not usually needed
 +
 +
Use 'search all bookmarks' to return at least 3 pages of results.
 +
 +
Then click the 'Next' button. http://servername/scuttle/search.php/all//?page=2
 +
 +
if you click it again on page 2 and get a 404 error apply the following change
 +
 +
Fix this by editing /opt/scuttle/templates/bookmarks.tpl.php
 +
At line 151, ABOVE this line: (edited to remove html code)
 +
 +
echo class="paging $bfirst .span /span. $bprev .span /
 +
span. $bnext .span/ span>'. $blast .span> / span.
 +
sprintf(T_('Page %d of %d'), $page, $totalpages) .'/p';
 +
 +
Add this:
 +
 +
// page url bug on smeserver-scuttle contrib quick fix by MB 2010-12-01
 +
// remove double slashes
 +
$bfirst = str_replace ('//', '/', $bfirst);
 +
$bprev = str_replace ('//', '/', $bprev);
 +
$bnext = str_replace ('//', '/', $bnext);
 +
$blast = str_replace ('//', '/', $blast);
 +
// restore protocol slashes
 +
$bfirst = str_replace (':/', '://', $bfirst);
 +
$bprev = str_replace (':/', '://', $bprev);
 +
$bnext = str_replace (':/', '://', $bnext);
 +
$blast = str_replace (':/', '://', $blast);
 +
// end of fix
 
   
 
   
 
[[Category: Contrib]]
 
[[Category: Contrib]]
 
[[Category: Dungog]]
 
[[Category: Dungog]]
 +
[[Category: Social Media Apps]]
 +
[[Category: Webapps]]

Navigation menu