1
vote
1answer
102 views

Getting broken images from blob storage in Azure websites

My php code seems correct, (the part that talks to blob storage). //talk to blob storage, get links, based on file name $storageClient = ...
0
votes
0answers
128 views

Upload Images to Windows Azure Storage Using PHP SDK

I am trying to upload the image selected by the user to the Windows Azure Blob Storage. I have a form to allow the user to select the file: <input type="file" name="file_up" id="file_up" multiple ...
0
votes
1answer
82 views

Code Igniter: Resolve dependencies for Windows Azure Storage Tools

I am using windows azure blob storage for storing data that the users will upload to my website. My websites has been developed using the Code Igniter framework and as per the documentation for Blob ...
0
votes
1answer
130 views

Creating a container in blob storage Azure - PHP

I am following this tutorial, about manipulating blobs: http://www.windowsazure.com/en-us/develop/php/how-to-guides/blob-service/ It isn't clear on the following things: 1) How to set up a ...
0
votes
1answer
173 views

REST API in Windows Azure

I am trying to connect to Windows Azure REST API, but always get issue like this: The MAC signature found in the HTTP request '...' is not the same as any computed signature. I can't get correct ...
0
votes
1answer
87 views

Accessing Azure blob storage using Codeigniter

I am looking for a way to do this. Is it possible, if so how? Thanks
0
votes
1answer
200 views

Connect to azure-blob through azure-website with php

I have set up an windows azure website (php), and I want to connect to the azure storage (blob) environment. I walked through the How to use the Blob service from PHP tutorial, but that only mentions ...
0
votes
1answer
343 views

Connecting to Windows Azure Storage Blob with PHP

I am trying to upload files to Windows Azure with PHP. I installed it manually by downloading/extracting the .zip from github and copying the files to my server via ftp. I have been following the ...
1
vote
0answers
168 views

accssing blob storage by php

I am not a php developer and it is my first time working with php. I am assigned to a project to move it to Windows Azure. the application is php ( I think it is old php because there is no classes or ...
1
vote
1answer
94 views

PHP XDebug in distributed environment (cloud)

As far as I know, PHP profiling tool XDebug saves its results into files. However, it's difficult to deal with such files when the application runs in the cloud distributed environment. What's the ...
0
votes
1answer
270 views

Write text file to Blob in Azure using PHP

I'm trying to write a text file to the blob. I know i have to create a container and a blob. I need to write something like this: $text = 'some text'; $myFile = "file.txt"; $fh = fopen($myFile, 'w') ...
0
votes
2answers
389 views

Azure blob storage gives 500 internal error

I get 500 internal server error in Windows Azure (on localhost too) if I deploy a simple program which connects to Blob storage: <?php $blob = new Microsoft_WindowsAzure_Storage_Blob( ...
0
votes
2answers
157 views

Using PHP to PUT messages on an Azure Queue, and add content to Blob Storage

I was just given the task of PUTTING messages onto a Azure message queue with PHP. Given that I'm new to PHP (brand new) - does anyone know of any resources I can use to get rolling with this? I ...