Joomla! Discussion Forums



It is currently Wed Nov 25, 2009 10:09 pm (All times are UTC )

 


Forum rules

Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.



Post new topic Reply to topic  [ 355 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 12  Next
Author Message
Posted: Fri Oct 20, 2006 10:12 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Oct 14, 2006 3:18 pm
Posts: 29
Dear community

I would love to use this plugin when I install

The feed it only shows the first channel, and also no picture!

I am no genius but can any body help me

Thank you

http://www.resource4sports.com


Top
   
 
Posted: Sat Oct 21, 2006 9:15 am 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
Resource4sports wrote:
Dear community

I would love to use this plugin when I install

The feed it only shows the first channel, and also no picture!

I am no genius but can any body help me

Thank you

http://www.resource4sports.com


Please paste here the exact content used between the tags (and ncluding them).

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Sat Oct 21, 2006 9:39 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Oct 14, 2006 3:18 pm
Posts: 29
http://www.championshipproductions.com/ ... iliate=B4U this feed needs to be included

{kl_rssfeed}http://www.championshipproductions.com/cgi-bin/champ/rss.xml?sport=69&affiliate=B4U{/kl_rssfeed}

Thank you for your time


Top
   
 
Posted: Sat Oct 21, 2006 11:37 am 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
Number of items displayed:
1. is a general parameter for the bot itself (see admin)
2. maybe changed on a per item basis using the items="yournumber" as stated in the post above.
http://forum.joomla.org/index.php/topic ... #msg416748

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Last edited by infograf768 on Sat Oct 21, 2006 1:04 pm, edited 1 time in total.

Top
  E-mail  
 
Posted: Sat Oct 21, 2006 12:16 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Aug 31, 2005 10:25 am
Posts: 13
hightwo wrote:
i am using kl_rssfeed to post RSS feeds from GigCalendar for individual artists on my record label's web site.
after changing the default from '$bot_params->def( 'items', '11' ); to $bot_params->def( 'items', '100' );
i get this weird bullet between the entries within the feed.



I had the same problem. Although I'm not an html expert, as far as I can there is an unbalanced tr/td combo  in the code. (by this I mean  a tr / td is opened but never closed., ie every td or tr tag needs a /tr /td tag)

around line 325 in the php file you see should see this code:
Code:
$item_title = $currItem->getTitle();
            $item_title = mosCommonHTML::newsfeedEncoding( $rssDoc, $item_title );
            ?>
            
            <tr>
               <td<?php echo $class; ?>>


if you change it to this:
Code:
            $item_title = $currItem->getTitle();
            $item_title = mosCommonHTML::newsfeedEncoding( $rssDoc, $item_title );
            ?>


it might work, it did for me.


Top
  E-mail  
 
Posted: Sat Oct 21, 2006 1:09 pm 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
Not exactly. I checked the php file and found the culprit.
(I had not modified this from the original.)
Please try the following php from line 317. 2 changes.
Code:
//NEW list-style for the <li>tag

<li<?php echo $class; ?>list-style="none">

// end added style
                     <?php
                     // Title
                     if ( $kl_params['title'] ) {
            $item_title = $currItem->getTitle();
            $item_title = mosCommonHTML::newsfeedEncoding( $rssDoc, $item_title );
            ?>
            
            <tr>
               <td<?php echo $class; ?>>
               
               
            <a href="<?php echo ampReplace( $currItem->getLink() ); ?>" target="_child">
                     <?php echo $item_title; ?></a>
                     <?php
                     }
                     ?>
                     <?php
                     // item description
                     if ( $kl_params['desc'] ) {
                        $text = $currItem->getDescription();
                           $text = mosCommonHTML::newsfeedEncoding( $rssDoc, $text );
                        $num    = $kl_params['word_count'];
                        
                        // word limit check
                        if ( $num ) {
                           $texts = explode( ' ', $text );
                           $count = count( $texts );
                           if ( $count > $num ) {
                              $text = '';
                              for( $i=0; $i < $num; $i++ ) {
                                 $text .= ' '. $texts[$i];
                              }
                              $text .= '...';
                           }
                        }
                     ?>                                                                                                              
                        <br />
                        <?php echo $text; ?>                  
                        <br/><br/>
                     <?php
                     }
                     ?>

// added the /td and /tr missing
                     </td>
               </tr>
// end add
                     </li>
               <?php
               }
               ?>
               </ul>
               </td>
            </tr>
      <?php
         }
      ?>
      </table>
<?php

}
?>

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Last edited by infograf768 on Sat Oct 21, 2006 1:10 pm, edited 1 time in total.

Top
  E-mail  
 
Posted: Sat Oct 21, 2006 2:51 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Oct 14, 2006 3:18 pm
Posts: 29
Thank you for your responds.

I have been getting the feed but it doesn't link to the appropiate link,

Also some how the images won't appear. I fyou can help me that would be great.


Last edited by Resource4sports on Sat Oct 21, 2006 3:44 pm, edited 1 time in total.

Top
   
 
Posted: Sun Oct 22, 2006 6:52 am 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
@Resource4sports

This feed of yours has an extremely high number of items.
How many do you want to display?

Here is the exact text to type in your content to display 140 items:
{kl_rssfeed image="1"chtitle="1"chdesc="1"items="140"}http://www.championshipproductions.com/cgi-bin/champ/rss.xml?sport=69&affiliate=B4U{/kl_rssfeed}

Change the figure "140" to what fits your needs.

I am going to update the mambot later today to include the php changes above ( http://forum.joomla.org/index.php/topic ... #msg532262 )

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Sun Oct 22, 2006 10:38 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Oct 14, 2006 3:18 pm
Posts: 29
Again Thank you

My problem of directing to the correct link is still not right! How can I ddo it right
.


Top
   
 
Posted: Sun Oct 22, 2006 10:58 am 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
Resource4sports wrote:
Again Thank you

My problem of directing to the correct link is still not right! How can I ddo it right
.


I don't understand what you mean, sorry.
Please post an url of your site and explain in details what you are expecting precisely and what you get.

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Sun Oct 22, 2006 2:25 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Oct 14, 2006 3:18 pm
Posts: 29
As you can see on http://www.resource4sports.com/componen ... temid,174/

The links go to http://www.championshipproductions.com/ ... ?mv_pc=rss

They should go to http://www.championshipproductions.com/ ... ?mv_pc=B4U

The link I have put into {kl_rssfeed image="1"chtitle="1"chdesc="1"items="50"}http://www.championshipproductions.com/cgi-bin/champ/rss.xml?sport=69&affiliate=B4U{/kl_rssfeed}

I hope it is clear know the link redirects to a different link.

It should be like this http://www.resource4sports.com/componen ... temid,217/


Last edited by Resource4sports on Sun Oct 22, 2006 2:29 pm, edited 1 time in total.

Top
   
 
Posted: Sun Oct 22, 2006 5:05 pm 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
I think I found the culprit.

The " & "  (in &affiliate=B4U) is changed to an htmlentity when saving through your editor, thus that part is escaped and the feed provided is in fact: http://www.championshipproductions.com/ ... l?sport=69


2 solutions:
1. use the No WYSIWYG editor for these contents
2. Install JCE editor and set parameter to "Raw"

See here:
http://www.info-graf.fr/infografcvs/content/view/56/93/

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Sun Oct 22, 2006 5:40 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Aug 31, 2005 10:25 am
Posts: 13
tags:

setting the li style to none, overrides any styles for 'li' template class.

and if you think about it... since it's all wrapped in the li tag, there really isn't a need for rows and cells.

but that's my judgement.

otherwise, great mambot, I prefer this way of incorporating newsfeeds.
thanks the contribution.

krc

Last edited by krayc on Sun Oct 22, 2006 6:45 pm, edited 1 time in total.

regarding the li quirk and the missing
Top
  E-mail  
 
Posted: Sun Oct 22, 2006 6:32 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Oct 14, 2006 3:18 pm
Posts: 29
Dear Info

I thank you I have made the changes and it worked.

For this content do I need to make the change in de global config. or can I select it fo the specific category.?

Thank you a lot


Top
   
 
Posted: Sun Oct 22, 2006 8:40 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Oct 14, 2006 3:18 pm
Posts: 29
Dear Community

I have used your information to my satisfaction. But some othe rproblems do occur. I have to witch from editor every time to install my feeds.

I have the JCE editor for a while and have set the parameters at raw, this doesn't seem to work. If I had an editor who won't change the symbols in a feed or text. I believe the problem would be solved.

Thank you


Top
   
 
Posted: Mon Oct 23, 2006 7:14 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Mon Oct 23, 2006 4:13 pm
Posts: 1
infograf768 wrote:
KL_RSSFEED (Tableless) is the same code as original kon-long kl_rssfeed + display in div instead of tables. It is NOT utf8 compatible as this kl_rssfeed for Joomla! 1.0.10
I have asked spig to join our 2 projects once we solve the php4 problem.


Salut Jean-Marie.

I merged kl_rssfeed 1.0.10 with tableless version in order to fix problems related to utf8 compliance. Anyway, in case anybode else need this feature working in tableless version, I've attached the merged version.

By the way, congratulations for the excelent mambot.


You do not have the required permissions to view the files attached to this post.


Top
  E-mail  
 
Posted: Tue Oct 24, 2006 4:49 am 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
Thanks, will test here and report.  ;)

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Tue Oct 24, 2006 9:24 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Aug 07, 2006 2:03 pm
Posts: 18
Location: Ontario, Canada
Hi. I'm trying to download this plug-in but when clicking on the link I am directed to your Forum! I'm obviously very thick but nonetheless don't have time to trawl for this RSS tool. Help.....please :D


Top
  E-mail  
 
Posted: Wed Oct 25, 2006 1:21 pm 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
mhoshi wrote:
infograf768 wrote:
KL_RSSFEED (Tableless) is the same code as original kon-long kl_rssfeed + display in div instead of tables. It is NOT utf8 compatible as this kl_rssfeed for Joomla! 1.0.10
I have asked spig to join our 2 projects once we solve the php4 problem.


Salut Jean-Marie.

I merged kl_rssfeed 1.0.10 with tableless version in order to fix problems related to utf8 compliance. Anyway, in case anybode else need this feature working in tableless version, I've attached the merged version.

By the way, congratulations for the excelent mambot.



I reviewed it and am proposing to you all now a tableless kl_rssfeed which does not have the drawbacks of the original tableless and of your merged version.

The drawback is a semantically incorrect display if the class is not entered in the parameters:
Code:
<ul-ul">
   <li-li">

...
<h4-item_title"> etc.

for example...

Therefore please find here my version. I'll also add it to the first post as an alternative to the table version.
(utf8 is still only for php5, sorry.)

This version will show its full power when adding a class, but will still be semantically correct without them.

CSS classes to add to the template_css.css
------Parameter entered for class is here "klrssfeed"

.klrssfeed {background-image: none;}  //this takes off the default image bullet in solarflare
ul.klrssfeed {margin-left: -1em;}
li.klrssfeed p {margin-left: 1em; margin-top: -1em; }
.klrssfeed h3 {font-size: 1.2em; font-weight: bold;}
.klrssfeed h4 {font-size:1.1em; }

These settings are obviously just an example and may be twisted at will.

I encourage all using the module to uninstall the table version and install this new version which is indeed much more versatile.
The php amd xml files may be FTPed directly in the mambots/contents/ folder for those that do not wish to change their settings.
(just add the Class parameter if not used yet)


You do not have the required permissions to view the files attached to this post.

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Wed Oct 25, 2006 2:24 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Sep 22, 2006 5:17 pm
Posts: 49
hi, im using iso 8859-9 charset and i face turkish character problem when i publish a conten, is it possible to change utf-8 encoding to iso 8859-9

by the way i m using 1.0.11 and i ve changed encoding in the kl_rssfeed.xml


Last edited by taraximus on Wed Oct 25, 2006 2:29 pm, edited 1 time in total.

Top
   
 
Posted: Wed Oct 25, 2006 2:38 pm 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
taraximus wrote:
hi, im using iso 8859-9 charset and i face turkish character problem when i publish a conten, is it possible to change utf-8 encoding to iso 8859-9


kl_rssfeed will display the same feeds Joomla can display through the Newsfeeds Component (in php5 for utf8 feeds).

If a Turkish iso-8559-9 feed does not display through Joomal Component, it will not with kl_rssfeed. You will have to wait for 1.5.

The domit library in Joomla does only deal with some feeds and not others.
Please post here your feed url for us to feedback.

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Wed Oct 25, 2006 4:38 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Sep 22, 2006 5:17 pm
Posts: 49
all turkish feeds. eg.http://www.kanald.com.tr/rss/haber_guncel.xml&nbsp;http://www.kanald.com.tr/rss/rss.aspx?act=movie


Top
   
 
Posted: Wed Oct 25, 2006 8:16 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed May 10, 2006 2:06 am
Posts: 7
I am trying to install this plugin so I can display feeds on content pages, not on the frontpage.

I installed the mambot, and it was successful. I then pasted the css info into my template.css

I then went to add content and selected the appropriate section and category

I then typed {kl_rssfeed}http://unfospreys.cstv.com/event-toolbar-rss.xml{/kl_rssfeed}

I then went to my page Link]http://www.ospreyscene.com/osprey-sports-news/top-events-and-scores/osprey-top-events--scores.html]Link and it just shows up blank.

Am I missing something here? Is there a specific place in the css you have to post the provided code?

All the rss feeds I want are listed here : http://unfospreys.cstv.com/rss/rss-index.html


Top
   
 
Posted: Wed Oct 25, 2006 8:23 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Sep 22, 2006 5:17 pm
Posts: 49
in the admin panel, in mambots menu, publish the plug in then it will work


Top
   
 
Posted: Wed Oct 25, 2006 8:46 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed May 10, 2006 2:06 am
Posts: 7
awesome that worked... except how come when i click on rss feed (in the mambot admin) a box comes up saying "resitricted access" and then there is a lock on it?


Top
   
 
Posted: Wed Oct 25, 2006 9:26 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Sep 22, 2006 5:17 pm
Posts: 49
i think it is related with chmod settings look at the chmods of the related directories


Top
   
 
Posted: Thu Oct 26, 2006 2:48 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Feb 10, 2006 3:58 pm
Posts: 25
Quote:
Therefore please find here my version. I'll also add it to the first post as an alternative to the table version.
(utf8 is still only for php5, sorry.)


Is PHP5 only necessary for certain feeds? If so, can you post an example? I have this new utf8 tableless version installed in Joomla v1.0.11 running under PHP4 and everthing seems to be working fine.

BTW, thanks for all the work put into this guys.  ;D

Thanks,
nickers


Top
  E-mail  
 
Posted: Thu Oct 26, 2006 4:22 am 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
lithman wrote:
awesome that worked... except how come when i click on rss feed (in the mambot admin) a box comes up saying "resitricted access" and then there is a lock on it?


Tss... Tsss...
http://forum.joomla.org/index.php/topic,99636.0.html

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Thu Oct 26, 2006 4:38 am 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
taraximus wrote:


Sorry, these feeds (iso 8559-9) are not correct in Joomla! itself, therefore they will not show either correctly with kl_rssfeed.
If they had been made in utf-8 and your would have used a Turkish utf-8 language pack, they would have displayed OK.

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Posted: Thu Oct 26, 2006 4:57 am 
User avatar
Joomla! Master
Joomla! Master
Offline

Joined: Fri Aug 12, 2005 3:47 pm
Posts: 11690
Location: **Translation Matters**
nickers wrote:
Quote:
Therefore please find here my version. I'll also add it to the first post as an alternative to the table version.
(utf8 is still only for php5, sorry.)


Is PHP5 only necessary for certain feeds? If so, can you post an example? I have this new utf8 tableless version installed in Joomla v1.0.11 running under PHP4 and everthing seems to be working fine.

BTW, thanks for all the work put into this guys.  ;D

Thanks,
nickers



These don't.
{kl_rssfeed}http://www.economista.com.mx/rss/df/{kl_rssfeed}
{kl_rssfeed}http://news.google.es/news?hl=es&ned=es&ie=UTF-8&q=ubuntu&output=rss{/kl_rssfeed}

_________________
Jean-Marie Simonet / infograf · http://www.info-graf.fr · GMT +1
Qui vult dare parva non debet magna rogare.
---------------------------------
Joomla! Translation Coordination Team


Top
  E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 355 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 12  Next

Quick reply

 



Who is online

Users browsing this forum: No registered users and 6 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group