Hello @varhal,
Thanks for reaching out to us, HTTP 500 is server error . if you have scheduled too many imports or Facebook page having too many events and your server is not capable to handle that much load it can give this error. Try to check with hosting provider about issue.
can you please increase wp memory limit. you can increase memory limit to around 512 M.
You can check how to increase WordPress memory at here. http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
Let us know if any query we will be happy to help.
Thanks
Thread Starter
varhal
(@varhal)
Thanks for the answer.
We have increased the memory limit. The problem here is that the plugin should import the event once, and it imports and creates more than 50 events of the same type.
Hello (@varhal),
We resolved this bug in our next plugin version for now could you change in class-import-facebook-events-facebook.php file which is located to plugin path \plugins\import-facebook-events\includes\class-import-facebook-events-facebook.php
Please change in to file class-import-facebook-events-facebook.php on line no 287 which is $facebook_id = (int)$facebook_event->id; please remove (int) from that line.
so it will become $facebook_id = $facebook_event->id;
and line 304 which is $et_temp[‘ID’] = (int)$event_time->id; so it will become
$et_temp[‘ID’] = $event_time->id;then it’s working fine.
Thanks