> ## Content Index
> Fetch the complete content index at: https://jasontucker.blog/llms.txt
> Use this file to discover other available public pages before exploring further.

# How to: Get Falbum to work in Wordpress 2.0
- URL: https://jasontucker.blog/how-to-get-falbum-to-work-in-wordpress-20/
- Published: 2006-01-10T15:31:58.000Z
- Updated: 2006-01-10T15:31:58.000Z
- Author: Jason Tucker
- Tags: WordPress, #wordpress

I’m writing this post in hope of helping someone that are having issues with WordPress 2.0 and getting the latest version of Falbum (the off site flickr album viewer for wordpress) to work. The main issue is that if you want to get Falbum’s friendly url’s to work you’ll need to enabled them. Then edit the .htaccess file in the root of your blog directory and move the block of code that talks about Falbum above the wordpress block.

> ``\# BEGIN FAlbum  
> RewriteEngine On  
> RewriteRule ^photos/?(\[^/\]\*)?/?(\[^/\]\*)?/?(\[^/\]\*)?/?(\[^/\]\*)?/?(\[^/\]\*)?/?(\[^/\]\*)?/?(\[^/\]\*)?/?(\[^/\]\*)?/?$ /wp-content/plugins/falbum/falbum-wp.php?$1=$2&$3=$4&$5=$6&$7=$8 \[QSA,L\]  
> \# END FAlbum  
> \# BEGIN WordPress  
> RewriteEngine On  
> RewriteBase /  
> RewriteCond %{REQUEST\_FILENAME} !-f  
> RewriteCond %{REQUEST\_FILENAME} !-d  
> RewriteRule . /index.php
> 
> \# END WordPress

Why? well, they confilct somehow and since .htaccess files are read from top to bottom, it would set the falbum rule first, then it would set the wordpress rules which will fix the issue. After doing so you’ll notice that Falbum will work, but only in Firefox. For some reason IE will come back with a 500 error and complain. The way around this is you’ll need to make a change in the WordPress Admin >> Options >> Permalinks area. For it to work on my site I needed to change the “optional” area so it reads /category (see picture below). I’m not sure why this fixes it, but it will allow IE to be able to view the pages and navigate the images.  
![falbumworking.jpg](http://www.abstrakone.com/wp-content/uploads/2006/01/falbumworking.jpg)

Hopefully this helps someone out there and if it does, please leave a comment.