Telerik CDN for HTTPS protocol in Sitefinity MVC website
The telerik web.ui.resource.axd is almot 3.5 mb and was taking too much time to load. My site's pages are built using MVC controllers & views & therefore I have no
RadScriptManager that I know of in my application pages. After doing a ctrl+shift+f of RadScriptManager I could only find one tag in Sitefinity>Prototype>.??. directory
which I think is not being used and is just a template by Sitefinity (Correct me if I am wrong).
The only option of me enabling CDN for this telerik.web.ui.resource.axd was to enable it from project's web.config.
My web.config had the following tag for appSettings :
<
appSettings
file
=
"App.config"
>
</
appSettings
>
<
appSettings
file
=
"App.config"
>
<
add
key
=
"Telerik.ScriptManager.TelerikCdn.BaseUrl"
value
=
"https://d2i2wahzwrm1n5.cloudfront.net"
/>
<
add
key
=
"Telerik.ScriptManager.TelerikCdn.BaseSecureUrl"
value
=
"https://d2i2wahzwrm1n5.cloudfront.net"
/>
</
appSettings
>
Any one?
Hi Zepp,
The issue seem related to that KB article:
http://www.sitefinity.com/developer-network/knowledge-base/details/increased-load-times-because-of-kendoui-javascript
You can also try to change the cdn reference to 'https' under Advanced settings » Pages » Script Manager » Script References for the library you need, e.g. Kendo All.
Regards,
Svetoslav Manchev
Telerik
Thanks Svetoslav Manchev. I was able to change the CDN links to https protocol by clicking on Jquery & Kendo libraries from the left hand pane of Advanced Settings > Pages > Script Manager.
Thanks. Can we cache them for future calls also. So that the browser loads them from cache if its already loaded once to improve the performance a bit more?