Posts by Valdeir Pereira • 83 points
8 posts
-
0
votes1
answer305
viewsA: Authentication in the Laravel accessing routes protected by auth middleware
You have two routes pointed to a function in Logincontroller Route::post('/login/login',['uses'=>'Logincontroller@login'])->name('login');…
-
0
votes1
answer51
viewsA: Composer init, creates file in different directories
I thought what was going wrong, it was my comodo antivirus, the installation of activerecord was going to another folder called Vtroot, I switched from Antivirus.
commiserateanswered Valdeir Pereira 83 -
0
votes1
answer51
viewsQ: Composer init, creates file in different directories
I installed Composer, git, github on partition C:, I have Apache24 server and php7 innate on partition D:, I entered htdocs/SBFC folder my server site on command line and did an init Composer, it…
commiserateasked Valdeir Pereira 83 -
2
votes1
answer1055
viewsA: Search View in a Listview
Try it like this in the menu folder item_menu_search.xml <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item…
-
1
votes2
answers496
viewsA: Build Gradle Eterno
mine was so in my case, it was an error in xml file where I had a cardview went to File menu, Settings Build,Execution,Deployment> Build Tools> Gradle and enabled the option Offline work, gave…
-
0
votes1
answer218
viewsA: Sqlite data not available in Recyclerview
I managed to find the error was in the Bank Cliente cliente= new Cliente(); cliente.setCod_cli(cursorCliente.getString(cursorCliente.getColumnIndex("nom_cli"))); lista.add(cliente);// No lugar de…
-
1
votes1
answer218
viewsQ: Sqlite data not available in Recyclerview
I’m trying to list data in a Recyclerview, but in the 3 lines nothing appears and I don’t know what’s wrong, take a look at the image below: Adapter client.java import…
-
1
votes1
answer122
viewsQ: IF in Reply function POST does not work
have a POST inside a javascript function and this post returns a response function the problem and that the IF in the response function is not working <script> $(document).ready(function(){…