Welcome, Guest
Please Login or Register.    Lost Password?

Activated Joomla-SEO = No blogs
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: Activated Joomla-SEO = No blogs
#72
Activated Joomla-SEO = No blogs 8 Months, 3 Weeks ago Karma: 0
Hi there,

I got a serious problem with the newest version of photoblog.

When I´ve got activated seo in the backend of joomla I can see the categories but when I click on one I can´t see any blogs. Just the "back"-button.

Whe I got seo deactivated everything works like a charm.

Is there someone with an idea?
neon
Fresh Boarder
Posts: 7
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#73
Re:Activated Joomla-SEO = No blogs 8 Months, 3 Weeks ago Karma: 2
Hey,

please try the following:
- search the router.php (*root*/components/com_photoblog)
- open the file with notepad or another php editor
- replace "$db->quote( $db->getEscaped( $seg ), false )" with "$seg" (without the quotes) in the lines 47 and 55
- save the file and try again

A short feedback if this works would be fine thank you!

best regards
marco
Marco
Senior Boarder
Posts: 59
graph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#74
Re:Activated Joomla-SEO = No blogs 8 Months, 2 Weeks ago Karma: 0
Hi Marco,

thank you for your really quick reply. I took the old router.php and it worked. Can I leave it as it is or will I have a security issue?

Thank you!
neon
Fresh Boarder
Posts: 7
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#75
Re:Activated Joomla-SEO = No blogs 8 Months, 2 Weeks ago Karma: 2
I think you can use this modified version, but I will check this exactly next week and publish an update if necessary.
Marco
Senior Boarder
Posts: 59
graph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#80
Re:Activated Joomla-SEO = No blogs 8 Months, 1 Week ago Karma: 2
Hello neon,

I have checked this out and will publish a fix (alpha 3c) today in the evening...

If you like to fix the issue without updating, try to replace the following lines in the router.php:

Line 47:
Code:

' WHERE c.folder = "'.$seg.'"';

replace with
Code:

' WHERE c.folder = '.$db->quote( $db->getEscaped( $seg ), false );


Line 55:
Code:

' WHERE c.folder = "'.$seg.'"';

replace with
Code:

' WHERE c.folder = '.$db->quote( $db->getEscaped( $seg ), false );



This is nearly the same, hoe the alpha 3b version, but I removed some quotes and this is very important for the changes...

Thanks a lot for the advise!!
Marco
Senior Boarder
Posts: 59
graph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
Go to topPage: 1