Search found 15613 matches

by Thorsten
Fri Sep 20, 2024 4:40 pm
Forum: General discussions
Topic: Upgrade from 3.0.9 to 3.2 Problems
Replies: 1
Views: 54

Re: Upgrade from 3.0.9 to 3.2 Problems

Hi,

I think you don't need the Option FollowSymlinks, I will remove it.

Is "faqcategory_order" missing for 3.0 or 3.2? I think we introduced this table with 3.1.

bye
Thorsten
by Thorsten
Thu Sep 19, 2024 6:30 pm
Forum: Proposals
Topic: Mixed Login Types and Documentation update
Replies: 3
Views: 1229

Re: Mixed Login Types and Documentation update

Hi,

is it working now?

bye
Thorsten
by Thorsten
Tue Sep 17, 2024 7:31 am
Forum: Bug reports
Topic: New entry Email received shows all HTML coding
Replies: 29
Views: 7371

Re: New entry Email received shows all HTML coding

Hi,

do you know the current version and the version before?

bye
Thorsten
by Thorsten
Mon Sep 16, 2024 4:49 pm
Forum: Bug reports
Topic: New entry Email received shows all HTML coding
Replies: 29
Views: 7371

Re: New entry Email received shows all HTML coding

Hi,

did you changed anything on your server? I checked the code various times now and I don't find the issue that happens on your side.

bye
Thorsten
by Thorsten
Sat Sep 14, 2024 1:11 pm
Forum: Webserver and configuration
Topic: Enabling SSO
Replies: 1
Views: 1704

Re: Enabling SSO

Hi,

thanks for the feedback, I added some documentation about SSO and nginx. I also added that for Apache.

https://phpmyfaq.readthedocs.io/en/main ... on-support

bye
Thorsten
by Thorsten
Sat Sep 14, 2024 9:25 am
Forum: Webserver and configuration
Topic: Trouble Installing 4.0 Beta under Wordpress Folder Structure
Replies: 1
Views: 965

Re: Trouble Installing 4.0 Beta under Wordpress Folder Structure

Hi,

did you change the base URL in the .htaccess file provided by phpMyFAQ?

bye
Thorsten
by Thorsten
Sat Sep 14, 2024 9:24 am
Forum: Proposals
Topic: Mixed Login Types and Documentation update
Replies: 3
Views: 1229

Re: Mixed Login Types and Documentation update

Hi,

thanks for the great suggestions but one thing should be already possible: if you enable SSO, local logins should still work.

bye
Thorsten
by Thorsten
Mon Sep 09, 2024 6:39 pm
Forum: General discussions
Topic: Login leads to HTTP Error 500 / unknown column login_attempts
Replies: 6
Views: 3432

Re: Login leads to HTTP Error 500 / unknown column login_attempts

Hi Ralph,

was it really missing?

bye
Thorsten
by Thorsten
Sun Sep 08, 2024 4:19 pm
Forum: General discussions
Topic: Login leads to HTTP Error 500 / unknown column login_attempts
Replies: 6
Views: 3432

Re: Login leads to HTTP Error 500 / unknown column login_attempts

Hi Ralph, this is how the CREATE TABLE looks like for 3.0.x: CREATE TABLE faquser ( user_id INT(11) NOT NULL, login VARCHAR(128) NOT NULL, session_id VARCHAR(150) NULL, session_timestamp INT(11) NULL, ip VARCHAR(15) NULL, account_status VARCHAR(50) NULL, last_login VARCHAR(14) NULL, auth_source VARC...
by Thorsten
Fri Sep 06, 2024 6:13 pm
Forum: General discussions
Topic: Login leads to HTTP Error 500 / unknown column login_attempts
Replies: 6
Views: 3432

Re: Login leads to HTTP Error 500 / unknown column login_attempts

Hi Ralph,

did you upgrade from a previous version?

bye
Thorsten
by Thorsten
Fri Sep 06, 2024 5:32 pm
Forum: Bug reports
Topic: New entry Email received shows all HTML coding
Replies: 29
Views: 7371

Re: New entry Email received shows all HTML coding

Hi,

I'm still debugging to reproduce this. I'm still confused why it stopped working on your installation.

bye
Thorsten
by Thorsten
Sun Sep 01, 2024 8:24 pm
Forum: Bug reports
Topic: When adding a new FAQ phpMyFAQ Fatal error Uncaught exception: 'mysqli_sql_exception' received
Replies: 12
Views: 2292

Re: When adding a new FAQ phpMyFAQ Fatal error Uncaught exception: 'mysqli_sql_exception' received

Hi,

when run this query in the SQL mode:

Code: Select all

ALTER TABLE faqdata CONVERT TO CHARSET utf8mb4;
bye
Thorsten
by Thorsten
Sun Sep 01, 2024 11:43 am
Forum: Bug reports
Topic: When adding a new FAQ phpMyFAQ Fatal error Uncaught exception: 'mysqli_sql_exception' received
Replies: 12
Views: 2292

Re: When adding a new FAQ phpMyFAQ Fatal error Uncaught exception: 'mysqli_sql_exception' received

Hi,

no, do you have access to your database with phpMyAdmin for example?

bye
Thorsten
by Thorsten
Sun Sep 01, 2024 10:38 am
Forum: Bug reports
Topic: When adding a new FAQ phpMyFAQ Fatal error Uncaught exception: 'mysqli_sql_exception' received
Replies: 12
Views: 2292

Re: When adding a new FAQ phpMyFAQ Fatal error Uncaught exception: 'mysqli_sql_exception' received

Hi,

you can migrate the table to "utf8mb4" to use emojis directly:

Code: Select all

ALTER TABLE faqdata CONVERT TO CHARSET utf8mb4;
It worked for me.

bye
Thorsten
by Thorsten
Sun Sep 01, 2024 10:33 am
Forum: Bug reports
Topic: When adding a new FAQ phpMyFAQ Fatal error Uncaught exception: 'mysqli_sql_exception' received
Replies: 12
Views: 2292

Re: When adding a new FAQ phpMyFAQ Fatal error Uncaught exception: 'mysqli_sql_exception' received

Hi,

I found the issue, the emojis break the query if you use the "utf8mb4" encoding in MySQL. Which encoding do you use?

You can find it out using a tool like phpMyAdmin.

bye
Thorsten