My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Jan 08, 2009
    issue 21 (class.sqs.php contains an error for createQueue) changed by tylerhall   -   Thanks, Peter. Applied fix in r43.
    Status: Fixed
    Owner: tylerhall
    Labels: Type-Defect Releated-SQS
    Thanks, Peter. Applied fix in r43.
    Status: Fixed
    Owner: tylerhall
    Labels: Type-Defect Releated-SQS
  • Jan 08, 2009
    r43 (Fixing Issue #21) committed by tylerhall   -   Fixing Issue #21

Older

  • Dec 02, 2008
    issue 21 (class.sqs.php contains an error for createQueue) commented on by peter.vanderborght   -   When you're at it, please replace the return value of the "go" function by: return (isset($xml->Errors) || isset($xml->Error)) ? false : $xml; This will make it work for "single error" returns too.
    When you're at it, please replace the return value of the "go" function by: return (isset($xml->Errors) || isset($xml->Error)) ? false : $xml; This will make it work for "single error" returns too.
  • Dec 02, 2008
    issue 21 (class.sqs.php contains an error for createQueue) reported by peter.vanderborght   -   What steps will reproduce the problem? 1. Start from http://code.google.com/p/php- aws/source/browse/trunk/class.sqs.php?r=34 2. Call the method createQueue like you should What is the expected output? What do you see instead? I expect the Queue to be created and I expect to receive the Q URL. Instead I receive an empty string (while the Q is created) Please provide any additional information below. In fact the return XML from AWS doesn't match the implemented pattern. The correct return value of the createQueue function should in fact be: return strval($xml->CreateQueueResult->QueueUrl); Regards, Peter
    What steps will reproduce the problem? 1. Start from http://code.google.com/p/php- aws/source/browse/trunk/class.sqs.php?r=34 2. Call the method createQueue like you should What is the expected output? What do you see instead? I expect the Queue to be created and I expect to receive the Q URL. Instead I receive an empty string (while the Q is created) Please provide any additional information below. In fact the return XML from AWS doesn't match the implemented pattern. The correct return value of the createQueue function should in fact be: return strval($xml->CreateQueueResult->QueueUrl); Regards, Peter
  • Nov 17, 2008
    issue 17 (windows and userData support for EC2 class) changed by tylerhall   -   EC2 class needs to be rewritten to use PHP's native curl extension rather than the curl binary.
    Status: Accepted
    Labels: Type-Enhancement Priority-Low OpSys-Windows Type-Defect Priority-Medium
    EC2 class needs to be rewritten to use PHP's native curl extension rather than the curl binary.
    Status: Accepted
    Labels: Type-Enhancement Priority-Low OpSys-Windows Type-Defect Priority-Medium
  • Nov 17, 2008
    issue 16 (copy object) Status changed by tylerhall   -   Copying S3 objects in now supported in the latest revision of the S3 class. http://code.google.com/p/php-aws/source/browse/trunk/class.s3.php
    Status: Fixed
    Copying S3 objects in now supported in the latest revision of the S3 class. http://code.google.com/p/php-aws/source/browse/trunk/class.s3.php
    Status: Fixed
  • Nov 17, 2008
    issue 20 (S3 query string authentication support?) changed by tylerhall   -   Query string authentication has been implemented in the latest version of the S3 class. Give it a try and please report any bugs :) http://code.google.com/p/php-aws/source/browse/trunk/class.s3.php
    Status: Fixed
    Owner: tylerhall
    Labels: Type-Enhancement Priority-High Related-S3 Type-Defect Priority-Medium
    Query string authentication has been implemented in the latest version of the S3 class. Give it a try and please report any bugs :) http://code.google.com/p/php-aws/source/browse/trunk/class.s3.php
    Status: Fixed
    Owner: tylerhall
    Labels: Type-Enhancement Priority-High Related-S3 Type-Defect Priority-Medium
  • Nov 16, 2008
    r42 (Added getAuthenticatedURL() to allow browser access to priva...) committed by tylerhall   -   Added getAuthenticatedURL() to allow browser access to private S3 objects.
    Added getAuthenticatedURL() to allow browser access to private S3 objects.
  • Nov 15, 2008
    S3Class (Programmer's reference for class.s3.php (Simple Storage Serv...) Wiki page edited by tylerhall
  • Nov 15, 2008
    r40 (Committing new and improved S3 class. Removes curl command l...) committed by tylerhall   -   Committing new and improved S3 class. Removes curl command line dependancy and uses PHP's native curl extension as well. Copying S3 objects is now supported as well. Huzzah.
    Committing new and improved S3 class. Removes curl command line dependancy and uses PHP's native curl extension as well. Copying S3 objects is now supported as well. Huzzah.
  • Nov 15, 2008
    r39 (Deleting S3 example code that no longer applies.) committed by tylerhall   -   Deleting S3 example code that no longer applies.
    Deleting S3 example code that no longer applies.
  • Nov 15, 2008
    r38 (Now that the S3 class has been rewritten to use the native c...) committed by tylerhall   -   Now that the S3 class has been rewritten to use the native curl extension and PHP 5, I'm creating a branch of the "previous" code in case anyone wants to reference it.
    Now that the S3 class has been rewritten to use the native curl extension and PHP 5, I'm creating a branch of the "previous" code in case anyone wants to reference it.
  • Nov 15, 2008
    r37 (Removing Mechanical Turk class since no one uses it.) committed by tylerhall   -   Removing Mechanical Turk class since no one uses it.
    Removing Mechanical Turk class since no one uses it.
  • Nov 14, 2008
    issue 19 (getAuthLink returns bad signature) changed by tylerhall   -  
    Status: Fixed
    Owner: tylerhall
    Labels: Related-S3
    Status: Fixed
    Owner: tylerhall
    Labels: Related-S3
  • Nov 14, 2008
    r36 (http://code.google.com/p/php-aws/issues/detail?id=19) committed by tylerhall   -   http://code.google.com/p/php-aws/issues/detail?id=19
  • Nov 14, 2008
    issue 2 (Write initial documentation in project wiki) Status changed by tylerhall   -  
    Status: WontFix
    Status: WontFix
  • Nov 14, 2008
    issue 11 (Have Putobject use the returned Etag) changed by tylerhall   -   Well, it only took a year, but I finally got around to implementing this.
    Status: Fixed
    Owner: tylerhall
    Labels: Related-S3
    Well, it only took a year, but I finally got around to implementing this.
    Status: Fixed
    Owner: tylerhall
    Labels: Related-S3
  • Nov 14, 2008
    r35 (S3->putObject() confirms success based on returned etag rath...) committed by tylerhall   -   S3->putObject() confirms success based on returned etag rather than doing an extra getObjectInfo() call. http://code.google.com/p/php-aws/issues/detail?id=11
    S3->putObject() confirms success based on returned etag rather than doing an extra getObjectInfo() call. http://code.google.com/p/php-aws/issues/detail?id=11
  • Oct 03, 2008
    issue 20 (S3 query string authentication support?) reported by jonathan...@yahoo.com   -   S3 also offers query string authentication for semi-secure time limited access for non amazon aws user access. Basically the access signature gets tagged onto the url rather than being passed in the header. Is query string generation supported by php-aws? It would be great for publishing betas etc.
    S3 also offers query string authentication for semi-secure time limited access for non amazon aws user access. Basically the access signature gets tagged onto the url rather than being passed in the header. Is query string generation supported by php-aws? It would be great for publishing betas etc.
  • Aug 24, 2008
    r34 committed by tylerhall
  • Jul 28, 2008
    issue 19 (getAuthLink returns bad signature) reported by midian.va   -   anytime a signature is returned with a plus in it, the url fails as it needs to be url encoded. fixed code: if (strpos($object, "?torrent") !== FALSE) $authlink = "http://$bucket$object&AWSAccessKeyId= . $this->_key . "&Expires=" . $req['expires'] . "&Signature=" . urlencode($sig); else $authlink = "http://$bucket$object?AWSAccessKeyId= . $this->_key . "&Expires=" . $req['expires'] . "&Signature=" . urlencode($sig); if ($this->_debug) $this->outputDebug("AuthLink:",$authlink);
    anytime a signature is returned with a plus in it, the url fails as it needs to be url encoded. fixed code: if (strpos($object, "?torrent") !== FALSE) $authlink = "http://$bucket$object&AWSAccessKeyId= . $this->_key . "&Expires=" . $req['expires'] . "&Signature=" . urlencode($sig); else $authlink = "http://$bucket$object?AWSAccessKeyId= . $this->_key . "&Expires=" . $req['expires'] . "&Signature=" . urlencode($sig); if ($this->_debug) $this->outputDebug("AuthLink:",$authlink);
 
Hosted by Google Code