Page 1 of 1
feeds.php und feeds.ini.php
Posted: Sun 23. Jul 2006, 20:31
by olape
also damit komme ich nicht so richtig klar,
oder besser ich kann der sache keine ergebnis entlocken.
bisher, mit der rss.php hat es wunderbar funktioniert
hier bekomme ich mal eine leere, also nur die kopfdaten aus der ini,
mal benomme ich einen fehler, das die xml-datei nicht gefunden werden kann
und im moment sagt er
Error, you did NOT set variable $FromCharset in Convert() function.
Error, can NOT read file: /srv/www/web2/html/phpwcms/include/inc_ext/ConvertCharset/ConvertTables/
und das, obwohl ich fast wieder die originalen einstellungen aus der ini drin habe
I second that...
Posted: Sun 17. Sep 2006, 07:22
by anthony.abraira
I can't read you wrote except for that error. Turns out I am getting the same thing you are .. not sure what' up....Oli ... u around?
This is the error for all you's out there:
Code: Select all
or, you did NOT set variable $FromCharset in Convert() function.
Error, can NOT read file: web/content//include/inc_ext/ConvertCharset/ConvertTables/
For some reason there are two // between content and include....must part of the problem....but who knows....
Posted: Sun 17. Sep 2006, 09:38
by DeXXus
Maybe this is the error?
"include/inc_ext/ConvertCharset/ConvertCharset.class.php"
if ($ToCharset != "utf-8")
{
if (in_array($HexChar, $CharsetTable[$FromCharset]))
{
$UnicodeHexChar = array_search($HexChar, $CharsetTable[$FromCharset]);
$UnicodeHexChars = explode("+",$UnicodeHexChar);
for($UnicodeHexCharElement = 0; $UnicodeHexCharElement < count($UnicodeHexChars); $UnicodeHexCharElement++)
{
if (array_key_exists($UnicodeHexChars[$UnicodeHexCharElement], $CharsetTable[$ToCharset]))
{
if ($this->Entities == true)
{
$NewString .= $this->UnicodeEntity($this->HexToUtf($UnicodeHexChars[$UnicodeHexCharElement]));
}
else
{
$NewString .= chr(hexdec($CharsetTable[$ToCharset][$UnicodeHexChars[$UnicodeHexCharElement]]));
}
}
else
{
print $this->DebugOutput(0, 1, $StringToChange[$i]);
}
} //for($UnicodeH...
}
else
{
print $this->DebugOutput(0, 2,$StringToChange[$i]);
}
}
else
{
if (in_array("$HexChar", $CharsetTable[$FromCharset])) <----Quote marks were not used in same statement ABOVE
no cigar
Posted: Sun 17. Sep 2006, 09:46
by anthony.abraira
Code: Select all
} //for($UnicodeH...
}
else
{
print $this->DebugOutput(0, 2,$StringToChange[$i]);
}
}
else
{
if (in_array($HexChar, $CharsetTable[$FromCharset]))
{
$UnicodeHexChar = array_search($HexChar, $CharsetTable[$FromCharset]);
/**
* Sometimes there are two or more utf-8 chars per one regular char.
* Extream, example is polish old Mazovia encoding, where one char contains
* two lettes 007a (z) and 0142 (l slash), we need to figure out how to
* solve this problem.
* The letters are merge with "plus" sign, there can be more tha
I had them match...with quotes...then without quotes but it still causes this error....
Error, you did NOT set variable $FromCharset in Convert() function.
Error, can NOT read file: ../web/content//include/inc_ext/ConvertCharset/ConvertTables/
Posted: Sun 24. Dec 2006, 19:05
by 1996 328ti
I just got this same error out of the blue.
Resolved: My host restored the ConvertTables directory and it got rid of the error.
Posted: Thu 18. Oct 2007, 12:29
by 1996 328ti
I was trying to isolate a problem by turning RTs involving my RSS feeds on and off.
Now I get the same error I did a year ago.
Reinstalling the ConvertTables did nothing.
I'm running PHP Version 5.2.4.
phpwcms v1.2.7.
Upgrading is not an option because I will loose my most important RT, the teaser tag.
Suggestions?
Posted: Fri 26. Oct 2007, 02:09
by 1996 328ti
{bump}
Error, you did NOT set variable $ToCharset in Convert() function.
Error, can NOT read file: /home/username/public_html/include/inc_ext/ConvertCharset/ConvertTables/
My RSS feeds have been working for years until moving to a different server within the same host.
The paths must be correct since the rest of the site works, no?
Any clues? This is a major part of my website.
Posted: Sat 3. Nov 2007, 08:51
by Oliver Georgi
Have a look to snapshot release and related files and try to merge the changes there with your version of phpwcms.
Oliver