yii2-cookbook
yii2-cookbook copied to clipboard
Yii 2.0 Community Cookbook
https://github.com/samdark/yii2-cookbook/blob/master/book/forms-validator-multiple-attributes.md should likely be adjusted. See https://github.com/yiisoft/yii2/commit/d62590807d7f609defd8a2bdc0121405b226c258#commitcomment-41083851
I tried to build the PDF of the book but got the following error: `vendor/bin/apidoc guide --template=pdf --interactive=0 ../book/ ./pdf PHP Fatal error: Cannot use 'Object' as class name as...
```php class Module extends \yii\base\Module { public function init() { parent::init(); \Yii::configure($this, require __DIR__ . '/config.php'); } ``` config.php: ```php return [ 'params' => [ ... ], 'components' => [...
Services which allow one to make their application serverless (i.e. AWS Lambda) are becoming increasingly popular. You only pay for code executed. No renting servers etc. This cuts costs extremely...
For https://github.com/samdark/yii2-cookbook/blob/master/book/scaling.md it's necessary to describe on how to deal with assets.
The code formatting in the [pdf version](https://github.com/samdark/yii2-cookbook/blob/master/pdf/yii2_community_cookbook.pdf) provided for download is messy with the code blocks at several places, which seems like the markdown isnt correctly rendered or detected by...
One of the issues I have just ran into, is using Yii2 to create a REST API. The official docs lack in this area (and many others). It takes into...
I'm trying to build the pdf as described in the README.md. When trying to run make I got the following error: ``` (/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty) (/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang2.sty) (/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang3.sty) ! Package Listings Error: Couldn't...
I have deployed yii2 based app to GAE. GAE can autoscale the instances horizontally. This presents some challenges: 1. Using a centralized file storage for all instances. I am using...