setevoy
Forum Replies Created
-
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @tott.
Thanks – but no, they (we) had unfortunately too many issues with Azure (ClearDB, MySQL InApp, pure WebApps performance etc) and the current issue was just last one in this chain.
I suggested to move them from Azure WebApp to Linux Virtual machine (we already moved MySQL to dedicated VM instead of ClearDB and MySQL InApp), and we started work about this migration – but… π
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @tott, @ritteshpatel.
My apologies, but a customer will move an application to the own hosting solution instead of Azure, thus – current issue is not valuable anymore.
Thanks for the help.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP error@tott I made some changes – removed lines from the
web.configand created fileapplicationHost.xdtinstead with:<?xml version="1.0"?> <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> <system.webServer> <serverRuntime xdt:Transform="Remove" /> <serverRuntime xdt:Transform="Insert" maxRequestEntityAllowed="200000" /> <serverRuntime xdt:Transform="Insert" uploadReadAheadSize="200000" /> </system.webServer> </configuration>Unfortunately – still have no an approve to restart WebApp. Will post once will do it.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @tott.
Yeah, you are right about nested
system.webServer– moved to one:... </rewrite> <staticContent> <mimeMap fileExtension="woff" mimeType="application/font-woff" /> </staticContent> <serverRuntime uploadReadAheadSize="2147483647" /> </system.webServer>Will restart WebApp soon (need to get approve from a customer, as this is Prod). Will add UPD here then.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @tott.
I added next lines:
<system.webServer> <serverRuntime uploadReadAheadSize="2147483647" /> </system.webServer>To our
web.configfile, so now it’s looks like:<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="wordpress" patternSyntax="Wildcard"> <match url="*"/> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/> </conditions> <action type="Rewrite" url="index.php"/> </rule></rules> </rewrite> <staticContent> <mimeMap fileExtension="woff" mimeType="application/font-woff" /> </staticContent> </system.webServer> <system.webServer> <serverRuntime uploadReadAheadSize="2147483647" /> </system.webServer> </configuration>Unfortunately – still have the same error.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @tott.
Seems we (with Azure Support assist) found a way to change this value, I’ll try to make it on Monday and will let you know results, OK?
Thanks and have a nice weekend.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @ritteshpatel.
I had success with a 512kb file, but it fails with 1M and 4M data.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @tott. Here is information you asked for:
The values on Azure App should take the same default setting with IIS. As reference from https://www.iis.net/configreference/system.webserver/serverruntime
uploadReadAheadSize: The default value is 49152.
maxRequestEntityAllowed: The default value is 4294967295 (unlimited).Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @toot.
OK, got it.
I’ll check with our customer about an ability to disable the plugin. Guess – I could copy images directly to WebApp’s host. Will update topic today (and with uploadReadAheadSize/maxRequestEntityAllowed).
Thanks.
UPD
> ability to disable the plugin
Unfortunately – no, we can’t π- This reply was modified 9 years, 5 months ago by setevoy.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @tott. Thanks for replay.
I’ll ask Support about IIS parameters.
Regarding disabling plugin… I just not sure it’s a good idea on Production π
But what if I’ll create a new container or even account with data from current one – and will switch them in plugin’s settings?
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @ritteshpatel.
From phpinfo (and this is the default for all web app on Azure App), here is the values:
upload_max_filesize = 8MB post_max_size = 8MBForum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorIndeed! Sorry – I completely forgot to mention it.
Yes – 512k file with uploaded successfully (and this was told by developers when they came to with this issue).
And sure – this bind to the “Request Entity Too Large” error message.
P.S. I removed screenshot, please – say, if you still need it.
- This reply was modified 9 years, 5 months ago by setevoy.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorHi, @ritteshpatel.
Thanks for replay. I contacted Azure support team also, maybe they will assist (files permission on Win boxes or something similar).
> You said, itβs working fine on your stage site. Is your stage site also using IIS?
Yes – both applications running as Azure WebApps on Windows hosts with IIS.
Error is:
> load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,plupload,plupload-handlers&ver=4.6.1:24 POST http://domain.com/wp-admin/async-upload.php 413 (Request Entity Too Large)
(why I didn’t check it at first…)

(full screenshot here: https://rtfm.co.ua/uploads/huber_upload_4.png)
Hope this could help.
Forum: Plugins
In reply to: [Microsoft Azure Storage for WordPress] HTTP errorAnd yes – nothing helpful in IIS logs.
Forum: Themes and Templates
In reply to: [Iconic One] Pictures on main pageThanks, @themonic – that helps.