darkalchemy

Results 5 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,...