четверг, 3 ноября 2016 г.

[Symfony] [ckeditor] browse / upload buttons missing - how to fix

be sure you don't have duplicate call of ivory_ck_editor in config.yml file.

вторник, 11 октября 2016 г.

composer & php 5.6.26 & ubuntu: curl is missing from your system

sudo apt-get install php5.6-curl
sudo a2enmod proxy_fcgi setenvif
sudo a2enconf php5.6-fpm
sudo service apache2 reload

helped notices from php5.6-cur installing

четверг, 29 сентября 2016 г.

Dr Web blocked my HOSTS file, how to fix?

Just reboot system and have access to read/write in it

четверг, 18 августа 2016 г.

symfony fixtures cannot delete or update a parent row

* you can add to problem entity field, which is described in error onDelete="set null"

* or deny to purge your database, add to your command key --append.

четверг, 11 августа 2016 г.

Unable to find mapping information for the class Context

Need to fully configure sonata-classification-bundle, its needed for modern versions of sonata-media.

четверг, 14 июля 2016 г.

5 columns layout with Twitter Bootstrap

based on http://www.wearesicc.com/quick-tips-5-column-layout-with-twitter-bootstrap/ , modified for fitting 5 columns in any >320px width displays.

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

@media (min-width: 320px) {
  .col-md-15 {
    width: 20%;
    float: left;
  }
}

And use it like this:
<div class="col-md-15 col-sm-3">
    ...
</div>