I cannot seem to figure out why my event observer works from my machine (and another coworkers) but not from other machines in the office.
For example, I have an observer that listens for the event:
controller_action_postdispatch_adminhtml_process_reindexProcess
My code detects the event and runs some code. When I run the re-index process, my code executes. When certain other machines here in the office run the re-index, either the event is not fired, or my observer isn't detecting it.
Why would the computer or the user clicking on the re-index button in the admin panel change anything for how events are fired or observed?
I have researched this problem as best I could and found this post.
Events not firing/or observer not working in magento
But that seemed to pertain to different installations. In my problem, it works on a given installation on certain computers and not from others so I felt that this article was not directly relevant.
This problem is driving me crazy. Any help would be greatly appreciated.