okay...I found a couple fixes for the sef urls plugin...I am hoping somebody will be cool & knowledgable enough to help me out with the ones I can't figure out...
Now working great!so far here are the fixes I made:
add this to the /cpg/plugins/sef_urls/codebase.php page:
before // Return modified HTML
add: //
// Bug Fix for SEF URLS plugin
// freesoulJAH ~ www.staticFiends.com
//
// Rewrite for search with multiple pages
$html = preg_replace('/thumbnails\.php\?album=search&cat=0&page=([0-9_-]+)/i','search-page-$1.html',$html);
// Rewrite for search by key words
$html = preg_replace('/thumbnails\.php\?album=search&search=([a-zA-z0-9_-ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ@°-]+)/i','search-$1.html',$html);
// Rewrite for most viewed
$html = preg_replace('/thumbnails\.php\?album=topn&cat=([a-zA-z0-9_-ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ@°-]+)/i','top-$1.html',$html);
// Rewrite for last uploaded
$html = preg_replace('/thumbnails\.php\?album=lastup&cat=([\-]?[0-9]+)/i','newest-$1.html',$html);
// Rewrite for last uploaded with multiple pages
$html = preg_replace('/thumbnails\.php\?album=lastup&cat=([\-]?[0-9]+)&page=([0-9_-]+)/i','newest-$1-page-$2.html',$html);
// Rewrite for top rated
$html = preg_replace('/thumbnails\.php\?album=toprated&cat=([\-]?[0-9]+)/i','top-rated-photos-$1.html',$html);
// Rewrite for last comments
$html = preg_replace('/thumbnails\.php\?album=lastcom&cat=([\-]?[0-9]+)/i','last-comment-$1.html',$html);
add to the /cpg/.htaccess page:
after similar RewriteRules
add:###
#Bug Fix for SEF URLS plugin
#freesoulJAH ~ www.staticFiends.com
###
RewriteRule search-([a-z0-9]*)\.html thumbnails.php?album=search&search=$1 [NC]
RewriteRule search-page-([0-9]*)\.html thumbnails.php?album=search&cat=0&page=$1 [NC]
RewriteRule top-([\-]?[0-9]+)\.html thumbnails.php?album=topn&cat=$1 [NC]
RewriteRule newest-([\-]?[[0-9]*)\.html thumbnails.php?album=lastup&cat=$1 [NC]
RewriteRule newest-([\-]?[[0-9]*)-page-([\-]?[[0-9]*)\.html thumbnails.php?album=lastup&cat=$1&page=$2 [NC]
RewriteRule last-comment-([\-]?[[0-9]*)\.html thumbnails.php?album=lastcom&cat=$1 [NC]
RewriteRule top-rated-([\-]?[[0-9]*)-page-([\-]?[[0-9]*)\.html thumbnails.php?album=toprated&cat=$1&page=$2 [NC]

now for the one that is stumping me:
rewriting the multiple pages for most viewed:
http://www.staticfiends.com/photos/thumbnails.php?album=topn&cat=-144&page=2every time I try I wind up with:
http://www.staticfiends.com/photos/top--144.html&page=2the same thing is coming up for lastcom & toprated
no matter what I friggen' do...it keeps coming up like that...like I didn't do anything at all...so if anyone can tell me what I am doing wrong, or has other fixes for the SEF URLS plugin, then please post them on this thread.
in the next couple days/hours (depending on how long it takes) I will be working on the top rated,
last uploaded, last comments....but I got stuck working on the most viewed and it cost me a few hours before I gave up and decided to make this post...
peace
[edit]
I added the last uploaded & last uploaded w/ multiple pages and the first pages of top rated and last comments
[/edit]