# |
Feb 3rd 2018, 21:43 |
hmic |
there are like a quadrillion hits on this specific question |
# |
Feb 3rd 2018, 21:43 |
hmic |
i'm not going to google that for you |
# |
Feb 3rd 2018, 21:42 |
jason001 |
goddamnit, ok how do i fix that? |
# |
Feb 3rd 2018, 21:42 |
hmic |
:D |
# |
Feb 3rd 2018, 21:42 |
hmic |
go fix it! |
# |
Feb 3rd 2018, 21:42 |
hmic |
because you messed it up probably |
# |
Feb 3rd 2018, 21:42 |
jason001 |
well I thought htaccess would do that, but it's not |
# |
Feb 3rd 2018, 21:42 |
hmic |
why dont you let your webserver redirect to https even before it hits cake at all? |
# |
Feb 3rd 2018, 21:40 |
jason001 |
how can I catch that first, auth auth redirect - and make it go to https? |
# |
Feb 3rd 2018, 21:40 |
jason001 |
if I refresh that page, i get sent to https://sitename.com/users/login |
# |
Feb 3rd 2018, 21:40 |
jason001 |
when someone goes to my site... http://sitename.com . they first get sent, by cake to http://sitename.com/users/login |
# |
Feb 3rd 2018, 21:39 |
jason001 |
something like Options +FollowSymlinks RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule (.*) https://example.com/$1 [R] |
# |
Feb 3rd 2018, 21:39 |
jason001 |
so I have a question! - (cake 3.5 btw) - I made some changes to my .htaccess to redirect to https if they used http |
# |
Feb 3rd 2018, 21:37 |
davinci |
always |
# |
Feb 3rd 2018, 21:37 |
jason001 |
anyone caking at the moment? |
# |
Feb 3rd 2018, 21:31 |
davinci |
I put the details here: https://stackoverflow.com/questions/48602025/how-to-get-params-from-query-object-in-cakephp-3 |
# |
Feb 3rd 2018, 21:30 |
davinci |
and no, not right then. They're added from beforeFinds from behaviors, plugins...etc. So it's not as simple as just looking at the single query code row |
# |
Feb 3rd 2018, 21:29 |
davinci |
Right. They should be. But they don't seem to be, and I have no way to debug what it's actually using as that param value |
# |
Feb 3rd 2018, 21:28 |
ahmed_bodi |
those would be whatever your providing right e.g. $table->find()->where(['user_id' => $user_id])->all(); otherwise they would just be an aliased name for each column in the table |
# |
Feb 3rd 2018, 21:27 |
davinci |
when I debug the object, it shows params => [ :c1, :c2 ..etc, but I want to see what values those `:c1`, `:c2` are |
# |
Feb 3rd 2018, 21:27 |
ahmed_bodi |
@davinci which params? |
# |
Feb 3rd 2018, 21:27 |
davinci |
How can I get the 'params' from a query object? |
# |
Feb 3rd 2018, 21:24 |
ahmed_bodi |
@hmic quick query is there any way to use the tree queries with contain to get the link back to the users model? |
# |
Feb 3rd 2018, 21:06 |
hmic |
thats *the* solution to store tree like data in a flat table, scientifically proven design ;-) |
# |
Feb 3rd 2018, 21:05 |
ahmed_bodi |
i'll try then and pop back with my results |
# |
Feb 3rd 2018, 21:05 |
hmic |
welcome! |
# |
Feb 3rd 2018, 21:05 |
ahmed_bodi |
thanks @hmic |
# |
Feb 3rd 2018, 21:05 |
ahmed_bodi |
i spent hours reading all of github and i thought most of the docs |
# |
Feb 3rd 2018, 21:05 |
ahmed_bodi |
oh wow, i cant believe i missed that |
# |
Feb 3rd 2018, 21:04 |
davinci |
https://stackoverflow.com/questions/48602025/how-to-get-params-from-query-object-in-cakephp-3 |
# |
Feb 3rd 2018, 21:04 |
hmic |
https://book.cakephp.org/3.0/en/orm/behaviors/tree.html |
# |
Feb 3rd 2018, 21:04 |
hmic |
well, change the one you've got accordinly |
# |
Feb 3rd 2018, 21:04 |
hmic |
you first create a table that holds that tree structure |
# |
Feb 3rd 2018, 21:03 |
ahmed_bodi |
how would i do that with my queries? |
# |
Feb 3rd 2018, 21:03 |
hmic |
use a tree structure? |
# |
Feb 3rd 2018, 21:03 |
ahmed_bodi |
anyone know of any solutions? |
# |
Feb 3rd 2018, 21:03 |
ahmed_bodi |
now any more than one and i get a null object, i believe reading from github its due to the same alias for each field |
# |
Feb 3rd 2018, 21:02 |
ahmed_bodi |
Basically get the next 3 nested referrers |
# |
Feb 3rd 2018, 21:02 |
ahmed_bodi |
So im trying to run a query like this $this->Users->get($id, ['contain' => ['Referrer', 'Referrer.Referrer', 'Referrer.Referrer']]); |
# |
Feb 3rd 2018, 21:02 |
ahmed_bodi |
I've got users object with a relationship to itself on a different field |
# |
Feb 3rd 2018, 21:01 |
ahmed_bodi |
HI guys, im wondering if anyones got any experience with anything like this |