Friday 18 February 2011

playlist

Search now working on title and artist...


Looking at using amazon simple db

Nice set of examples
I was  getting error:

Warning:  SimpleDB::putAttributes(): 60 error setting certificate verify locations:
  CAfile: /usr/share/curl/curl-ca-bundle.crt
  CApath: none
 in /c/website/playlists-0.5/login/sdb.php on line 838

The solution is to turn off verify
// create connection
 $sdb = new SimpleDB(awsAccessKey, awsSecretKey);  
 // apb for readynas
 $sdb->enableVerifyHost(false);
 $sdb->enableVerifyPeer(false);



No comments:

Post a Comment