Last post by jfaburto -
I been having the same problem, all entries on the field are correct. I had to disable the SSL for the user to get it to work. This might be fine for development, but like to know how to enable the SSL from the radphp side, so I don't expose any passwords. thanks
Last post by daninet -
Salve a tutti. Ho impostato un filtro in una pagina.. se controllo la query i valori di sono si carica il combo ma non si vedono i valori.
Hello everyone. I set a filter on a page.. if you check the query the values of are loads the combo but you don't see the values.
Last post by daninet -
Il trigger fa questo su after insert della tabella prenotazioni UPDATE postazioni SET postazioni.status='OCC' WHERE postazioni.id = new.postazione_id "
Last post by giulio -
Good morning, I'm inserting a custom sql query to create a drop-down menu in the form of an add page, but even though the query is correct, when I start the page it doesn't work, it seems like it doesn't recognize the $page_id variable.
The query without $page_id filter (works correctly and returns me all records):
"SELECT DISTINCT dr.id_distinta, dr.id_fase AS value, caf.codice AS label FROM line_list dr JOIN cfg_anagrafica_fasi caf ON dr.id_fase = caf.id"
The query with $page_id filter doesn't work:
"SELECT DISTINCT dr.id_distinta, dr.id_fase AS value, caf.codice AS label FROM line_list dr JOIN cfg_anagrafica_fasi caf ON dr.id_fase = caf.id WHERE dr.id_distinta = $page_id"