Please understand; this is what I have done to fix MY installaion of Lyften Bloggie. I have NO IDEA of what consequence this could bring in the future, or what impacts this may have else where in Lyften Bloggie. I just know that this works FOR NOW, FOR ME!!
I do not know the author nor communicate with him/her. If you choose to modify your code because of this or one of my previous posts, you do so on your own free will. Again, I do not know what repercussions they may or may not have. Do this at your own risk.
This ONE FIX should fix all modules in Lyften Bloggie that are broke because of SEF.
In Joomla I have SEF, mod_rewrite, and suffex all check YES.
Edit File:
/components/com_lyftenbloggie/router.php
Change Line 38
if (!isset($query['view']) && !isset($query['id']) && !isset($query['catid']) && isset($query['Itemid'])) {
to
if (isset($query['view']) && isset($query['id']) && isset($query['catid']) && isset($query['Itemid'])) {
Change Line 60
&& !isset($item->query['id']))
to
&& isset($item->query['id']))
Notice all I did was remove the Exclam points (!)
your best bet would be to copy the line, and paste it right below itself, edit the second line and comment out the first one. Example below.
// && !isset($item->query['id']))
&& isset($item->query['id']))
The // tells php to skip this line. This way the origional code is still there incase this creates conflicts in the future.


