skip to Main Content

Php – Yii2 ActiveForm Model doesn't exist

I have a controller in Yii2 app with the following actions: private function actionPagination($query) { $count = $query->count(); $pagination = new Pagination([ 'defaultPageSize' => 10, 'totalCount' => $count, ]); $books = $query ->orderBy('id') ->offset($pagination->offset) ->limit($pagination->limit) ->all(); return [$books, $pagination]; }…

VIEW QUESTION

How to enable virtualhost in xampp – Apache

I am configure virtualhost on Xampp so that I can run an advanced Yii2 project (with front and backend application), I have followed this instruction and my httpd-vhosts.conf looks like this <VirtualHost *:8081> ServerName winnersprimary.ac.tz DocumentRoot 'c:xampphtdocswinnersprimaryfrontendweb' <Directory 'c:xampphtdocswinnersprimaryfrontendweb'> #…

VIEW QUESTION
Back To Top
Search