Where to download openssl extension?

|
svn9999 2019-07-29 09:10:50
Can not resolve it
svn9999 2019-07-29 09:11:20
laravel_discuss-10125.jpg

vasanthamohan 2019-07-29 09:38:06
laravel_discuss-10126.jpg
Hai all when I sent mail to gmail acc from gmail acc error occurred
vek866q 2019-07-29 09:41:56
vasanthamohan 2019-07-29 09:38:06
Hai all when I sent mail to gmail acc from gmail acc error occurred

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME=youraccount@gmail.com
MAIL_PASSWORD=yourgmailpass
MAIL_ENCRYPTION=ssl

vek866q 2019-07-29 09:43:11
vek866q 2019-07-29 09:41:56
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME=youraccount@gmail.com
MAIL_PASSWORD=yourgmailpass
MAIL_ENCRYPTION=ssl

set your .env as that, then navigate to your gmail security page all allow access from unsecured.Your account should not have 2factor enabled.

vasanthamohan 2019-07-29 09:43:52
vek866q 2019-07-29 09:41:56
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME=youraccount@gmail.com
MAIL_PASSWORD=yourgmailpass
MAIL_ENCRYPTION=ssl

This also return error

vek866q 2019-07-29 09:44:27
then the problem is in your php.ini file.
vasanthamohan 2019-07-29 09:44:35
vek866q 2019-07-29 09:43:11
set your .env as that, then navigate to your gmail security page all allow access from unsecured.Your account should not have 2factor enabled.

Yes that id already allowed for unsecured apps

vasanthamohan 2019-07-29 09:45:06
In core php I did that with the same 8d
vasanthamohan 2019-07-29 09:45:10
*id
vek866q 2019-07-29 09:45:44
i experience the same issue while doing an implementation. i fixed it on the php.ini, let me confirm the extensions i enabled/disabled
acrossoffwest 2019-07-29 09:45:54
svn9999 2019-07-29 09:11:20

Try use proxy, maybe it’s help

vasanthamohan 2019-07-29 09:47:04
vek866q 2019-07-29 09:45:44
i experience the same issue while doing an implementation. i fixed it on the php.ini, let me confirm the extensions i enabled/disabled

Ok I will check and send the photo

vek866q 2019-07-29 09:48:13
enable extension=openssl and comment ;extension=php_openssl.dll
vasanthamohan 2019-07-29 09:48:51
Ok let me try
vasanthamohan 2019-07-29 09:59:52
Openssl and php_openssl are differen?
vasanthamohan 2019-07-29 10:00:33
In php.ini file only php_openssl is available.
vasanthamohan 2019-07-29 10:00:52
Where to download openssl extension?
vasanthamohan 2019-07-29 10:01:23
I googled but there only about php_openssl
vek866q 2019-07-29 10:14:57
vasanthamohan 2019-07-29 10:00:33
In php.ini file only php_openssl is available.

search ‘ssl’ on your xampp/php/php.ini file, its by default commented

vasanthamohan 2019-07-29 10:20:19
Yes openssl is enabled
vek866q 2019-07-29 10:21:19
vasanthamohan 2019-07-29 10:20:19
Yes openssl is enabled

then comment php_openssl and restart your xampp

vasanthamohan 2019-07-29 10:26:18
vek866q 2019-07-29 10:21:19
then comment php_openssl and restart your xampp

Not working. What is openssl

vasanthamohan 2019-07-29 10:26:43
Openssl and php_openssl are same or not?
vek866q 2019-07-29 11:33:41
vasanthamohan 2019-07-29 10:26:43
Openssl and php_openssl are same or not?

they are different

vek866q 2019-07-29 11:36:57
vasanthamohan 2019-07-29 10:26:18
Not working. What is openssl

did your close your server? also clear your cache php artisan cache:clear php artisan config:cache then start your server

vasanthamohan 2019-07-29 12:09:50
vek866q 2019-07-29 11:33:41
they are different

Ohh ok

vasanthamohan 2019-07-29 12:21:31
vek866q 2019-07-29 11:36:57
did your close your server? also clear your cache php artisan cache:clear php artisan config:cache then start your server

Yes this working now.

vasanthamohan 2019-07-29 12:22:22
But, it shows cannot send message without sender’s address. But I add sender’s address
vasanthamohan 2019-07-29 12:56:12
Now working
vasanthamohan 2019-07-29 12:56:45
vek866q 2019-07-29 11:36:57
did your close your server? also clear your cache php artisan cache:clear php artisan config:cache then start your server

Thankyou 👍

vek866q 2019-07-29 14:07:14
welcome
oxbir 2019-07-29 14:13:25
I want to add 2 links in sweet alert. but I see this picture.

[![sweet alert][1]][1]

alert()->warning(“You must register now.<br>”, ‘OK’)->html()->persistent(“<a href=’http://magzrayaneh.com/register’ class=’btn btn-primary’>register</a><a href=’http://magzrayaneh.com/login’ class=’btn btn-primary’>login</a>”);

How to add login and register buttons in sweet alert.

[1]: https://i.stack.imgur.com/UkyJJ.jpg

GauravGohil 2019-07-29 19:01:38
hie
GauravGohil 2019-07-29 19:02:34
$(“.eb_template_wrapper”).on(“click”, “a”, function(event) {
event.preventDefault();
});
GauravGohil 2019-07-29 19:02:46
i am able to prevent when click on link
GauravGohil 2019-07-29 19:03:04
but when i click on img which is inside a link
GauravGohil 2019-07-29 19:03:07
it gets open
GauravGohil 2019-07-29 19:03:12
can anyone help
zack6849 2019-07-29 19:50:19
This is a laravel channel, not a jQuery channel
zack6849 2019-07-29 19:50:49
That being said, you may want to remove the second parameter in your on click so it’s on click in any eb_template_wrapper
zack6849 2019-07-29 19:51:19
I also don’t understand your goal, are you trying to make an anchor tag that isn’t clickable???
ransikoo 2019-07-30 06:35:34
i wnat pervent change url with id in address bar ?user can change id and recive other data without pass date in pervious page ? please help about this?
zack6849 2019-07-30 07:02:52
ransikoo 2019-07-30 06:35:34
i wnat pervent change url with id in address bar ?user can change id and recive other data without pass date in pervious page ? please help about this?

You can make sure the user has access to the resource somehow but I’m not sure I follow what you mean when you say pass the data from the previous page

ransikoo 2019-07-30 07:20:48
zack6849 2019-07-30 07:02:52
You can make sure the user has access to the resource somehow but I’m not sure I follow what you mean when you say pass the data from the previous page

There must be a solution

alexanderarda 2019-07-30 07:22:23
ransikoo 2019-07-30 06:35:34
i wnat pervent change url with id in address bar ?user can change id and recive other data without pass date in pervious page ? please help about this?

you should encrypt the data in address bar

ransikoo 2019-07-30 07:23:26
user acsess in this url .but i donot change url in address bar :http://localhost/product/17/delete and change id=18 and delete this or this url : http://localhost/product/17/edite
ransikoo 2019-07-30 07:23:55
alexanderarda 2019-07-30 07:22:23
you should encrypt the data in address bar

this soultion very bad in seo

zack6849 2019-07-30 07:27:57
You can’t prevent a user from changing the url lol
zack6849 2019-07-30 07:28:08
You could do some kind of one time key for the deletions
|