Top "Yii2" questions

Yii 2 is the latest version of the Yii framework - a high-performance, component-based PHP framework

Yii2 htaccess - How to hide frontend/web and backend/web COMPLETELY

I think I am pretty close. I have the htaccess redirecting to the website (frontend/web) and the /admin path (…

php apache .htaccess mod-rewrite yii2
yii2 active record find column not equal

I have this code to find a user from db which status is active and role is user public static …

php yii2
Yii2: validation rule for array?

I can define a rule for a single integer like this: [['x'], 'integer'] Is it possible to tell that x …

php validation yii2
How do I work with many-to-many relations in Yii2

For example in one-to-many due to documentation (http://www.yiiframework.com/doc-2.0/guide-db-active-record.html#relational-data) you can link two models …

php many-to-many yii2
Yii2 how does search() in SearchModel work?

Please can someone explain how the search method in a Yii2 SearchModel works? I generated it using Gii. Here it …

php yii yii2
Yii 2 - radioList Template

I want to add template to radioList in yii2, which I tried, but I am unable to get the proper …

php yii2
ActiveRecord batch insert (yii2)

Is it possible to insert multiple rows in one query with Yii's ActiveRecord? Or is this only possible via the …

php yii2 dao batch-insert
Yii2: How to use orWhere in andWhere

I want create this query with yii2 search model select * from t1 where (title = 'keyword' or content = 'keyword') AND (category_…

yii yii2
Multiple database connections and Yii 2.0

I have two databases, and every database has the same table with the same fields, but how do I get …

yii2
Get response in JSON format in Yii2

I'm trying to convert and array of response into JSON format. I have tried all the answers that were posted …

php json yii2 yii2-advanced-app