1
I’m doing a massive upload of files to a photo server.
It happens that until sending all the photos, the user ends up waiting a long time. Then they gave me the tip to search about queue or Queue. In this way, the user could leave the uploads page and do other things on the system, while behind PHP would send.
In Codeigniter, I found nothing about it. Does anyone know how to do via PHP or Codeigniter a task queue?
I know how to work that upload without bothering the user or giving refresh page. But if you want to change page while doing the upload (is what it looks like), so I think you and I will have to research further. The problem is that even in asynchronous requests, you will need the
JavaScript
and of form memory-laden (browser), and changing page doesn’t seem like a good idea because the whole business recharges. I’ve seen things like server side upload in php, and I believe it is possible, because ofCGI
, but I’ve never ventured. As I said, it depends on (a lot) research.– ShutUpMagda