hi I deployed a small php program to windows azure which works fine (it connects to sql azure and add/modify/delete rows) But now I want to try its blob service. I searched some samples and I found these: https://github.com/Interop-Bridges/Windows-Azure-Sample-Kit-4-PHP/tree/master/GuestBookUsingBlobs https://github.com/Interop-Bridges/...t-4-PHP/tree/master/GuestBookUsingBlobsTables I did the necessary modifications (add storage account and key) but after I deployed it into Azure I get "500 - Internal server error. There is a problem with the resource you are looking for, and it cannot be displayed". what should I do that the sample work correctly? Thanks!
hi! I tried with the following very simple code: <?php $blob = new Microsoft_WindowsAzure_Storage_Blob( 'blob.core.windows.net', 'storageaccountname', 'account_key' ); $blob->createContainerIfNotExists('kepek'); $blob->listBlobs('kepek'); ?> Code (markup): But I get the same error! Please help me what is wrong?