darkalchemy

Results 13 comments of darkalchemy

You can increase the index length to a max of 767-1024 chars by adding these to my.cnf and restarting: ```# add/modify these in [mysqld] to increase max size for index(required)...

With those additions to my.cnf, I still limit column lengths to 255. Also noteworthy, changing ```innodb_file_per_table = 1``` might require an export/drop/import to create the storage properly.

It appears the copy2 isn't creating the folders in the path as expected. So, until the issue is fixed, I changed the TrailerLocation path to empty so that it stays...

/home/darkalchemy/src/TheaterTrailers/ /media/Trailers/ But, the destination path does not matter. It simply does not create the new folder during the copy phase.

If you don't want everything from the table, use `->select(null)`, this was documented in the past. ``` $query = new \Envms\FluentPDO\Query($this->pdo); $query = $query ->from('articles AS a') ->select(null) ->select("a.id, a.title,...

Well, this code hasn't been updated in a couple of years. Without going through it all and making updates and changes, I doubt it will work as it's now. I...

TBH, if I was to update this, I would replace Sentinel with PhpAuth. But, I don't see having the time to work on this anytime soon. My apologies for your...

I would offer that Daniel has a better grasp of this than I do. Much better. There are so many issues with this code, it would be simpler to start...

If you look closely, a parameter was added, simply call it with the second parameter false and the hidden files will not be included. I also created another branch so...

Maybe I have misunderstood the purpose of that method.. I have not used it before looking at your requested changes. I will tonight.