Posts by user67223 • 85 points
10 posts
-
1
votes2
answers18
viewsQ: How to fix redirecting to subdomains that are on different servers?
I am working on an Arabic api that when they access the url of the api by the browser the user is redirected to the front-end. the problem is that the url of fron-end is concatenated with the url of…
-
0
votes1
answer105
views -
0
votes0
answers513
viewsQ: How do I enable access from external hosts to the webserver contained in a container of my Docker host?
I created a php site with Laravel and in order not to have to install the Windows development environment on my pc I used the laradock to test my project. Now I want to access my site from an…
-
0
votes1
answer48
viewsA: Which directory do I put the files from my website to be accessed through the web server running in a Docker container?
The answer in the present case is /home/Dockerfolder.
-
0
votes1
answer48
viewsQ: Which directory do I put the files from my website to be accessed through the web server running in a Docker container?
I created a Docker container using Docker-Compose The archive Docker-Compose.yml is in the directory /home//Dockerfolder. The file is configured as follows: #### # ATENTION: # Replace all occurences…
-
0
votes1
answer109
viewsQ: Null Object Reference when listing data with Firebaserecycleradapter
I’m trying to popular a Recyclerview with the Firebaserecycleradapter. When the onBindViewHolder method is called to popular the layout through the Viewholder class, the error is triggered:…
-
0
votes2
answers397
viewsA: How do I search with Query Builder in Laravel?
To display the doctor’s name in the view you will need to access the data in the following way: {{$laudo->paciente["medico"]["nome"]}} Data is stored in an array.…
-
4
votes2
answers397
viewsQ: How do I search with Query Builder in Laravel?
I need to display the name of the doctor who requested a patient report, however, with Laravel I tried to show this information on View thus: {{laudo->paciente->medico->nome}} Then I…
-
0
votes1
answer709
viewsQ: How to add an image stored in firebase Torage to imageView inside an infowindow of a Marketer?
I need to download a firebase image and display it in a custom infowindow on a map. public class MapaFocosActivity extends AppCompatActivity implements…
-
2
votes1
answer377
viewsQ: How to access data from a dynamic imput of a form with Django?
I am participating in a project in which we are using Django. I created a form with two initial fields and can add more dynamically using javascript. <div class="form-group"> <div…