Posts by Lorena • 535 points
19 posts
-
2
votes4
answers839
viewsQ: Retrieve data from the logged-in user to use as the sender of the email in Laravel
How can I make mail.php take the logged user data leaving the data of retemente dynamic. In the controller works, I can access the password of the logged in user. The problem is that in mail.php if…
-
2
votes2
answers694
viewsQ: Pick up the return from one function to another in the Laravel controller
I have two functions in the controller and need to pass the return of a function to the other and save in a variable, but is giving error. function that returns public function…
-
0
votes1
answer266
viewsQ: Clone inputs by changing the id of each cloned item
My code is not working, I need to clone All items that are inside the origin div and change the id of each item. I’ve tried several ways but I haven’t been able to solve the problem. Would anyone…
-
1
votes1
answer148
viewsQ: Break lines in a text that comes from the database in a single variable
I’m having difficulty inserting line breaks in the text that comes as a response from a select in the database through an ajax request. $('select[name=tipo]').change(function() { var value =…
-
1
votes2
answers527
viewsQ: Fill in input according to other input response
Good afternoon, I have the following code in my locker: <div class="form-group col-sm-6"> <label class="control-label">{{ trans('app.select_client')}} <span…
-
2
votes2
answers1102
viewsQ: Change part color of a string
I need to do a query in Mysql and change the cvor of a piece of text if a specific string is contained in the text. For example: My tah td returns a text <td id="conteudo"…
-
0
votes1
answer129
viewsA: How to set up Laravel Sending Driver with Dynamic Sender
Hello, I am able to send the email right, the only problem is that in addition to these settings that you mentioned, which are already done, it is still necessary to do the configuration in the file…
-
0
votes1
answer129
viewsQ: How to set up Laravel Sending Driver with Dynamic Sender
MAIL_DRIVER=smtp MAIL_HOST=smtp.gmail.com MAIL_PORT=587 [email protected] MAIL_PASSWORD=Senha123 MAIL_ENCRYPTION=tls How to leave [email protected] and MAIL_PASSWORD=Senha123…
-
1
votes1
answer147
viewsQ: How to maintain the sender email signature when using the Mail::send() function in the Standard?
I can send the email correctly but, the email goes unsigned from the sender email, and I’m not finding how to resolve. $emails = ['[email protected]', '[email protected]']; $copias =…
-
0
votes0
answers438
viewsQ: To display a mysql BLOB type field on the html page
I have searched several times but could not find a solution, I need to display an image that was saved as BLOB in the database. Part of the code that saves to the database and displays the data…
-
2
votes1
answer1065
viewsQ: How do I store various values in each "option" of a "select"?
I have a option and two inputs to feed according to the result of select. In the select the user is chosen and in both inputs the address and email of the selected user are entered. I wonder if it…
-
0
votes0
answers1332
viewsQ: Invalid DLL Error - System.Badimageformatexception
I searched and found that the Badimageformatexception exception is launched when the file image of a DLL or executable program is not valid. How to solve? Error log: Erro de Servidor no Aplicativo…
-
1
votes1
answer301
viewsQ: Allow unmanaged DLL’s in IIS
How to set up IIS in windows 10 to allow unmanaged DLL?
-
17
votes3
answers66689
viewsQ: How do I activate IIS in windows 10?
I’m trying to install the IIS in windows 10, the installation does not complete and shows no error. Someone’s been through it?…
-
0
votes0
answers546
views -
1
votes1
answer113
viewsQ: Convert a winform to webform
I have an application in a winForms I need to turn this project into a webform for web application, I am looking to know if it is possible and there is some way to do this.
-
3
votes3
answers121
viewsQ: using of the unnecessary visual studio
Does anyone know why it gets like this? It shows that using is not being used, but I do not understand why it is not recognized if I am using in the function below. Resolution: using System; using…
-
1
votes2
answers560
viewsQ: Windows form integration with html page
I have an application that is a Windows Forms that I need to integrate into an HTML page of my web application In case it causes Windows Form to stay there fixed as if the two were one thing. This…
-
2
votes1
answer1080
viewsQ: Open executable by web application
I have a code that opens an external software my application. <script> function run(file) { var ws; ws = new ActiveXObject("WScript.Shell"); ws.run(file); } </script> Only that external…