Spyc library not found - Drupal 7 web services

I am setting up a REST server with web services on Drupal 7. I am getting an error report:

Spyc library not found

I downloaded the library Spyc.php

(from https://github.com/mustangostang/spyc ) and loaded it into:

/ sites / all / modules / services / servers / rest_server / Library /

And also tried putting it in /servers/rest_server/lib/Spyc/

, but I still get the error.

+3


source to share


2 answers


The above answer seems outdated.



Loading spyc from above link and placing in sites / all / libraries / spyc will take care of this issue. No changes in capitalization are required.

+4


source


Service module documentation is inaccurate!

... Once downloaded, you need to add spyc.php to the rest_server / lib folder that exists in the location where you installed the services.



You just need to create a spyc folder containing spyc.php and place it on sites / all / libraries as you would expect with any external libraries.

+3


source







All Articles