Karim Geiger

Results 46 comments of Karim Geiger

Hi there - just in case anyone is still searching: It's due to an update of the Swift language. You can change the language version in Xcode to use the...

Okay, interesting. It seems to still have worked. I clicked on the directory and then pressed "Update". It didn't tell me that anything changed or provide me with a new...

Hi @stevebauman, thanks for the response! Yes, I saw that method and was surprised, too. It seems like Laravel doesn't destroy the Facade instances after completing a job if the...

Yes, in Laravel 5.4 the daemon mode is default for the `queue:work` command. I think this causes the problem: > Daemon queue workers do not "reboot" the framework before processing...

Thank you for looking into it. Glad you can reproduce it. I'm pretty sure we'll find a solution to the problem eventually.

So, according to the [documentation](https://laravel.com/docs/5.4/queues#job-events), one can register events firing after a queued job is executed like this: ```php Queue::after(function (JobProcessed $event) { // ... }); ``` Maybe it's possible...

I now use the destructor of the job class to close the connection using the `close()` method. Before first use, I manually connect to the server using `Adldap::connect()` to make...

Hi @shakee93, first of all: Thanks for the hard work. I know how painful it can be to build a datasource like that. Nevertheless, as I'm trying to analyse smartphone...

A 500 error is a generic PHP error. You may want to increase the PHP log level or take a look at the error log to see the exact error...

Hi Tom, thanks for the question - I'm afraid this feature isn't currently available for SRL, although it would be great to have it! Regards Karim