Skip to content

SuitUp 2

Latest
Compare
Choose a tag to compare
@marcobraghim marcobraghim released this 03 May 13:24

Enjoy our brand new version. SuitUp 2.0 for the win!

2.0.8 Release note:

Previouslly parameter PDO::MYSQL_ATTR_INIT_COMMAND were set by default and it was removed. If you want to keep it as was before set as shown bellow:

config/database.config.php

<?php
return array(
  'adapter' => 'mysql',
  'host' => 'localhost',
  'dbname' => 'test',
  'username' => 'root',
  'password' => '',
  'options' => [PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"]
);