-
AuthorPosts
-
February 18, 2017 at 10:36 am #748803
Ever since I started with Enfold over a year ago every page load has error 404 Entypo-Fontello.woff
Currently wordpress 4.7.2 enfold 3.8 but to be clear this has been happening with every version of wordpress and enfold over a year with all plugins disabled or enabled. Google quality score is punishing the 1 to 2 second page load block. When icons are used on a page there is a 5 second latency before they render. The file exists and is FTP-able:
Hit http://www.hjbconsulting.co.uk to see the 404 request on http://www.hjbconsulting.co.uk/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff
CORS is enabled in IIS web.config
Its a deep link and I have another plugin formidableforms that has a wordpress path length problem with IIS – could this be similar issue ?
February 18, 2017 at 7:39 pm #748878Hi Hans!
Please update to the latest Enfold Version ( 3.8.5) and make sure that by no mistake, the fonts are uploaded properly.
Can you also show us what your htaccess has inside?Thanks a lot
Regards,
BasilisFebruary 18, 2017 at 8:58 pm #748890Theme Updates: No Updates available. You are running the latest version! (3.8)
File is still there on the physical path, see image uploaded HERE
404 error still happening
There is no htaccess, this is an IIS platform for which the web.config is:<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<!– BEGIN Browser caching –>
<staticContent>
<clientCache cacheControlMode=”UseMaxAge” cacheControlMaxAge=”1.00:00:00″ />
<mimeMap fileExtension=”.wpress” mimeType=”application/octet-stream” />
</staticContent>
<!– BEGIN CORS –>
<httpProtocol>
<customHeaders>
<add name=”Access-Control-Allow-Origin” value=”*” />
</customHeaders>
</httpProtocol>
<rewrite>
<rules>
<rule name=”WordPress: http://XXXXXXXXXXXX.azurewebsites.net” 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>
</system.webServer>
</configuration>February 18, 2017 at 10:04 pm #748895Hi!
Please take a look here
http://stackoverflow.com/questions/4015816/why-is-font-face-throwing-a-404-error-on-woff-filesit seems to be a solution for the issue and it is because of IISS and not Enfold.
For further assistance please do contact your hosting provider.hanks a lot
Best regards,
BasilisFebruary 18, 2017 at 11:45 pm #748913Hi as I am the hosting provider I have spoken to myself.
I appreciate the pointer, this has fixed the WOFF 404 on IIS added to the web.config structure:
<staticContent>
<remove fileExtension=”.woff” />
<mimeMap fileExtension=”.woff” mimeType=”application/font-woff” />
</staticContent>February 18, 2017 at 11:57 pm #748915Hey!
Well, happy we have solved it :)
Can you please also help us and rate Enfold at ThemeForest?
We would really appreciate if you do that for us.Thanks a lot
Regards,
Basilis -
AuthorPosts
- You must be logged in to reply to this topic.