andrewelkins / Laravel-4-Bootstrap-Starter-Site

Laravel 4 Starter Site is a basic blog application using several nice community packages.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

View [site/blog/index] not found.

Gittinhub opened this issue · comments

InvalidArgumentException

View [site/blog/index] not found.

what seems to come from a -> require_once $paths['public'].'/index.php'; <- at server.php

After changing that line to this -> require_once 'mylaravel4start/index.php' it still persists to not find this file and many other views and give me another set of errors starting at line 49 of this index.php file saying:

app->run() ... and more...

I am running php >5.5 , apache 2.4 mod_rewrite ON , composer global.
Everything seems ok, but does not work... Any idea?

I see that many scripts i try for some reason linux is dening opening files. Yes SELinux is disabled and i can't imagine what could be done more cause i am using a normal user to run the ./artisan serve command in its directory on a terminal window of my Fedora 20 linux and the browser on the same X session with the same user.
What more could it be blocking php to open files. Any idea on how to solve this?

Try setting up a default laravel install first. https://github.com/laravel/laravel/tree/v4.2.11

This is because we are using environments and copying ALL files from /app/config to /app/config/local We must change /app/config/local/view.php accordingly.
Change paths to 'paths' => array(DIR.'/../../views'),
Hope you are brave enough to understand my non native english :)

PERFECT!!!! THANKS!!!!
After 15 days trying hard in many systems i can finally see it working!
THANKS AGAIN AND A LOT!!!!!
This MUST be included in configuration instructions or changed in the master.zip
MANY THANKS!!!! MANY THANKS!!!

Glad it works now.