Azure Web App
2 TopicsExtract zip file on azure web app
I am using below YAML script to deploy my artifact on azure web app, it works fine but it doesn't unzip the file on azure web app, it just deploy zip file and my web app doesn't run coz of zip file I search entire world but not able to get any +ve answer, now i am requesting you to please help me. - stage: Deploy displayName: Deploy stage dependsOn: Build condition: succeeded() jobs: - deployment: Deploy displayName: Deploy environment: 'development' pool: vmImage: $(vmRunTimeImageName) strategy: runOnce: deploy: steps: - task: AzureWebApp@1 inputs: azureSubscription: '$(azureSubscription)' appType: 'webAppLinux' appName: '$(webAppName)' package: '$(Pipeline.Workspace)/artifact/$(artifactFile)' deploymentMethod: 'auto'7.8KViews0likes3CommentsInstall PHPMailer in Azure Web App
I want to install PHPMailer (https://github.com/PHPMailer/PHPMailer) in Azure Web App in order to send message to my SMTP server from my php app uploaded to Azure Web App. All emails will be sent to single SMTP host. Is it possible to install PHPMailer to Azure Web App?7.4KViews0likes2Comments