Testing 1.5RC1

In this board you can talk about general questions about phpMyFAQ

Moderator: Thorsten

Post Reply
ronan
Posts: 8
Joined: Mon Dec 01, 2003 4:10 pm

Testing 1.5RC1

Post by ronan »

I just downloaded 1.5RC1 which looks promising.

Anyway, a few problems appear:
- upgrading my 1.4M2 did not really work: the table rubrik was not renamed (it is only renamed if version < 1.3 apparently). I had to execute the queries by hand
- a remaining ">>>> 1.4" in the language_fr.php file causes errors
- editing an article always displays this error (IE 6 / Win XP):
---------------------------
Error: You must called HTMLArea.init() first. Like this:
HTMLArea.init();
HTMLArea.onload = function() {
var editor = new HTMLArea('editor');
editor.generate();
};
---------------------------
- LDAP support seems to be activated by default. It causes an error
- Rewrite support seems to be activated by default. If the .htaccess file is not renamed (or not configured), all menu items are broken links in the menu which lead to 404 errors: they look fot .html pages which do not seem to exist
- if clicking on a category that has no article associated, an error is displayed : Warning: Division by zero in /home/globstra/www/faq/inc/functions.php on line 156. Actually, the code looks wrong since it refers to the old "rubrik" field:
$numResult = $db->query("SELECT id FROM ".SQLPREFIX."faqdata WHERE active = 'yes' AND rubrik = ".$category);
$num = $db->num_rows($numResult);
$pages = ceil($num / $PMF_CONF["numRecordsPage"]);
Consequently, no articles are displayed !
- the BBcode within answers is not translated into its HTML equivalent
- in order to have an acceptable number of entries in the language selection box, I deleted several lines in the inc/constants.php This might be included within the administrator GUI
- the PDF export of the FAQ displays a lot of errors, but it seems to work. Anyway, it includes all FAQ, mixing languages. Would it be possible to export a specific PDF by language ?

Ronan
Thorsten
Posts: 15726
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Testing 1.5RC1

Post by Thorsten »

Hi,
- upgrading my 1.4M2 did not really work: the table rubrik was not renamed (it is only renamed if version < 1.3 apparently). I had to execute the queries by hand
Do you mean 1.4.0 M2? This was just a early pre-alpha milestone, so an update won't never work. Sorry.
- a remaining ">>>> 1.4" in the language_fr.php file causes errors
fixed now.
- editing an article always displays this error (IE 6 / Win XP):
---------------------------
Error: You must called HTMLArea.init() first. Like this:
HTMLArea.init();
HTMLArea.onload = function() {
var editor = new HTMLArea('editor');
editor.generate();
};
---------------------------
I'm working on that fix.
- LDAP support seems to be activated by default. It causes an error
fixed now.
- Rewrite support seems to be activated by default. If the .htaccess file is not renamed (or not configured), all menu items are broken links in the menu which lead to 404 errors: they look fot .html pages which do not seem to exist
fixed now.
- if clicking on a category that has no article associated, an error is displayed : Warning: Division by zero in /home/globstra/www/faq/inc/functions.php on line 156. Actually, the code looks wrong since it refers to the old "rubrik" field:
$numResult = $db->query("SELECT id FROM ".SQLPREFIX."faqdata WHERE active = 'yes' AND rubrik = ".$category);
$num = $db->num_rows($numResult);
$pages = ceil($num / $PMF_CONF["numRecordsPage"]);
Consequently, no articles are displayed !
fixed now.
- the BBcode within answers is not translated into its HTML equivalent
We do not support BBCode since 1.4.0 alpha. Use the convert script to convert BBCode into XHTML.
- in order to have an acceptable number of entries in the language selection box, I deleted several lines in the inc/constants.php This might be included within the administrator GUI
hm, I don't know because you'll do this one time...
- the PDF export of the FAQ displays a lot of errors, but it seems to work. Anyway, it includes all FAQ, mixing languages. Would it be possible to export a specific PDF by language ?
sure, I'll have to fix this....

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Post Reply