Yii v2 snippet guide

Comparing #16 with #17

Revision #17 was created by rackycz rackycz on Sep 20, 2019, 7:17:13 AM.

prereq

Content

[...]
- [https://www.yiiframework.com/wiki/250/yii-for-beginners](https://www.yiiframework.com/wiki/250/yii-for-beginners)
- [https://www.yiiframework.com/wiki/462/yii-for-beginners-2](https://www.yiiframework.com/wiki/462/yii-for-beginners-2)

... and today I am beginning with Yii 2 so I will also gather my snippets and publish them here. They are meant maily for me, but also for other beginners. I have some experiences with Yii 1, but I havent used Yii for almost 5 years so many things are new for me again. Plus I was suprised that the Yii 2 demo application does not contain some basic functionalities which must be implemented in the most of web projects so I will focus on them. Plus I will talk about GitLab.

Prerequisities
 
---
 
I work with Win10 + [XAMPP Server](https://www.apachefriends.org/download.html) so I will expect this configuration. 
 
 
You should also download the [Yii basic demo application](https://www.yiiframework.com/download) and place it into the **htdocs** folder. In my case it is here:
 
 
- C:\xampp\htdocs
 
 
And you index.php shouled be here:
 
 
- C:\xampp\htdocs\basic\web\index.php
 
 
Yii demo app + GitLab
---
... text ...

Translations (i18n) + changing languages
---
[...]