Home arrow News
Home
About
Demo
Forum
FAQ
Live Sites
Feedback

Login





Lost Password?
No account yet? Register
Stay Tuned!
 
Who's Online
We have 2 guests and 1 member online

powered_by Joomla
Report a comment

Thank you for taking the time to report the following comment to the administrator of this site.
Please complete this short form and click the submit button to process your report.

Name:
 
E-mail
 
Reason for reporting comment
 
 
 

Comment in question
Found the solotion
Written by M4t1c, on 04.08.2006 09:20
I've found the solution for "invalid argument supplied for foreach() ..." 
 
Locate file /administrator/components/com_estateagent/admin.estateagent.php 
and find this section 
$query = ?SELECT o.id, o.obj_id, o.cat, o.title, o.country, o.state, o.town, o.district, o.hits, o.publish_up, o.publish_down, o.publish, o.hot, o.access, c.name AS catname, g.name AS groupname? 
. ?FROM #__estateagent AS o, #__estateagent_categories AS C? 
. ?LEFT JOIN #__groups AS g ON g.id = o.access? 
. ?WHERE c.id = o.cat $where ORDER BY o.created $sort LIMITS $limitstart, $limit?;  
 
Now change line begining with "left join" whih this: 
 
. ?LEFT JOIN #__groups AS g ON g.id = c.access? 
 
Now it should work fine. 
 
Bye