Show Posts
|
|
Pages: [1] 2
|
|
2
|
iJoomla RSS Feeder / Support Questions / Re: Limit Number of Articles
|
on: October 31, 2008, 07:49:04 AM
|
Hi, In ijoomla_rss.php file under components\com_ijoomla_rss\ please search for these code: SELECT * FROM #__content WHERE sectionid=$sec_id AND state=1 ORDER BY created DESC replace with SELECT * FROM #__content WHERE sectionid=$sec_id AND state=1 ORDER BY created DESC LIMIT 10 and SELECT * FROM #__content WHERE catid=$cat_id AND state=1 ORDER BY created DESC replace with SELECT * FROM #__content WHERE catid=$cat_id AND state=1 ORDER BY created DESC LIMIT 10 As you can see I added LIMIT 10 at the end, were 10 is the max number of items, you can put another number: 15, 20..
|
|
|
|
|
5
|
iJoomla RSS Feeder / Support Questions / Re: charset
|
on: July 21, 2008, 04:57:51 AM
|
in ijoomla_rss.php comment 2 lines of code: // item information $item->title = utf8_encode($item_title); $item->link = JRoute::_($article_link); $item->description = utf8_encode($item_description); $item->source = $article_value->urls;
become: // item information //$item->title = utf8_encode($item_title); $item->link = JRoute::_($article_link); //$item->description = utf8_encode($item_description); $item->source = $article_value->urls; and see if help.
|
|
|
|
|
6
|
iJoomla Surveys / Support Questions / Re: Survey not existant
|
on: May 22, 2008, 08:59:32 AM
|
|
Hi, This problem happen when in survey name are special characters, if not maybe something was changed in configuration or SEF extension... Please open support ticket so we can have a look over. Thanks,
|
|
|
|
|
8
|
iJoomla Magazine / Report Bugs / Re: SECURITY VULNARABILITIES?
|
on: April 17, 2008, 10:05:54 AM
|
|
Hi, We are working every time on our products in order to keep them safe and improve code all the time. We released magazine version for Joomla 1.5 that has a better code against hackers attacks, anyway hackers are existing to try all the time to break through any code or computers(not only our components). We are working on new version for Joomla 1.0.X that will be released soon (1-2 weeks). Magazine extension is installed on many many websites, our clients never reported am attack on website. That not means that we let the code as it is, we improve all the time for better functionality, better safe and so on. Regards, Alin
|
|
|
|
|
12
|
iJoomla Magazine / Report Bugs / Re: utf8 problem
|
on: February 06, 2008, 02:04:34 AM
|
|
Hi, Please use this file instead of the existing one in magazine. Old file is here: administrator/components/com_magazine/utf8/mbstring/core.php
replace it with the attached one.
Regards, Alin
|
|
|
|
|
|
|