# |
Jul 10th 2017, 00:43 |
flashios09 |
one min i will take a look at the doc |
# |
Jul 10th 2017, 00:43 |
flashios09 |
@thomasnucleus i haven’t used postgres before but i’m sure that you can have a date time field using the form helper |
# |
Jul 10th 2017, 00:40 |
thomasnucleus |
My input: ?= $this->Form->control('expiry_date', ['type' => 'datetime']); ? |
# |
Jul 10th 2017, 00:40 |
thomasnucleus |
I'm trying to set a form input to a 'timestamp' type, however it just displays a text input. I tried 'datetime' as well but that doesn't give me the hour and minute inputs. My field type in my postgres database is timestamp without timezone. How come the 'timestamp' and 'datetime' types aren't working? |
# |
Jul 10th 2017, 00:39 |
flashios09 |
@sdevore thanks but i don’t want to *switch* between them, i want to use php5.x for cakephp2 project and php7.x for cakephp3 project, maybe the port(eg. 80 for php7 and 8080 for php5) can be a solution, i will try and see |
# |
Jul 10th 2017, 00:22 |
sdevore |
@flashios09 something like this? https://askubuntu.com/questions/50344/how-to-have-two-versions-of-php-installed-and-switch-easily-between-them |
# |
Jul 9th 2017, 23:02 |
flashios09 |
@lorenzo thanks but i don’t like docker |
# |
Jul 9th 2017, 20:19 |
lorenzo |
docker is like having virtual machines in your server, so you can run any version you need |
# |
Jul 9th 2017, 20:18 |
lorenzo |
I’d suggest using docker for that |
# |
Jul 9th 2017, 19:03 |
flashios09 |
i’m using php fpm + nginx on ubuntu 16.04 |
# |
Jul 9th 2017, 19:02 |
flashios09 |
is it possible to have two php versions(5.x and 7.x), then force the cakephp2 project to use php5.x and cakephp3 project to use 7.x ? |
# |
Jul 9th 2017, 19:01 |
flashios09 |
hi |
# |
Jul 9th 2017, 18:53 |
admad |
np |
# |
Jul 9th 2017, 18:53 |
manuweg |
sorry and thanks |
# |
Jul 9th 2017, 18:53 |
manuweg |
I had App in the namespace |
# |
Jul 9th 2017, 18:53 |
manuweg |
foolish me |
# |
Jul 9th 2017, 18:52 |
admad |
do you admin and non admin controller classes have proper namespace? |
# |
Jul 9th 2017, 18:50 |
manuweg |
Any ideas? |
# |
Jul 9th 2017, 18:49 |
manuweg |
the line that is quoted for causing the error is at the very end of the controller |
# |
Jul 9th 2017, 18:48 |
manuweg |
I am not redeclaring the class |
# |
Jul 9th 2017, 18:48 |
manuweg |
Fatal error: Cannot redeclare class Shop\App\Controller\ProductsController in /Users/wegmershaus/Dropbox/Websites/public_html/cttpcake/plugins/Shop/src/Controller/ProductsController.php on line 38 |
# |
Jul 9th 2017, 18:47 |
manuweg |
I get a fatal error for the non-admin controller functions |
# |
Jul 9th 2017, 18:47 |
manuweg |
sorry the other way around - the admin methods work fine |
# |
Jul 9th 2017, 18:47 |
manuweg |
the non-admin methods that I have baked work fine |
# |
Jul 9th 2017, 18:47 |
manuweg |
I have a plugin which has admin and non-admin methods |
# |
Jul 9th 2017, 16:34 |
smarty24 |
Hi CakePHPers, I would like to know how many parameters does the GET method from the AppController take? I am trying to return an ID and Token |
# |
Jul 8th 2017, 19:35 |
bordplate |
``` class UsersControllerTest extends IntegrationTestCase { public function setUp() { parent::setUp(); } public function testIndex() { $this->get('/'); $this->assertResponseOk(); } } ``` This is the test I’m trying to run. |
# |
Jul 8th 2017, 19:35 |
bordplate |
I tried that. And yeah, it’s the exact same content. |
# |
Jul 8th 2017, 19:30 |
admad |
@bordplate does tests boostrap look similar to this https://github.com/cakephp/app/blob/master/tests/bootstrap.php ? |
# |
Jul 8th 2017, 19:29 |
admad |
define the constant in your tests bootstrap |
# |
Jul 8th 2017, 19:10 |
slackebot |
/var/www/html/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestCase.php:371 /var/www/html/tests/TestCase/Controller/UsersControllerTest.php:20 ``` Anyone familiar with this? The constant is used in Cake libraries, so I can’t really change that code. |
# |
Jul 8th 2017, 19:10 |
bordplate |
I’m trying to add some simple unit tests to our webapp, but tests spit out this warning (error?): ``` Use of undefined constant TMP - assumed 'TMP' /var/www/html/vendor/cakephp/cakephp/src/Network/Session.php:143 /var/www/html/vendor/cakephp/cakephp/src/Network/Session.php:97 /var/www/html/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestCase.php:545 /var/www/html/vendor/cakephp/cakephp/src/TestSuite/IntegrationTestCase.php:452 |
# |
Jul 8th 2017, 16:47 |
spencdev |
Lol... just had to create an index for the columns in mysql. whoops. |
# |
Jul 8th 2017, 16:39 |
spencdev |
If I do inner joins, it always returns as record not found as either one associated table will be null, or the other one will be null |
# |
Jul 8th 2017, 16:32 |
spencdev |
My left joins are taking like 21000ms while inner joins 62ms... I'm trying to do two associations, either it can be associated with one table, or another table depending on a value in the 1st table. So I can't really do inner joins |
# |
Jul 8th 2017, 15:26 |
obinoob |
I've found it ;) thank you anyway |
# |
Jul 8th 2017, 15:08 |
obinoob |
I can't see an example in here https://book.cakephp.org/3.0/en/core-libraries/form.html#creating-html-with-formhelper |
# |
Jul 8th 2017, 15:07 |
obinoob |
any idea |
# |
Jul 8th 2017, 15:06 |
obinoob |
Hi I'm using a modeless form and everything works fine except for the errors that actually I can spot at _errors array index from debug kit I wonder how can I make them available in the view form? I would like to avoid pass the errors with the function set... |
# |
Jul 8th 2017, 12:32 |
dereuromark |
obinoop: you can try "dev-master as x.y" as concrete version |
# |
Jul 8th 2017, 11:33 |
admad |
"..but these conflict with your requirements or minimum-stability" errors tell you what the problem is |