Log message #4143188

# At Username Text
# May 23rd 2018, 10:17 cjquinn To clarify this is only for pages that don’t require authentication but the page might be altered if the user is logged in. For example the homepage of the shop shows user recommendations if they are logged in but logged out users can also see the homepage just without any tailored recommendations.
# May 23rd 2018, 10:10 cjquinn File uploaded https://cakesf.slack.com/files/U1449QQ91/FAULR828J/either_way_this_is_my_current_solution__just_wondering_what_others_approach_was_to_this_problem_.php / https://slack-files.com/T053DPNCM-FAULR828J-7642436f47
# May 23rd 2018, 10:09 cjquinn Definitely authentication :slightly_smiling_face:
# May 23rd 2018, 10:08 cjquinn Yeah not every time just once the session has expired
# May 23rd 2018, 10:08 neon1024 This sounds like confusion of Authentication with Authorisation
# May 23rd 2018, 10:08 neon1024 Why would you need to indentify the user every time?!
# May 23rd 2018, 10:08 neon1024 But but, the Auth info is in the Session usually if you’re using defaults
# May 23rd 2018, 09:54 cjquinn It’s for an e-commerce shop so the majority of the site doesn’t require authentication until they checkout. Would I just call `$this->Auth->identify()` and set the user before each action that doesn’t require authentication or is that a bad idea?
# May 23rd 2018, 09:51 dereuromark "where authentication isn’t required" => you dont here :slightly_smiling_face:
# May 23rd 2018, 09:50 cjquinn Has anyone implemented cookie/remember me authentication? And if so how do you check for a cookie and login in the user on a route where authentication isn’t required?
# May 23rd 2018, 07:47 k4t yeah
# May 23rd 2018, 07:47 admad then write your own log engine, would be pretty simple to change the rotation logic :slightly_smiling_face:
# May 23rd 2018, 07:47 k4t based on this we can create our own Logger I think
# May 23rd 2018, 07:47 k4t yeah, I noticed that, but unfortunatelly we need days rotation
# May 23rd 2018, 07:46 admad @k4t file log engine already has log rotation. it's just mb based instead of days
# May 23rd 2018, 07:45 k4t yeah, looksl ike this is the only way
# May 23rd 2018, 07:45 nitishkumardiwakar Ok, but can you provide some hint
# May 23rd 2018, 07:44 neon1024 @nitishkumardiwakar Sorry, I don’t have the patience to help you today.
# May 23rd 2018, 07:44 nitishkumardiwakar @neon1024 As you told yesterday, adding belongsTo will effect in inserting data. I am facing this now. How can I solve this?
# May 23rd 2018, 07:42 neon1024 @k4t You could write your own Logger class for that I would imagine
# May 23rd 2018, 07:39 k4t is it possible with Cake to rotate its logs after X days?
# May 23rd 2018, 07:39 k4t hi
# May 23rd 2018, 07:35 nitishkumardiwakar Somebody please help. I am stucked
# May 23rd 2018, 06:34 nitishkumardiwakar How can I insert id of table2 while inserting form in table1?
# May 23rd 2018, 06:23 nitishkumardiwakar Yes it is hiding when adding belongsTo
# May 23rd 2018, 06:21 tim It makes no sense that the ID would not be in the form data when changing the relations. You need to check the formdata in the browser (in Chrome, use developer tools). If the ID is included there, then you need to check further
# May 23rd 2018, 06:19 nitishkumardiwakar @tim Is there any solution for it?
# May 23rd 2018, 06:18 nitishkumardiwakar without belongs to inner join, is not working, and with belongsTo id of table 2 (sizes) is not inserting in table 1 (products)
# May 23rd 2018, 06:17 nitishkumardiwakar in products table there is (id, name, size_id) and in sizes table there is (id, name)
# May 23rd 2018, 06:15 nitishkumardiwakar belongsTo
# May 23rd 2018, 06:15 tim Whats the relation in the ProductsTable?
# May 23rd 2018, 06:12 nitishkumardiwakar and when I remove belongsTo fields (id of other table) is showing
# May 23rd 2018, 06:12 nitishkumardiwakar I've checked form data. when there is belongsTo added in model, then fields are not showing in (print_r)
# May 23rd 2018, 06:11 nitishkumardiwakar id of another table is inserting if i remove belongsTo, but with belongsTo id of another table is not inserting
# May 23rd 2018, 06:07 tim Check what the value of the options are. They need to be the IDs of the second entity you are inserting. If that's correct, check your form data while submitting
# May 23rd 2018, 06:05 nitishkumardiwakar values are not inserting after belongsTo added in modal
# May 23rd 2018, 05:53 nitishkumardiwakar ?
# May 23rd 2018, 05:08 nitishkumardiwakar how can I insert id of another table from select box? Values are displaying in select box, but their id is not inserting.
# May 23rd 2018, 05:02 nitishkumardiwakar but I am unable to insert id of second table
# May 23rd 2018, 05:01 nitishkumardiwakar yes association is setup. Its working in inner join
# May 23rd 2018, 05:01 dakota What does the data that you are inserting look like, and do you have the associations setup correctly?