307 reputation
310
bio website
location
age
visits member for 2 years, 8 months
seen 2 days ago
stats profile views 19

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
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
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
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
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 :)
Dec
24
comment Is there a way to use use text as the background with CSS?
elementName:after { content: "\BB"; float: right; }
Dec
11
comment Call function after FancyBox loaded
Thanks, I didn't see that option on their docs. It worked and I took out the params and it was fine.
Dec
8
comment TypeError: '[object HTMLInputElement]' is not a function (evaluating 'elem[ type ]()') in jQuery form.submit()
Solved something for me, too. Good rule I will now follow is don't use IDs that are the same as the input type.
Dec
4
comment Strange PHP variable behavior with $_SESSION set before local vars
Luckily the site is in its infancy and I was just testing something, so no big deal. But I will turn it off. I am surprised I have never ran into this before today.
Dec
4
comment Strange PHP variable behavior with $_SESSION set before local vars
I'd hate to answer my own question, so you can if you like. That was right, the $_SESSION['customerId'] was getting confused with $customerId. I changed $customerId to $customerIdx and everything worked. Whew, I thought I had lost it. Thanks.
Nov
20
comment PHP Illegal offset type
This is worth looking at, too. Good call, I had never ran into this before. us3.php.net/language.types.type-juggling.php
Nov
14
comment Express Checkout error message: “Security header is not valid”
I had this because I used Test Account vs. API Username, which both look similar.
Nov
4
comment MySQL using COUNT, LEFT JOIN and GROUP by returning undesired results
Actually, distinct worked with no GROUP BY. If you put that as an answer, I will mark it correct. Thanks either way.
Nov
4
comment MySQL using COUNT, LEFT JOIN and GROUP by returning undesired results
I see what you are saying, but could you elaborate on that point? The rows I want to count are the product table rows, but the data I want to match on may or may not be in the other tables. If the data is not in one of the other tables, I do not want those counted. Hopefully that makes sense.
Nov
1
comment MySQL match() against() - order by relevance and column?
I was having a problem using IN BOOLEAN MODE and then ordering by relevance and this solved my problem with relevance always being returned as 1. Thanks.
Aug
21
comment How to turn off magic quotes on shared hosting?
This worked for me. I only used with POST but that is usually all you need. Just put this in a file that you likely already have included with your form files. THANKS.