Discourse and forum development

Thanks, it works now.

1 Like

Ah, one last thing, I am setting up flarum, what is the table prefix?

And where can I find it

it comes first of each table on database, for example on bayo_users ,bayo is prefix :grin:

1 Like

I now get this error when I press install:

Something went wrong: SQLSTATE[42000]: Syntax error or access violation: 1286 Unknown storage engine ‘InnoDB’ (SQL: create table ifhubforummigrations (migration varchar(255) not null, extension varchar(255) null) default character set utf8mb4 collate ‘utf8mb4_unicode_ci’ engine = InnoDB)

I typed that into mySQL, and got the following error:

#1273 - Unknown collation: ‘‘utf8mb4_unicode_ci’’

Use this code instead:

create table ifhubforummigrations (migration varchar(255) not null, extension varchar(255) null) default character set utf8mb4 collate 'utf8mb4_unicode_ci';
1 Like

I still get this error when pressing install:

Something went wrong: SQLSTATE[42000]: Syntax error or access violation: 1286 Unknown storage engine ‘InnoDB’ (SQL: create table ifhubforummigrations (migration varchar(255) not null, extension varchar(255) null) default character set utf8mb4 collate ‘utf8mb4_unicode_ci’ engine = InnoDB)

Does infinityfree have InnoDB? Could that be the problem?

InnoDB is not supported on free hosting.

https://infinityfree.net/support/innodb-on-free-hosting/

Ah. Could there be a workaround?

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.