Posts by Keoma Borges • 201 points
6 posts
-
4
votes0
answers74
viewsQ: What would be the best practice, within the MVC standard, to process the data?
An example (I usually use Cakephp, but the question would be for any framework and language): to save date type fields in the finger bank I have to transform a format field dd/mm/yyyy in yyyy-mm-dd.…
mvcasked Keoma Borges 201 -
1
votes0
answers91
viewsQ: SQL Server: error 7303 (Architecture Mismatch)
I’ve done a lot of research, but I haven’t found a solution for my case yet. I need to create a Linked server for an Access database (mdb file). Use SQL Server 2012 Express x64 in Windows 8.1 x64. I…
-
2
votes1
answer256
viewsA: Fatal error: Class 'mikehaertl wkhtmlto PDF' not found
I found out. I have to give the command composer require mikehaertl/phpwkhtmltopdf inside my project folder and add the line require '/vendor/autoload.php';before calling the class.…
-
1
votes1
answer256
viewsQ: Fatal error: Class 'mikehaertl wkhtmlto PDF' not found
I’m not very familiar with Composer and need to use the library phpwkhtmltopdf. I use Windows 8.1. I did the installation by normal setup, and it seems that it is working normally: I did the…
-
0
votes2
answers1347
viewsA: Call to a Member Function find() on a non-object
I found the problem. In Congregacaoscontroller.php, line 58, it looks like this: $regionals = $this->Congregacao->Regional->find('list'); So I consulted my model Congregacao.php, and there…
-
2
votes2
answers1347
viewsQ: Call to a Member Function find() on a non-object
I’ve been racking my brain here for a while and I still don’t understand the mistake. I’m learning about Cakephp. I did the Regionals table MVC manually, and for the others, I used the Bake. The…