what does the error message 'Operation now in progress' mean?

Benubird picture Benubird · Jun 2, 2011 · Viewed 11.6k times · Source

When trying to open a file using this command:

$fd = fopen('majestic_files/majestic_record.txt','w');

I get the following error message:

<b>Warning</b>:  fopen(majestic_files/majestic_record.txt) [<a href='function.fopen'>function.fopen</a>]: failed to open stream: Operation now in progress in

What does it mean, and how do I fix it?

Answer

Lupinity Labs picture Lupinity Labs · Dec 15, 2016

Not directly related to the question of the OP, but if you are getting this error using the Laravel framework, chances are that the autoloader can't find one of the classes. For example this tends to happen if you move a class to a different directory without dumping the autoloader.

To fix this, try composer dumpautoload.