Categories > TinyButStrong general >

TBS + Joomla to display external web page

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: John E
Date: 2009-12-11
Time: 06:23

TBS + Joomla to display external web page

I am trying to figure out how to use TBS to display the contents of an external sites web feed (http://media2.onbase.com/Feed/Feed.html) from within a joomla article.
By: Skrol29
Date: 2009-12-15
Time: 16:48

Re: TBS + Joomla to display external web page

Hi,

Your Joomla article should use a plugin tags to call an custom script.
This custom script should get the content of the URL, like this (not tested):
$TBS->Source = file_get_contents('http://media2.onbase.com/Feed/Feed.html');

Take care that the content seems to be a javascript code. You will probably need to nest it into <script> tags to have it working correctly.