# |
Dec 5th 2017, 19:26 |
maneken |
hmic ^ |
# |
Dec 5th 2017, 19:26 |
maneken |
I have a basic CRUD app. I have a Visitors Controller where anonymous users can add visitors (visitors/add) and verified users can see a list of visitors (visitors/list). All I want is the visitors list to automatically be updated when a user creates a new Visitor in visitors/add |
# |
Dec 5th 2017, 19:15 |
hmic |
maneken, whats the usecase? |
# |
Dec 5th 2017, 19:07 |
maneken |
Hello. I have a small experience in cakephp3 and JS. I'm looking for the easiest way to add websockets in my application. Do you have any usefull links / tutorials? |
# |
Dec 5th 2017, 18:41 |
saeideng |
and you hmic |
# |
Dec 5th 2017, 18:41 |
saeideng |
@neon1024 thank you for reply |
# |
Dec 5th 2017, 17:52 |
dereuromark |
never mind then, too error prone |
# |
Dec 5th 2017, 17:52 |
dereuromark |
yeah only chrome etc work (even IE10..), but not FF |
# |
Dec 5th 2017, 17:51 |
hmic |
and#10 and U+000A is the same character |
# |
Dec 5th 2017, 17:51 |
dereuromark |
might not be too compatible with browsers just yet, though |
# |
Dec 5th 2017, 17:50 |
dereuromark |
and#10; worked for me |
# |
Dec 5th 2017, 17:50 |
dereuromark |
afaik you can with https://stackoverflow.com/questions/7312623/insert-line-break-inside-placeholder-attribute-of-a-textarea |
# |
Dec 5th 2017, 17:42 |
admad |
you can't have new lines in placeholder https://stackoverflow.com/questions/7189223/can-you-have-multiline-html5-placeholder-text-in-a-textarea |
# |
Dec 5th 2017, 17:35 |
dereuromark |
like nl2br() or autoParagraph() handle it |
# |
Dec 5th 2017, 17:35 |
dereuromark |
auto transform PHP_EOL makes sense to me |
# |
Dec 5th 2017, 17:35 |
dereuromark |
yeah, but I need a newline, and the PHP_EOL does not work and the html char would but is escaped |
# |
Dec 5th 2017, 17:34 |
dereuromark |
I just cant disable it only. |
# |
Dec 5th 2017, 17:34 |
hmic |
and why do you care if it's escaped or not - the placeholder is static text in your code, isn't it? |
# |
Dec 5th 2017, 17:34 |
dereuromark |
as could any other attr |
# |
Dec 5th 2017, 17:34 |
dereuromark |
makes sense, because it could contain dangerous HTML |
# |
Dec 5th 2017, 17:34 |
dereuromark |
it does, yeah |
# |
Dec 5th 2017, 17:34 |
hmic |
escape => true escapes the placeholder?! |
# |
Dec 5th 2017, 17:32 |
dereuromark |
How do you do placeholder newlines in textareas? 'and#10;' would be escaped, but I also dont want to disable escape here completely. Couldnt we have PHP_EOL transformed into 'and#10;' for escape => true? |
# |
Dec 5th 2017, 17:25 |
hmic |
you can use the very same concepts in 2.x already! works exactly the same way |
# |
Dec 5th 2017, 17:24 |
hmic |
and this for the env reading: https://github.com/cakephp/app/blob/master/config/app.default.php#L260 |
# |
Dec 5th 2017, 17:24 |
xapak |
Yeah, looks like 3.X thing. But totally, gonna tell them to set something like that for their project. |
# |
Dec 5th 2017, 17:24 |
hmic |
https://github.com/cakephp/app/blob/master/config/bootstrap.php#L80 |
# |
Dec 5th 2017, 17:23 |
hmic |
this one instead: https://github.com/cakephp/app/blob/master/config/bootstrap.php |
# |
Dec 5th 2017, 17:23 |
hmic |
if you check the app.php in the cake3 base app, you will notice it tries to read many settings from the environment too already |
# |
Dec 5th 2017, 17:22 |
xapak |
https://github.com/cakephp/cakephp/blob/10fcd7633d40b100a57054025dd38cd008fded80/app/Config/bootstrap.php |
# |
Dec 5th 2017, 17:22 |
xapak |
Hmm, don’t see the app_local.php reference in bootstrap.php for 2.10. Maybe a 3.X thing? |
# |
Dec 5th 2017, 17:22 |
hmic |
says the same like i just did |
# |
Dec 5th 2017, 17:21 |
dereuromark |
See also http://sandbox.dereuromark.de/pages/best-practices#config |
# |
Dec 5th 2017, 17:20 |
xapak |
Awesome, let me check. |
# |
Dec 5th 2017, 17:20 |
xapak |
Something like that. |
# |
Dec 5th 2017, 17:20 |
xapak |
That! |
# |
Dec 5th 2017, 17:20 |
hmic |
this is the common and best practices. - if you check the bootstrap.php you will notice a reference to app_local.php, it's just commented, remove the comment and put your local config/secrets there. |
# |
Dec 5th 2017, 17:19 |
hmic |
that overwrites and adds to the version controlled app.php file |
# |
Dec 5th 2017, 17:18 |
hmic |
or have a - git excluded - app_local.php file |
# |
Dec 5th 2017, 17:18 |
hmic |
on your question: you can either inject the configuration needed via the environment |
# |
Dec 5th 2017, 17:18 |
xapak |
Alright, so, to keep things in context: What’s the state of the art on how CakePHP 3.5 handles secrets then? |