PHP in Azure cloud service -
Can anyone suggest that the ezoor cloud service requires configuration to run a simple php file.
I am able to see my simple php file in the Azur Web site, but I can see the same file in the Azure Cloud service.
Can someone give me some ideas?
When you say "I am able to see my simple php file in the Azure Web site, But I am not able to see the same file in the Azure cloud service. ", I believe that you mean that you can browse your PHP site in Windows Azure websites, but not configured as something With the Windows Azure service gone Cloudapp.net is not that so?
As you have asked for suggestions, here are some steps you can take to troubleshoot your problem:
-
PHP file ie universal name .cloudapp.net / phpinfo.php Does this file show errors not found, or does it give PHP error related to runtime? The reason for this is that before you deploy it, you have to put all the PHP files together in addition to the PHP runtime in your package. If you miss any important material, your site will not run. So you have to make sure that all the content specific to your app is in your package, which you have installed in Windows Azure Cloud service.
-
To verify that all the packages are in your package, you can rename cspkg to zip and then unzip it. After this, you can rename the cssx file to zip again and open to see whether all the contents are there or not.
-
You can enable RDP access in your Ezur VM and log in to check the stability
You also use this document for the Azure Cloud service:
Comments
Post a Comment