views:

200

answers:

1

I got permission from the owner (who knows nothing about web development) of a Joomla! website to extract the articles from the site (for real!)

I got the urls from the RSS feed, but the feed does not include the full text.

Do you know a way to manipulate the index.php parameters to get the article as clean as posible?

The url right now looks like:

http://www.xxx.com/index.php?option=com_content&task=view&id=2093&Itemid=1
+3  A: 

Change your url to use "index2.php" instead of "index.php". That will strip away all navigation and use only the content of the article.

http://www.xxx.com/index2.php?option=com_content&task=view&id=2093&Itemid=1
MidnightLightning
Great! Thanks! ..
Eduardo Molteni