Posts by Aron Brivio • 185 points
13 posts
-
0
votes0
answers64
viewsQ: Laravel Horizon | Call to Undefined method Laravel Horizon Redisqueue::enqueueUsing()
All steps in the Laravel documentation have been followed and reviewed. After all configured, when trying to create a job the following error is logged: local.ERROR: Call to undefined method…
-
0
votes0
answers47
viewsQ: Apply rates according to the number of books sold
I have the following problem: A publisher pays x% to the author and it has several levels. If the author sells up to 1000unid books he receives 10% of the sale. Between 1000unid and 5000unid…
-
1
votes0
answers72
viewsQ: Laravel 5.3 Route does not accept parameters other than "/"
Good morning. I’m new to Standard and installed 5.3 with php 5.6. When I started defining the routes I came across the situation of that method Route::get() in the first argument only accepts "/".…
-
0
votes0
answers114
viewsQ: value of the deletion input on click
I have this code in javascript which I pass values to inputs. When I use this code it inserts the data into input usually but when I do one click after passing the values the input automatically…
-
1
votes0
answers46
viewsQ: Problem with header
I had this code running on my PC’s localhost but when I put it on the server it no longer runs. When I call the function verificaLoginAdmin() he always returns: Warning: Cannot Modify header…
-
0
votes1
answer803
viewsQ: Phpmailer Internal Server error
It had this function running on the localhost perfectly, and in all tests it sent the emails correctly but after I put it on my server it no longer sends the emails and gives the error "500 Internal…
-
4
votes2
answers213
viewsQ: How to get value from a checkbox
When I submit the form input does not return the value of checkbox and says that the $_POST['newsconf'] there is no. HTML <input type="checkbox" id="newsconf" name="newsconf" value="1"/>…
-
3
votes2
answers698
viewsQ: How to encode a number in PHP
I would like to know how to show a coded number to the user. I have several lines in my tables and wanted to encode (only on the user side) the ID’s. I went looking for functions for this but only…
-
0
votes3
answers1773
viewsA: How to bypass an accent in mysql + Php
https://stackoverflow.com/questions/3304464/mysql-diacritic-insensitive-search-spanish-accents/3304596#3304596 Based on this question I found an answer that talks about the SELECT…
-
3
votes3
answers1773
viewsQ: How to bypass an accent in mysql + Php
I have in my database words with accents and when I want to call I use this SQL below. But if a word in the database has accent I need to also use the word accented in my search, otherwise nothing…
-
0
votes1
answer76
viewsQ: Session is recreated automatically, with a field inside
I have a Session class where every time I urge her she automatically starts the session. When in another file I do I destroy the session through a method called doLogout I see that it automatically…
-
4
votes1
answer67
viewsQ: How to use the PDO class in this situation
I am using the PDO class to connect the database but in this particular situation I do not know how to use the PDO because in the mysql_fetch parameter I need to put a variable and so I searched…
-
0
votes2
answers1317
viewsQ: How to get info from one column of the database via the GET method I receive from another page.
I’m new to php and database. I would like to know how to search in the database the "name", "password" "email" through the id I receive via _GET from the previous page and display on the page I am…