Contact Us
About Us
My Account/Downloads
Support
Archive
RSS
Search
1
Home
Products
iJoomla Magazine
Video Tutorials
iJoomla Newsportal
Video Tutorials
iJoomla Digistore
Video Tutorials
iJoomla Search & Archive
Video Tutorials
iJoomla Surveys
Video Tutorials
iJoomla Sidebars
Video Tutorials
iJoomla Ad Agency
Video Tutorials
iJoomla RSS Feeder
Video Tutorials
iJoomla Redirect
Free Extensions
Metatag Generator
iJoomla Scroller
GoogleStyle Module
Joomla Icons
SEO Club
Forum
Free Downloads
iJoomla Extensions Tools
Demo
Hosting
News
Templates
RocketTheme.com
GavickPro
JoomlaShack.com
TemplatePlazza.com
PixelsParadise.com
canaan-design.com
JoomlaDesigns.co.uk
shape5.com
ThemesClub.com
fstemplates.com
Joomlart.com
JoomlaJunkie.com
YouJoomla.com
JoomlaBamboo.com
JoomlaMarket.de
themejoomla.com
camp26.com
3rd Party Extensions
Store
FAQs
Welcome,
Guest
. Please
login
or
register
.
November 22, 2008, 02:35:26 PM
News:
New version of iJoomla Digistore V 1.3.3 (for Joomla 1.0)
iJoomla Forum
iJoomla RSS Feeder
Support Questions
charset
« previous
next »
Pages:
[
1
]
Author
Topic: charset (Read 3003 times)
error
customers
Newbie
Posts: 8
charset
«
on:
December 21, 2007, 09:09:48 AM »
How can I change the charset in rss feed on iso-8859-2?
Logged
RicardoCorai
customers
Hero Member
Posts: 2264
Re: charset
«
Reply #1 on:
December 21, 2007, 04:54:07 PM »
Edit your ijoomla_rss.php.
Regards,
Logged
Ricardo Corai
Moderator
www.planetacms.com
error
customers
Newbie
Posts: 8
Re: charset
«
Reply #2 on:
December 22, 2007, 10:09:54 AM »
Thanks for advice, but... it doesn't work. I've changed all "UTF-8" on "ISO-8859-2" and still national characters look strange.
Logged
KaiFly
customers
Newbie
Posts: 8
Re: charset
«
Reply #3 on:
July 19, 2008, 11:22:06 AM »
hey,
i am having problems with the german umlauts ä ö ü....
they don't come up properly in the feeds.
what can i do?
Kai
Logged
error
customers
Newbie
Posts: 8
Re: charset
«
Reply #4 on:
July 19, 2008, 12:59:51 PM »
I am afraid you can do... nothing. I spend a few months changing joomla version, fonts coding, and making changes in files of RSS Feeder. Finaly, I turned off the component. Sorry, but if you will find solutions, give me a sign
Logged
ruigato
customers
Newbie
Posts: 20
Re: charset
«
Reply #5 on:
July 19, 2008, 03:54:00 PM »
simplepie can convert the encoding:
http://www.ijoomla.com/forum/index.php/topic,1369.msg5401.html#msg5401
hope it helps
«
Last Edit: July 20, 2008, 02:10:33 AM by ruigato
»
Logged
alin
customers
Newbie
Posts: 28
Re: charset
«
Reply #6 on:
July 21, 2008, 04:57:51 AM »
in ijoomla_rss.php comment 2 lines of code:
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:
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;
and see if help.
Logged
nlpseminars
customers
Newbie
Posts: 3
Re: charset
«
Reply #7 on:
September 03, 2008, 03:14:51 PM »
when i comment those two lines, the feed becomes empty
Logged
RicardoCorai
customers
Hero Member
Posts: 2264
Re: charset
«
Reply #8 on:
September 03, 2008, 04:10:14 PM »
Which version are you using?
Logged
Ricardo Corai
Moderator
www.planetacms.com
nlpseminars
customers
Newbie
Posts: 3
Re: charset
«
Reply #9 on:
September 03, 2008, 11:06:17 PM »
The latest (I just bought it). I've also submitted a ticket.
Logged
RicardoCorai
customers
Hero Member
Posts: 2264
Re: charset
«
Reply #10 on:
September 04, 2008, 06:25:13 PM »
Ok,
Thanks, we are working on your ticket.
Best regards,
Logged
Ricardo Corai
Moderator
www.planetacms.com
Perun
customers
Newbie
Posts: 3
Re: charset
«
Reply #11 on:
September 28, 2008, 10:00:07 AM »
Advice that alin made is almost correct
Code:
// item information
// $item->title
= utf8_encode($item_title);
$item->title
= $item_title;
$item->link
= sefRelToAbs($article_link);
// $item->description
= utf8_encode($item_description);
$item->description
= $item_description;
$item->source
= $article_value->urls;
Logged
Perun
customers
Newbie
Posts: 3
Re: charset
«
Reply #12 on:
September 28, 2008, 11:56:39 PM »
This is not complete solution - there is still problem when last character in cuted string is some strange UTF8 character ... we need a function to cut UTF8 string correctly at the end of the word:
Code:
function mbCutText($string, $length, $delimiter = ' ', $postfix = ' ...') {
$stringLength = mb_strlen($string, 'UTF-8');
if($length <$stringLength and mb_strpos($string, $delimiter, null, 'UTF-8') !== false){
while (mb_substr($string, $stringLength-1, $stringLength, 'UTF-8') != $delimiter) {
$stringLength--;
}
return mb_substr($string, 0, $stringLength, 'UTF-8').$postfix;
}
return $string;
}
And of course we must change original substr for descripton content:
Code:
// description length
if ($feed_chars>0 && (strlen($item_description) > $feed_chars)){
$item_description = mbCutText($item_description,$feed_chars);
}
Logged
RicardoCorai
customers
Hero Member
Posts: 2264
Re: charset
«
Reply #13 on:
September 29, 2008, 06:06:35 PM »
Hi,
Please submit a support ticket and we will help you with this.
Best regards,
Logged
Ricardo Corai
Moderator
www.planetacms.com
Perun
customers
Newbie
Posts: 3
Re: charset
«
Reply #14 on:
September 29, 2008, 11:11:31 PM »
Thanks, but i dont need support - it is working for me now
Of course the solution is only for those of us, who have db in utf8 format ...
Logged
Pages:
[
1
]
« previous
next »
Jump to:
Please select a destination:
-----------------------------
General
-----------------------------
=> General iJoomla Discussions
=> Translations
-----------------------------
iJoomla Magazine
-----------------------------
=> Report Bugs
=> Suggestions/Ideas
=> Support Questions
=> Pre-Sales Questions
=> Show off your magazine
=> Discussions
=> Tips and Tricks
=> Troubleshooting
-----------------------------
iJoomla News Portal
-----------------------------
=> Support Questions
=> Suggestions/Ideas
=> Report Bugs
=> Pre-Sales Questions
=> Show off your News Portal
=> Announcements
=> Tips and Tricks
=> Troubleshooting
-----------------------------
iJoomla Digistore
-----------------------------
=> Support Questions
=> Pre-Sales Questions
=> Suggestions/Ideas
=> Show off your DigiStore
=> Report Bugs
-----------------------------
iJoomla Ad Agency
-----------------------------
=> Support Questions
=> Pre-Sales Questions
=> Suggestions/Ideas
=> Report Bugs
-----------------------------
iJoomla Surveys
-----------------------------
=> Suggestions/Ideas
=> Support Questions
=> Pre-Sales Questions
-----------------------------
iJoomla RSS Feeder
-----------------------------
=> Support Questions
=> Pre-Sales Questions
=> Suggestions/Ideas
=> Report Bugs
-----------------------------
iJoomla Sidebars
-----------------------------
=> Support Questions
=> Pre-Sales Questions
=> Suggestions/Ideas
-----------------------------
iJoomla Search & Archive
-----------------------------
=> Support Questions
=> Pre-Sales Questions
=> Suggestions/Ideas
-----------------------------
iJoomla Redirect
-----------------------------
=> Suggestions/Ideas
=> Pre-Sales Questions
=> Support Questions
-----------------------------
iJoomla Google Style Module
-----------------------------
=> iJoomla GoogleStyle Module
-----------------------------
iJoomla MetaTag Generator
-----------------------------
=> Suggestions/Ideas
=> Support Questions
-----------------------------
iJoomla Scroller
-----------------------------
=> Support Questions
=> Suggestions/Ideas
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Powered by SMF 1.1.2
|
SMF © 2006-2007, Simple Machines LLC
Joomla Bridge by
JoomlaHacks.com
Theme Globe by Eponnox