Posts by William Urbano • 81 points
15 posts
-
0
votes1
answer95
viewsA: I can’t reach my sub page by passing friendly url
There is an error after the filenames, instead of using&after.php, '?' should be used. After the first parameter, '.php' is used '&'. Below is the correction: RewriteEngine On RewriteRule…
-
1
votes1
answer169
viewsA: Test Web System on Smartphone
You need to access from your smartphone via the IP address of your computer on the local network. To find your computer’s IP address, open the Start menu and browse the menu Todos os programas >…
-
0
votes1
answer109
viewsA: Problem with Paging and forward with Zend Framework 1
Try sending your search form via GET instead of using POST because the data will remain in the URL when paginationControl uses the url helper to build the url of the other pages. In the case of…
-
0
votes1
answer40
viewsA: Zend Framework2 - Problems with Abstracthelper
Your plugin configuration is incorrect. Instead of instantiating your helper, set it as follows: <?php namespace Application; use Zend\ModuleManager\Feature\ViewHelperProviderInterface; class…
-
0
votes1
answer96
viewsA: Problem loading image of an entity
Use the Serverurl helper as in the example below: Defining form: use Zend\Form\Form; use Zend\ServiceManager\ServiceLocatorAwareTrait; use Zend\Form\Element\Text; use Zend\Form\Element\Image; class…
-
1
votes1
answer50
viewsA: Back Button with Searched Records
If you are developing with Zend Framework use the URL helper (according to your version of Zend Framework) to build a link with the element <a> Zend Framework 1 Zend Framework 2…
-
1
votes1
answer224
viewsA: How to merge into a file already minified with Grunt-contrib-uglify
Execute the task concat before the uglify. https://github.com/gruntjs/grunt-contrib-concat…
-
0
votes3
answers496
viewsA: List json object returned by php
Try using the following JSON structure: [{ "id": 1, "nome": "Lorem ipsum Culpa quis et", "img": "/images/img1.jpg" }, { "id": 2, "nome": "Lorem ipsum Laborum exercitation ea consequat ad", "img":…
-
1
votes1
answer433
viewsA: Open Popup (Bootstrap) by clicking on the checkbox
Good afternoon, @Randrade ! One solution would be for you to have one input[type="hidden"] related to each input[type="checkbox"] and work with the events that Popover offers. In this case, the…
-
0
votes1
answer153
viewsA: Include files with friendly URL
Try to use the pattern PSR-4 for autoload of classes.
-
0
votes3
answers88
viewsA: PHP and database
Use a VARCHAR and store only the physical file path on your server
-
0
votes5
answers23429
viewsA: Calling js function in another file - Dependency between Javascript scripts
Checks that the embed order of your script displays.js messaging and.js registration. Open the browser console (usually F12) and try to perform the desired function.
javascriptanswered William Urbano 81 -
0
votes2
answers702
viewsA: Update data File
Try to use the PDF Parser to convert PDF file to text.
-
0
votes4
answers7415
viewsA: Swap Selected of an option that is in copy script
Well, one way to keep your code cleaner would be by using the $.find method below: HTML <select id="opcoes"> <option value="0">Selecione</option> <option value="1">Lorem…
javascriptanswered William Urbano 81 -
1
votes4
answers7415
viewsA: Swap Selected of an option that is in copy script
HTML: <select id="opcoes"> <option>Selecione</option> <option>Lorem ipsum Cupidatat sunt exercitation fugiat Excepteur.</option> <option>Lorem ipsum Elit sint…
javascriptanswered William Urbano 81