Reputation: 721
I created a yii2 application in my windows system and it works fine. When I copied the whole codes along with database in Ubuntu, I'm facing the following issue.
I've checked and can access till the module. But whenever I try to navigate to any controller withing the module, I'm getting this error. The default controller that comes with the package such as signup etc are working properly. I've tried composer update.
Also, I cannot create a module with gii tool. Getting the following error.
So I think the codes that was written in windows OS is causing pretty much problem in Ubuntu. What is the steps or procedures that I'm missing?
Upvotes: 0
Views: 2623
Reputation: 914
1- Check if all files are available.
2- Linux is case sensitive but windows not, So you have to check the name of your view file and controller name.
3- Check folder permissions
Upvotes: 2