0

I am trying Iron Workers with Laravel 4. I managed to upload the code but it can't run it on the server because Laravel requires mcrypt extension. Does anyone know how can I install it on iron servers? I followed this tutorial but they don't say anything about this problem.

Thanks, Cezar

Cezar
  • 15
  • 3

1 Answers1

0

Cezar, you can try this package to integrate IronWorker to your Laravel app.

Dmitriy
  • 399
  • 2
  • 6
  • Thanks for the reply. I know about this package but unfortunately the same problem appears. I think I need to install php5-mcrypt package from iron but I didn't manage to find a way to install packages - http://dev.iron.io/worker/reference/environment/. – Cezar Sep 04 '14 at 14:12
  • I have just seen that the package is created by you, nice. How do you install mcrypt in your library because I didn't see anything in UploadWorker.php ? – Cezar Sep 04 '14 at 14:15
  • I discovered the problem. I configured the stack to be 5.5 but it seems that only 5.4 has mcrypt installed. Unfortunately our app actually needs php 5.5 in a couple of places. I believe your library is using 5.4 as well and this is why the problem didn't appear. – Cezar Sep 04 '14 at 14:34