[pLog-svn] r4914 - in plog/trunk: . config

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Fri Mar 2 10:02:13 EST 2007


Author: jondaley
Date: 2007-03-02 10:02:13 -0500 (Fri, 02 Mar 2007)
New Revision: 4914

Modified:
   plog/trunk/.htaccess
   plog/trunk/config/config.properties.php
Log:
I always wanted to be like Oscar

Modified: plog/trunk/.htaccess
===================================================================
--- plog/trunk/.htaccess	2007-03-02 15:00:35 UTC (rev 4913)
+++ plog/trunk/.htaccess	2007-03-02 15:02:13 UTC (rev 4914)
@@ -6,44 +6,70 @@
 deny from all 
 </Files>
 
+Options -Indexes
+Options +FollowSymLinks
+
+<IfModule mod_rewrite.c>
+
 RewriteEngine On
-RewriteBase /plog
+RewriteBase /
 
-RewriteCond %{REMOTE_HOST} !orange.limedaley.com
-RewriteRule .* /temporary_failure.html [L]
+# Permalink to the blog entry (i.e. /1_userfoo/archive/3_title-foo-bar.html)
+RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]+)_[^.]+\.html$ index.php?op=ViewArticle&blogId=$1&articleId=$2 [L,NC]
 
-# old category name
-RewriteRule ^category/internet(-|_)stuff(.*)  /plog/category/internet$2 [R=permanent,L]
+# Monthly archive (i.e. /1_userfoo/archive/200401.html) 
+RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]{6})\.html$ index.php?blogId=$1&Date=$2 [L,NC]
+# -- same as above but with paging included
+RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]{6})\.html\.page\.([1-9]+)$ index.php?blogId=$1&Date=$2&page=$3 [L,NC]
 
-# old links
-RewriteRule ^content(.*)  /plog/static$1 [R=permanent,L]
+# Daily archive (i.e. /1_blogfoo/archive/20040101.html)
+RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]{8})\.html$ index.php?blogId=$1&Date=$2 [L,NC]
+# -- same as above but with paging included
+RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]{8})\.html\.page\.([1-9]+)$ index.php?blogId=$1&Date=$2&page=$3 [L,NC]
 
-RewriteCond %{REQUEST_URI} ^/plog/(category|archives)/[^_]+_
-RewriteRule ^([^_]+)_(.*)$  $1-$2 [R=permanent,L]
+# Album (i.e. /88_userfoo/albums/34_title-foo-bar.html)
+RewriteRule ^([0-9]+)_[^/]+/albums/([0-9]+)_[^.]+\.html$ index.php?op=ViewAlbum&blogId=$1&albumId=$2 [L,NC]
+# -- same as above but with paging included
+RewriteRule ^([0-9]+)_[^/]+/albums/([0-9]+)_[^.]+\.html\.page\.([1-9]+)$ index.php?op=ViewAlbum&blogId=$1&albumId=$2&page=$3 [L,NC]
 
-RewriteRule ^jonathan/?$ /plog/category/jonathan [R,L]
-RewriteRule ^isaac/?$ /plog/category/isaac [R,L]
-RewriteRule ^(1|jondaley)/?$ /plog/ [R,L]
+# Albums (i.e. /88_userfoo/albums/)
+RewriteRule ^([0-9]+)_[^/]+/albums/$ index.php?op=ViewAlbum&blogId=$1&albumId=0 [L,NC]
 
-#############################################################################
-## My query string gets 
-# Static Pages (i.e /page/userfoo[.template])
-#RewriteRule ^page/(.+)$ index.php?op=Template&show=$1&%{QUERY_STRING} [L]
+# Category view (i.e. /88_userfoo/categories/4_cat-foobar.html)
+RewriteRule ^([0-9]+)_[^/]+/categories/([0-9]+)_[^.]+\.html$ index.php?blogId=$1&postCategoryId=$2 [L,NC]
+# -- same as above but with paging included
+RewriteRule ^([0-9]+)_[^/]+/categories/([0-9]+)_[^.]+\.html\.page\.([1-9]+)$ index.php?blogId=$1&postCategoryId=$2&page=$3 [L,NC]
 
-###############################
-## catch all to avoid errors in the error.log
-#RewriteCond %{REQUEST_URI} !^/plog/error.php
-#RewriteCond %{REQUEST_URI} !^/plog/admin.php
-#RewriteCond %{REQUEST_URI} !^/plog/index.php
-#RewriteCond %{REQUEST_URI} !^/plog/templates
-#RewriteCond %{REQUEST_URI} !^/plog/files
-#RewriteRule (.*) /plog/error.php [L]
-###############################
+# Category-Feeds (i.e. /3_userfoo/feeds/categories/2_category/atom)
+RewriteRule ^([0-9]+)_[^/]+/feeds/categories/([0-9]+)_[^.]+/(.*)$ rss.php?blogId=$1&categoryId=$2&profile=$3 [L,NC]
 
-<Files *.php>
- ForceType application/x-httpd-php
-</Files>
+# Feeds (i.e. /3_userfoo/feeds/atom)
+RewriteRule ^([0-9]+)_[^/]+/feeds/(.*)$ rss.php?blogId=$1&profile=$2 [L,NC]
 
+# Trackbacks (i.e. /3_userfoo/trackbacks/34_title-foo-bar.html)
+RewriteRule ^([0-9]+)_[^/]+/trackbacks/([0-9]+)_[^.]+\.html$ index.php?op=Trackbacks&blogId=$1&articleId=$2 [L,NC]
+
+# Comment form (i.e. /88_userfoo/comment/34_title-foo-bar.html)
+RewriteRule ^([0-9]+)_[^/]+/comment/([0-9]+)_[^.]+\.html$ index.php?op=Comment&blogId=$1&articleId=$2 [L,NC]
+
+# Resources (i.e. /88_userfoo/resources/this-is-a-resource-name.pdf.html)
+RewriteRule ^([0-9]+)_[^/]+/resources/([^.]+)\.([^.]+)\.html$ index.php?op=ViewResource&blogId=$1&resource=$2.$3 [L,NC]
+
+# Download a resource (i.e. /88_userfoo/get/this-is-a-resource-name.pdf)
+RewriteRule ^([0-9]+)_[^/]+/get/(.+)$ resserver.php?blogId=$1&resource=$2 [L,NC]
+
+# A non-default blog (i.e. /88_userfoo)
+RewriteRule ^([0-9]+)(_[^/]+)?$ index.php?blogId=$1 [L,NC]
+# -- same as above but with paging included
+RewriteRule ^([0-9]+)(_[^/]+)\.page\.([1-9]+)$ index.php?blogId=$1&page=$3 [L,NC]
+
+# Static Pages (i.e /3_userfoo/demosites)
+RewriteRule ^([0-9]+)_[^/]+/(.+)$ index.php?op=Template&blogId=$1&show=$2 [NC]
+
+</IfModule>
+
+
+
 <Files post>
  ForceType application/x-httpd-php
 </Files>
@@ -96,6 +122,6 @@
  ForceType application/x-httpd-php
 </Files>
 
-ErrorDocument 401 /plog/error.php
-ErrorDocument 403 /plog/error.php
-ErrorDocument 404 /plog/error.php
+ErrorDocument 401 /error.php
+ErrorDocument 403 /error.php
+ErrorDocument 404 /error.php

Modified: plog/trunk/config/config.properties.php
===================================================================
--- plog/trunk/config/config.properties.php	2007-03-02 15:00:35 UTC (rev 4913)
+++ plog/trunk/config/config.properties.php	2007-03-02 15:02:13 UTC (rev 4914)
@@ -26,10 +26,10 @@
 #   (note, if upgrading between minor releases:
 #   1.0 to 1.0.1, etc. you shouldn't run the wizard)
 
-$config['db_host'] = 'localhost';
-$config['db_username'] = 'jondaley';
-$config['db_password'] = 'plo!GGy4';
-$config['db_database'] = 'jondaley';
+$config['db_host'] = '';
+$config['db_username'] = '';
+$config['db_password'] = '';
+$config['db_database'] = '';
 $config["db_persistent"] = true;
 $config['db_character_set'] = 'latin1';
 
@@ -40,5 +40,5 @@
 # coexist in the same unique database. If you change this after the initial configuration done
 # with the installation wizard, please make sure that you also rename the tables.
 #
-$config['db_prefix'] = 'plog_';
+$config['db_prefix'] = '';
 ?>
\ No newline at end of file



More information about the pLog-svn mailing list