-
I find a solution for UTF-8 problem!
Open magpierss\rss_fetch.inc file, and find this:
if ( !defined('MAGPIE_OUTPUT_ENCODING') ) {
define('MAGPIE_OUTPUT_ENCODING', 'ISO-8859-1');
}
Change to this:
if ( !defined('MAGPIE_OUTPUT_ENCODING') ) {
define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
}
And open inc\output.php and find this:
<meta http-equiv="Content-Type"...
2009-05-02 17:06:55 UTC in Rnews RSS/Atom web aggregator
-
Ok, I found a solution. :-)
Open inc/cl_feedlink.php and search this:
// In PHP 5 we can use const here, but not in PHP 4
function STATE_NEW() { return 0; }
function STATE_SEEN() { return 1; }
function STATE_VISITED() { return 2; }
function stateStr($s) {
switch ($s) {
case 0: return 'new';
case 1: return 'seen';
case 2: return 'visited';.
2009-05-02 10:09:56 UTC in Rnews RSS/Atom web aggregator
-
Ok, directly:
How can I lock in _links table the state fields?.
2009-05-02 09:48:22 UTC in Rnews RSS/Atom web aggregator
-
Hi!
I have a default user for guests. But if a guest refresh page, then all articles will readed, and not show, just after see more...
How can I disable all mark for links (with refresh)? I disable in output.php mark all button, but I need a solution for every refresh.
Thanks!
2009-05-02 09:41:13 UTC in Rnews RSS/Atom web aggregator
-
If you have iso-8859-2 coded XML, and use PHP5, but you get ? characters, then a solution simple!
Open magpierss\rss_parse.inc and find this:
function create_parser($source, $out_enc, $in_enc, $detect) {
if ( substr(phpversion(),0,1) == 5) {
change to this:
function create_parser($source, $out_enc, $in_enc, $detect) {
if (phpversion() == 5) {
And working fine!
2009-05-02 09:17:52 UTC in Rnews RSS/Atom web aggregator
-
I find a solution for UTF-8 problem!
Open magpierss\rss_fetch.inc file, and find this:
if ( !defined('MAGPIE_OUTPUT_ENCODING') ) {
define('MAGPIE_OUTPUT_ENCODING', 'ISO-8859-1');
}
Change to this:
if ( !defined('MAGPIE_OUTPUT_ENCODING') ) {
define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');
}
And open inc\output.php and find this:
<meta...
2009-05-02 09:13:55 UTC in Rnews RSS/Atom web aggregator
-
I have problem too... Anyone have a solution?.
2009-05-02 06:14:22 UTC in MagpieRSS
-
I need UTF-8 fix too. How can I get it? I found in rss.php and output.php a few lines, but I cannot fix them. Please share fixed code!
Thanks!
2009-04-30 09:08:04 UTC in Rnews RSS/Atom web aggregator
-
Dear developer!
Just a few question. Will change you Magpie aggregator to SimplePie (http://simplepie.org/)?
Because Magpie cannot read a few XML feed. Example:
http://origo.hu/contentpartner/rss/hircentrum/origo.xml
Cannot read first line... Or if not change, then will be fixed this error in 1.0?
When will release 1.0 version?.
2009-04-30 08:13:00 UTC in Rnews RSS/Atom web aggregator
-
Have you a quick patch for this? I use hungarian feeds, and all feed coded in UTF-8...
Thanks!
2009-04-29 17:06:59 UTC in Rnews RSS/Atom web aggregator