Search found 13 matches

by mrjoel
Mon Oct 03, 2005 8:40 pm
Forum: General discussions
Topic: Top 10 off-by-one problem
Replies: 1
Views: 3621

Top 10 off-by-one problem

I was paying attention to my top 10 bar today and noticed an inconsistency when two adjacent FAQs are accessed. I first clicked them to get them to have the same access, then clicked the lower-ranked one again to raise it and lower the other one. THEN, when clicking on the just-lowered article again ...
by mrjoel
Tue Sep 27, 2005 11:01 pm
Forum: General discussions
Topic: Image problem in PDF with 1.5.2
Replies: 1
Views: 3530

Image problem in PDF with 1.5.2

I upgraded today from 1.5.0 to 1.5.2 and now have problems generating PDF files for articles which contain images. The logic in 1.5.2 seems to have changed in whether to add the document path where. I have my faqs setup with an "Alias /faqs /some/file/system/path" statement, and when the image is ...
by mrjoel
Fri Aug 26, 2005 5:21 pm
Forum: General discussions
Topic: 1.5.0 error in pdf
Replies: 12
Views: 18725

Confirmation

Confirmed fix here as well - thanks for finding that!

I also checked my old 1.4.10 and 1.4.7 installs and they appear to have shipped without the extra LF.

Edit: Note that you need to change all font faces that you use - helveticabi.php if you use bold sans-serif, etc. There is an extra line feed ...
by mrjoel
Tue Aug 23, 2005 9:06 pm
Forum: General discussions
Topic: 1.5.0 error in pdf
Replies: 12
Views: 18725

As I look at it further the PDF is fully created and I can access it directly by pathname, but the redirect in the new window doesn't appear to work properly (as seen in the error message above) - headers get sent before PDF tries to get sent which screws with the MIME types.
by mrjoel
Tue Aug 23, 2005 8:43 pm
Forum: General discussions
Topic: 1.5.0 error in pdf
Replies: 12
Views: 18725

I'm seeing this also 1.4.10 to 1.5 upgrade.
by mrjoel
Thu Aug 04, 2005 10:38 pm
Forum: General discussions
Topic: Deutsch ins English Datenbank
Replies: 6
Views: 8772

Ich habe die folgende Loesung gemacht (schnell, nicht unbedingt gut):
Alle in update.php:
Linie 282:
- } elseif ($version < 150)
+ } elseif (($version < 150) || ($version == 1410))

Linie 459:
- if ($version < "150") {
+ if (($version < "150") || ($version == 1410)) {

Nachdem ich die kleine à ...
by mrjoel
Thu Aug 04, 2005 10:28 pm
Forum: General discussions
Topic: Deutsch ins English Datenbank
Replies: 6
Views: 8772

Und noch ein Problem habe ich gefunden - ich versuche von 1.4.10 auf 1.5.0RC6 umzustellen, und 1.4.10 gibt die Version 1410, welche Version zu gross ist, denn die folgende schnitt nicht passt aber execuiert werden soll.

// update from versions before 1.5.0
if ($version < "150") {
...
}

Auch ...
by mrjoel
Thu Aug 04, 2005 10:16 pm
Forum: General discussions
Topic: Deutsch ins English Datenbank
Replies: 6
Views: 8772

Ich habe wenigstens ein Teil des Problems gefunden, und zwar im ./installer/update.php wird erwartet dass $DB["type"] zu finden ist. In meiner Datei (./inc/data.php) gib'ts aber gar keinen Zeil über "type". Ich habe auch probiert eine ganz frische Installation probiert, und am Ende damit hatte ich ...
by mrjoel
Thu Aug 04, 2005 8:33 pm
Forum: General discussions
Topic: Top 10 Bug Report
Replies: 2
Views: 4571

vff
by mrjoel
Thu Aug 04, 2005 7:02 pm
Forum: General discussions
Topic: Deutsch ins English Datenbank
Replies: 6
Views: 8772

Erstens muss ich mich wegen meines Deutsches entschuldigen - ich bin nämlich Amerikaner.

Die Artikel und Rubriken sind auf English, ebenfalls kommt der Browser ins English auf die Seite. Ich kann durch mysql alle Artikel und Rubriken sehen, habe aber noch nicht untersucht welche Zusammenfassungen ...
by mrjoel
Wed Aug 03, 2005 7:32 pm
Forum: General discussions
Topic: Deutsch ins English Datenbank
Replies: 6
Views: 8772

Deutsch ins English Datenbank

Ich probiere meine Installation auf 1.5 zu upgraden, und habe das Problem das alle Rubriken gezeigt werden, aber KEINE Eintraege. Im faqdata Tabelle einer neuen Installation gibt's kein "rubrik" Feld wie's in 1.4.x gab. Haette diese Relations beim Upgrade richtig gemacht werden sollen, oder muss ich ...
by mrjoel
Wed Aug 03, 2005 5:50 pm
Forum: General discussions
Topic: Top 10 Bug Report
Replies: 2
Views: 4571

Top 10 Bug Report

When a single article is linked to more than one category in 1.5, it should still only appear once in the top 10 list - currently it appears once for each category that it is linked to.

(Thorsten, do you prefer reporting here, or in the mantis bug tracking system?)
by mrjoel
Wed Aug 03, 2005 5:04 pm
Forum: General discussions
Topic: mod_rewrite support
Replies: 1
Views: 3712

mod_rewrite support

I've enable mod_rewrite with apache and it is working quite well. Only one thing I've found so far: On the "send to a friend"/Empfehlen page the URL should also be set to give a pre-rewritten URL instead of manually linking all of the directives.

Edit: I've also found the following other areas ...