Posts by lpFranz • 269 points
8 posts
-
2
votes4
answers2249
viewsA: Create Virtualhost on port 81
In this case you use the proxys, apache keeps getting the requests on port 80, and then it forwards to another host and port, so you don’t need to define directories in this type of vhost, apache…
-
3
votes1
answer103
viewsA: Doubt about past information on SOAP
These links, in this case are the name Spaces, indeed there is xmlns, that is to say, XML Name Space. The resource of Namespace is required in XML because it is a free and extensible language, in…
-
-1
votes1
answer76
viewsA: Cache - Update on my website
This is the standard behavior of browsers, aiming performance, as we know, I’ve gotten used to the ctrl+shift+r to clear the cache, but if you prefer and use Chrome, here’s a solution: Press F12…
-
1
votes1
answer47
viewsA: Alternative to the Codigniter table component
You can create your own library, including extending the native CI, just create a file application/libraries/MY_Table.php : defined('BASEPATH') OR exit('No direct script access allowed'); class…
-
0
votes1
answer46
viewsA: How to treat value and use for certain action in Codeigniter?
Hello, I don’t see the need to use two methods for that: public function login($email, $password) { $this->db->limit(1); $this->db->where('use_email', $email);…
-
2
votes1
answer76
viewsA: Add via app command line in "Login Applications"
Hello, one way to do this without using the UI, is to put the shortcut (with extension .desktop) of your software in the folder ~/.config/autostart/, everything inside this folder will run on UI…
-
1
votes1
answer150
viewsA: How to view data from three tables in a view?
I don’t know if I got it right, but this you solve with the models, making a select that makes the JOINS between the three tables, something like: SELECT * FROM Processo INNER JOIN Andamento ON…
-
1
votes1
answer280
viewsA: Foreach inside foreach is doubling PHP values?
Hello, hard to know why this occurs without seeing the structure of the tables, but a group by opcoes_anuncio.anuncio_id_anuncio can solve the problem. Besides, it seems your code isn’t right, it…