Rubise Mamman
Rubise Mamman

Reputation: 11

Yii2 Class 'url' not found

Please can anybody help me explain what causes Class 'Url' not found in yii2 error I'm having a hard time with it enter image description here

Upvotes: 0

Views: 532

Answers (1)

Insane Skull
Insane Skull

Reputation: 9368

You need to tell PHP about class location in order to use it, if it's not in same directory. add use yii\helpers\Url on top of index.php file

index.php

<?php
 use yii\helpers\Url;
?>
// Rest of the index file code

Upvotes: 2

Related Questions