Changes between Version 46 and Version 47 of DevelopmentServer


Ignore:
Timestamp:
03/03/11 12:57:04 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentServer

    v46 v47  
    205205 
    206206Further information and links to help pages can be found here: wiki:WikiStart#Trac 
     207 
     208== bbPress == 
     209 
     210There is an archived copy of the old forum at http://2011.archive.transitionnetwork.org/forum/ this was upgraded to the latest version of bbPress when it was installed, the admin email was reset so the SQL upgrade could be run and then the following things were done to lock the forum down as read-only. 
     211 
     212Template edit, bb-templates/kakumei/header.php removed line 32: 
     213 
     214{{{ 
     215<?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?> 
     216}}} 
     217 
     218Apache configuration: 
     219 
     220{{{ 
     221      RewriteRule ^bb-admin.*$ /forum/ [L,R] 
     222      RewriteRule ^bb-config.*$ /forum/ [L,R] 
     223      RewriteRule ^bb-edit.*$ /forum/ [L,R] 
     224      RewriteRule ^bb-cron.*$ /forum/ [L,R] 
     225      RewriteRule ^bb-login.*$ /forum/ [L,R] 
     226      RewriteRule ^bb-post.*$ /forum/ [L,R] 
     227      RewriteRule ^bb-reset-password.*$ /forum/ [L,R] 
     228      RewriteRule ^bb-settings.*$ /forum/ [L,R] 
     229      RewriteRule ^profile-edit.*$ /forum/ [L,R] 
     230      RewriteRule ^edit.*$ /forum/ [L,R] 
     231      RewriteRule ^register.*$ /forum/ [L,R] 
     232}}}