Euan Torano

Results 258 comments of Euan Torano

That's weird, I wouldn't have expected them to be escaping entities in passwords at all! We'll definitely have to do some research, I'll look at their code and see if...

From a quick glance at phpBB's current source code, I can't see anything obvious that would be converting characters to HTML entities, but I'm not too familiar with their code.

Ah, weird. I looked at pretty much everything except the individual drivers. Thanks @burner1024.

Does the ‘post’ table exist in the database? > On 31 Jul 2019, at 10:41, sercan82 wrote: > > Do your vb5 tables have a prefix? Uhh, like vb_, and...

If I had access to a VB5 database I could try to find some time to get a basic converter done. If anybody is willing to share (feel free to...

The `a` is an alias for the table `smfbb_attachments`, so try adding the column to that table: ```sql ALTER TABLE smfbb_attachments ADD COLUMN id_attach INT NOT NULL; ```

Shouldn’t be too difficult to add. There are a couple of other commands that could do with being added too. > On 29 Jul 2018, at 03:16, MA Jianjun wrote:...

This is a big one! I wonder if it might make sense to make the table names bold and differentiate the column names from the descriptions somehow - perhaps by...

Yeah, something like that I’d say. A script would definitely be the best approach in my opinion as ideally the column type definitions would include all supported DBMS (MySQL, Postgres,...

Yep, we should. I'm not sure how up to date this PR is, but we could merge it and update it I guess.