I’m migrating an app from 1.7 to 3.9 and I’ve got most things up and running just fine. The more difficult aspects I’m turning to vendors like FOC’s Search to implement but I’m missing some of the basics that are more a translation from 1.7 to 3.9 than the plugin.
I’ve followed the instructions from FOC’s Search: https://github.com/FriendsOfCake/search/tree/cake3
I ran this to get the right version for 3.9 and it installed correctly into my Vendors folder
php composer.phar require friendsofcake/search “5.3.2”
I ran this to get the plugin added to my application.php file
bin/cake plugin load Search
I then uploaded the application.php and vendor folder via FTP (yes I know I need to break that habit and move to git but one thing at a time).
When I try to run this I get:
Search.SearchBehavior could not be found.
Make sure your plugin Search is in the /home/xxxxxx/xxxxxx.com/plugins/ directory and was loaded.
I’m sure that its something simple that I’m missing to get it to look in the Vendors folder as all of those are in there properly? Or am I supposed to copy those over to the Plugins folder?