Search found 55 matches

by ardiederich
Wed Jan 04, 2006 11:51 pm
Forum: General discussions
Topic: top 10/last 5 FAQs only appear in English
Replies: 5
Views: 8914

This still doesn't seem to be doing what I'd like. What I'm trying to get to is the phpmyfaq part of the site in French, and the articles in English. I suspect I could get this by re-saving all articles with fr as well as en, but I'm trying to avoid that.

In the 1.5.5 config I have English as the ...
by ardiederich
Tue Jan 03, 2006 6:56 pm
Forum: General discussions
Topic: converting ~ when logging into admin
Replies: 6
Views: 15192

I finally loaded 1.5.5 on the server that had this issue and it is indeed fixed. Thanks!

--
Andrew Diederich
by ardiederich
Wed Nov 23, 2005 8:46 pm
Forum: General discussions
Topic: converting ~ when logging into admin
Replies: 6
Views: 15192

Apache/1.3.26 is my webserver.

--
Andrew Diederich
by ardiederich
Fri Nov 18, 2005 10:14 pm
Forum: General discussions
Topic: converting ~ when logging into admin
Replies: 6
Views: 15192

converting ~ when logging into admin

When I try to login to the admin page on a phpmyfaq I have in a public_html user directory, the tilde gets converted, and I can't login. The server is internal, unfortunately, so I can't show you firsthand. The url after I give it my login and password is:
http://internalserver/%257Eadiederich/tsfaq ...
by ardiederich
Fri Nov 18, 2005 9:52 pm
Forum: General discussions
Topic: Removing Top 10 when viewing FAQ
Replies: 8
Views: 15600

Removing Top 10 when viewing FAQ

(I thought I had seen this posted before, but can't find it now.) The gist was that when you are viewing the contents of a FAQ you really don't need the Top 10 list on the right. It just gets in the way, and for smaller screens makes the center column really, really small.

I'd like the Top 10 and ...
by ardiederich
Fri Nov 18, 2005 9:38 pm
Forum: General discussions
Topic: top 10/last 5 FAQs only appear in English
Replies: 5
Views: 8914

I just upgraded from 1.5.2 to 1.5.4 in part so I could test this. I disabled automatic content negotiation and submitted the change. I left the default as English.

Now, in Firefox 1.0.7 or opera 8.50, when I try and change the language on the front page it always automatically goes back to English ...
by ardiederich
Tue Oct 25, 2005 7:05 pm
Forum: General discussions
Topic: top 10/last 5 FAQs only appear in English
Replies: 5
Views: 8914

top 10/last 5 FAQs only appear in English

All of my FAQs are in English. I do have some French users, however, and they tend to browse the FAQ in French. The Top Ten list, last 5 posted, and even the categories don't appear unless I have the language set as English.

Is there a way to have these display? I'm currently on 1.5.2.

Thanks for ...
by ardiederich
Wed Sep 28, 2005 10:25 pm
Forum: General discussions
Topic: Nested OL don't display nested
Replies: 10
Views: 16934

This fell out of the 1.5.2 release. I konw you were rushed on it, so no big deal. style.css reverted to:

Code: Select all

.main-content ul {
   padding-left: 1em;
   list-style: outside;
}
by ardiederich
Thu Sep 22, 2005 8:24 pm
Forum: General discussions
Topic: 1.5 moved non-public records?
Replies: 9
Views: 13421

Hi,

this query works for me. Is it possible that there's no entry with the word 'confederation'? I didn't get any result on support.jabber.org/faq/ in the public frontend....


Ah, there we go. The query is for (supportfaqdata.active = yes'), and This FAQ isn't active. Which explains why I couldn ...
by ardiederich
Thu Sep 22, 2005 8:08 pm
Forum: General discussions
Topic: Nested OL don't display nested
Replies: 10
Views: 16934

Fixed. The key was the li addition, plus this first piece:

Code: Select all

.main-content ul, ol { 
   padding-left: 1em; 
} 
.main-content li { 
   margin-left: 20px; 
}
I originally had

Code: Select all

.main-content ul {
   padding-left: 1em;
   list-style: outside;
}
in the css page. Thanks for the help!

--
Andrew
by ardiederich
Thu Sep 22, 2005 8:04 pm
Forum: General discussions
Topic: 1.5 moved non-public records?
Replies: 9
Views: 13421

I'm an evolutionary throwback and I still use mysql on the cli. :) Here's the query:

Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 18594 to server version: 4.0.23a-log

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> SELECT supportfaqdata ...
by ardiederich
Thu Sep 22, 2005 7:59 pm
Forum: General discussions
Topic: Nested OL don't display nested
Replies: 10
Views: 16934

Hmm, that's still not working. I created a new FAQ to make sure I didn't get any strange HTML when I copied the last one from openoffice.

http://support.jabber.com/faq/index.php?sid=2118&lang=en&action=artikel&cat=3&id=126&artlang=en

It has indented orderd lists and unordered lists. Here's my ...
by ardiederich
Thu Sep 22, 2005 7:26 pm
Forum: General discussions
Topic: Nested OL don't display nested
Replies: 10
Views: 16934

I don't think I was clear. It did not indent the numbers, so the online display just looks like a single, badly numbered list. I'm happy to try more css if you have any lying around. :)

--
Andrew
by ardiederich
Thu Sep 22, 2005 6:53 pm
Forum: General discussions
Topic: 1.5 moved non-public records?
Replies: 9
Views: 13421

Absolutely. Here you go:

Administration of Records
n/a

DEBUG INFORMATION:

DELETE FROM supportfaqadminsessions WHERE time < 1127409908
SELECT usr, pass FROM supportfaqadminsessions WHERE uin = '27b5e48eaabc8701ce5a2b563f0072ab'
UPDATE supportfaqadminsessions SET time = 1127411708 WHERE uin ...
by ardiederich
Thu Sep 22, 2005 6:51 pm
Forum: General discussions
Topic: Nested OL don't display nested
Replies: 10
Views: 16934

That just shifted the space between the number and the paragraph, but didn't indent the numbers themselves in the sub-list. What I did was this in templates/style.css:

Code: Select all

.main-content ul {
   padding-left: 1em;
   list-style: outside;
}
.main-content li { padding-left: 10px; }
--
Andrew