Home > Enterprise >  app/Views/templates folder is not found in CodeIgniter
app/Views/templates folder is not found in CodeIgniter

Time:12-21

Folder which is said to be where all the page templates located at could not be found with the following error: cd: templates: No such file or directory.

Will it be okay to re create the folder or is there something missing and need to be restored ?

CodePudding user response:

Yes you have to create your folder app/Views/templates/ and add your templates inside.

CodeIgniter does not create the folder automatically.

  • Related