Posts by Ríder Cantuária • 121 points
11 posts
-
0
votes1
answer8
viewsA: With large upload, zend2 does not receive post
Have you seen your phpinfo(), see these items: memory_limit, upload_max_filesize, post_max_size. Your answer will be there. Success! Grateful Ríder Canterbury 47 9 9168-8318…
-
0
votes1
answer68
viewsA: Zend 2 "getServiceLocator" was not found
Where do you call getServiceLocator? (Controller, Service, Module, Event). Depending on your answer I can help you faster, if you can send an excerpt of the code, another important question is which…
-
0
votes2
answers56
viewsA: Delay in loading some records
Well we have a problem a little difficult to be traced, it may be several reasons, but let’s start from below. I request that you lower the Zendserver which has its 30-day version, for full analysis…
-
1
votes1
answer756
viewsQ: How does the MVC+ Service layer architecture work?
I’m trying to find some documentation for this, if anyone has a book that addresses the subject please inform.
-
0
votes1
answer73
viewsA: Variables returning trying to get Object of non Object
To find out the error you need to check if the parameter arrives correctly, with: var_dump($_POST); before the foreach, if the vacancy comes it means that you are passing the variable correctly. Or…
phpanswered Ríder Cantuária 121 -
5
votes3
answers114
viewsA: "content: attr" does not validate in W3C
I’m gonna go out on a limb and say there’s a mistake in Validator, for the documentations (W3C, CDN Mozila, CND Mozila, W3schools), give extensive examples of how to use the attr in content, and…
-
0
votes1
answer69
viewsA: Group content per month and day
To do what you want in yours Database: Select agenda.id, u.nome as nome_pessoa, agenda.hora, agenda.compromisso, agenda.local, agenda.pessoa_id, agenda.data, DAYNAME(NOW()) AS dia, year(NOW()) AS…
-
1
votes2
answers3080
viewsA: How to create an object and methods in PHP
In PHP that’s called lambda_style or Anonymous Function, to make the implementation easier create a Auxiliary Class (Dinamicmethod), now just have fun :) and test. Don’t try it right in class…
phpanswered Ríder Cantuária 121 -
1
votes3
answers2716
viewsA: How to add attributes to an element that was created with Javascript?
I wrote something for you to analyze, to manipulate elements created dynamically use the function ON of Jquery (see documentation) <html> <head> <style> .verde { background:#0f0…
-
0
votes1
answer1062
viewsA: Manage Session as an array
Yes, the $_SESSION is a variable SUPERGLOBAL and allows you to add multimensional arrays. <?php #inicia a sessão session_start(); #atribui as sessões $_SESSION['aula']['video'] = $video;…
-
1
votes1
answer756
viewsA: How does Flash Messages work on ZF 2?
The Flashmessenger Plugin, sends your message to a waiting pool (through the Flashmessenger Plugin MVC of Zend) which will be displayed in another page request (through Viewhelper Flashmessenger).…