307 reputation
310
bio website
location
age
visits member for 2 years, 8 months
seen May 22 at 20:09
stats profile views 19

May
13
awarded  Yearling
Apr
14
awarded  Necromancer
Apr
13
answered mysql fulltext boolean search - order by relevancy
Apr
3
accepted Laravel Auth::attempt from example in Laravel PHP Starter book only returns false
Mar
28
answered Laravel Auth::attempt from example in Laravel PHP Starter book only returns false
Mar
28
revised Laravel Auth::attempt from example in Laravel PHP Starter book only returns false
edited title
Mar
27
comment Laravel Auth::attempt from example in Laravel PHP Starter book only returns false
The username in the auth config is set to 'email' and the email column in the users table has only email addresses in it.
Mar
27
revised Laravel Auth::attempt from example in Laravel PHP Starter book only returns false
added 92 characters in body
Mar
27
asked Laravel Auth::attempt from example in Laravel PHP Starter book only returns false
Mar
8
comment Laravel on MAMP every time I create a new view, I have to CHMOD storage/views to 777, then 775
Thank you, that was the exact solution (2nd option)
Mar
8
accepted Laravel on MAMP every time I create a new view, I have to CHMOD storage/views to 777, then 775
Mar
8
comment Laravel on MAMP every time I create a new view, I have to CHMOD storage/views to 777, then 775
Invalid argument was returned. But this points me in the right direction.
Mar
8
revised Laravel on MAMP every time I create a new view, I have to CHMOD storage/views to 777, then 775
added 891 characters in body
Mar
8
comment Laravel on MAMP every time I create a new view, I have to CHMOD storage/views to 777, then 775
You're right, it does not make sense. Regardless, when I add a new view, I get file_put_contents(/Users/jason/Sites/laravel1/storage/views/viewname): failed to open stream: Permission denied If I CHMOD 775 views and reload I get the same error. The CHMOD 777 and it works, then CHMOD 775 and it still works. I am about to paste the steps above in an edit.
Mar
7
comment Laravel on MAMP every time I create a new view, I have to CHMOD storage/views to 777, then 775
@shapeshifter is is in fact umask. It's set to 0022. Any idea how to overcome this without having to CHMOD each time I create a new view? And maybe answer the question since that is at least the root of my issue.
Mar
7
comment Laravel on MAMP every time I create a new view, I have to CHMOD storage/views to 777, then 775
@jtheman I don't follow. This is the behavior I am experiencing. I have to reset the permissions on the views dir each time. If I go straight to 775, I still get the error.
Mar
7
asked Laravel on MAMP every time I create a new view, I have to CHMOD storage/views to 777, then 775
Mar
5
comment Laravel :: Permission Denied on blade.php
Had same issue, 775 works
Mar
5
comment configure: error: C compiler cannot create executables
This helped, but the final fix came from here: glenscott.co.uk/blog/2011/08/29/…
Feb
13
comment Strange PHP variable behavior with $_SESSION set before local vars
It is actually. This is solved one of two ways, rename the variables, or the safer better way, turn off register_globals. I figured this out, but no one ever put up an answer and I forgot about it until now :)