Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
RewriteBase /[something written here]remove the "something written here" part so it looks like:RewriteBase /Save it over your old .htaccess file. See if that works for you!# BEGIN Plogger
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [S=2]
RewriteRule feed/$ plog-rss.php?path=%{REQUEST_URI} [L]
RewriteRule ^.*$ index.php?path=%{REQUEST_URI} [L]
</IfModule>
# END Plogger
# BEGIN Plogger
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [S=2]
RewriteRule feed/$ plog-rss.php?path=%{REQUEST_URI} [L]
RewriteRule ^.*$ index.php?path=%{REQUEST_URI} [L]
</IfModule>
# END Plogger
$path = join("/",array_diff(explode("/",$_SERVER["REQUEST_URI"]),explode("/",$_SERVER["PHP_SELF"])));after it, add this:$path = join("/",array_diff(explode("/",$_SERVER["REQUEST_URI"]),explode("/",$_SERVER["PHP_SELF"])));
echo $path;
index.php?path=/plogger_test_collection
$path = join("/",array_diff(explode("/",$_SERVER["REQUEST_URI"]),explode("/",$_SERVER["PHP_SELF"])));
$path = str_replace("index.php?path=/", "", $path);echo $_SERVER['REQUEST_URI'];
echo $_SERVER['PHP_SELF'];to your gallery.php and post what you get to the boards? It would help me to determine exactly which variable is going wrong so we can try to figure out a fix for any future releases.
echo $_SERVER['REQUEST_URI'];
echo $_SERVER['PHP_SELF'];
/index.php?path=/plogger_test_collection
/index.php
Posted By: BlueKidNew problem, Now can't navigate thru pages:Try this
1 to 17 of 17