Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hi there,
When you’re uploading files to Azure Blob Storage using the SDK, you can specify the ContentType property to ensure that the blobs have the appropriate content type. If you don’t specify this property, Azure Blob Storage might default to using application/octet-stream as the content type.
So before uploading the file, find out what its content type is. For a PHP project, you should be able to use the finfo function to detect the MIME type of a file:
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$contentType = finfo_file($finfo, $filePath);
finfo_close($finfo);
And then when you upload the file to Azure Blob Storage, specify the content type:
$blobClient = BlobRestProxy::createBlobService($connectionString);
// Set blob options with content type
$blobOptions = new CreateBlockBlobOptions();
$blobOptions->setContentType($contentType);
// Upload the file
$blobClient->createBlockBlob($containerName, $blobName, fopen($filePath, 'r'), null, $blobOptions);
Hope that this helps! If this still does not work, feel free to share more details about your setup and I will try to advise you further!
Best,
Bobby