Posts by Alexander • 97 points
8 posts
-
0
votes1
answer24
viewsQ: URL not found in Cakephp
I’m using Cakephp’s Bake to facilitate development, I’ve analyzed the Models and Controllers it generated and they’re okay. Follow line of index method in one of the controllers. public function…
-
5
votes1
answer873
viewsQ: How to display dates set in datepicker only
I’m wearing a lib calling for Multidatespicker similar to the DatePicker of JqueryUI. Currently in the panel I can select the dates I want, works normally, but the same calendar is displayed for the…
-
2
votes1
answer75
viewsQ: Check that all items are equal
I am recovering from the database all expired tickets, with the following query SELECT user,status,hash FROM ticket WHERE datepay < date_add(now(), interval -1 month) AND user = '119' The result…
-
1
votes1
answer768
viewsQ: PHP require() giving error 500
I have a system developed recently in PHP7 on Windows, and, I decided to migrate to Debian9. At the moment everything works, but the autoload (psr-4) located in vendor is having problems when…
-
0
votes1
answer148
viewsA: Materialize Collapsible option does not work properly
In tests I performed, I realized that the statically added elements worked correctly, so I tried to add the command $('.collapsible').collapsible(); after insertion of the elements, by Javascript…
-
0
votes1
answer148
viewsQ: Materialize Collapsible option does not work properly
I am using the Materialize Framework to display a list. This list can be expanded, but only works after reloading the browser several times with CTRL + F5. When I load directly into the HTML, it…
-
-1
votes4
answers559
viewsA: Load url on same page
Just implementing what the above friend stressed. To be more complete, use javascript. Example. <form id="send"> <input type="text" name="login" /> <input type="text" name="number"…
-
0
votes3
answers31945
viewsA: How to put one div overlapping another using only relative position?
In that case you’ll need the div father and of div son. Goes below: <div class="x"> <div class="y"></div> </div> In css the code will look something like this: div.x{…