Implementing Pusher with exeoutput

anand_aks

New member
I am currently using Exeoutput 2021. I have installed pusher and verified all its working in local installation. But when I added all the files and run the application it is showing the error "Class Pusher\Pusher not found."

I made sure that all the require files are present in the vendor folder and vendor folder is situating out side the exe. Is there any things I need to do to make Pusher working in Exeoutput
 
The error "Class Pusher\Pusher not found" typically indicates that the autoload file from Composer (usually vendor/autoload.php) is not being correctly included or accessible within your ExeOutput application.

An application in ExeOutput has the "Data" subfolder as root for your web app. So you should place the "vendor" directory into the "Data" subfolder.

The best way is to use the "Properties" option in ExeOutput, like we did for Laravel:

1752618556735.webp
Thus, ExeOutput manages to mirror your vendor directory into the correct place (Data subfolder).
 
Back
Top