richsage / RMSPushNotificationsBundle

NOT MAINTAINED! ⛔️ Push notifications/messages for mobile devices. Supports iOS, Android (C2DM, GCM), Blackberry and Windows Mobile (toast only). A Symfony2 bundle.
MIT License
321 stars 152 forks source link

Send method remains blocked with an AndroidMessage #65

Closed mangelsnc closed 7 years ago

mangelsnc commented 10 years ago

Hi!

I've got a little issue, when I'm trying to send a notification, the send call remains blocked and never finishes. I've got the right configuration, I checked this a couple of times. What is going on?

There's any way to monitoring what is happening? I know I can use xdebug, but I'm refering programmatically.

Kaz- commented 10 years ago

I just had the exact same probem, it was because php5-curl wasn't installed on my server. So ...

sudo apt-get install php5-curl

will probably solve your issue.

mangelsnc commented 10 years ago

Hi @Kaz- , thanks for your comment, but is not my case, I've got curl extension installed :(

mangelsnc commented 10 years ago

I resolved this setting the use_multi_curl flag to false in a Ubuntu Server 14.04. Is needed some extra library to use multi_curl?