Joomla Talk

Joomla frontpage newsFeed problem

    I was referencing a problem of hiding part or whole of frontpage articles on Joomla 1.5.x when i came across the only option i had for serving the frontpage feeds .
Introtext or Fulltext . Huuuggghh?? What if I want to serve part of an article or half of it .
It was much quicker  to write my own custom solution and so I did ( not sure though if it the best though , maybe there are plugins to do such things , but i did not w3ant to use any )

Frontpage Rss are served through the view.feed.php in components\com_content\views\frontpage

Continue reading

Is it Joomla ?? Or not

Hmmm, in seeking of the plaform used for a web site , did some research about How to tell if a website is joomla or not .

Here are the results .

a) Check for meta-generator in a web page source ( Joomla reveals there it’s identity )

( It is easy to hide it , just add JFactory::getDocument()->setGenerator(''); in default’s template index.php just after defined(‘_JEXEC’) or die; )

b) add /?tp=1 in url . If it is Joomla 1.5 , it will present you with templates positions ( In 1,6 and above this is off by   default and can be turned in in templates option .

c) add /administrator in URL .You will be presented with the Joomla Control Panel’s login screen  ( Can be hidden with a bunch of usefull plugins ) .

d) add ?template=beez ( one of the provided template ) to the http://www.yoursite.com/index.php URL .You will see a different view of it !!  ( you can always remove unnecessary templates from your installation

e) Check for robots.txt file ( http://www.yoursite.com/robots.txt ) you will see a bunch of joomla’s directory’s that the webmaster want to keep away from web spiders eyes .

f) Check a components xml file  ( www.yoursite.com/adminstrator/components/com_content/content.xml ) if its there , Yeap it is Joomla

g) Search for a forgotten distribution configuration file ( http://www.yoursite.com/configuration.php-dist ) . Yes , Yes it had to be removed after install 🙂 .

to be continued