Customized theme visible local but not on the server

1
We have created a theme. This theme does work great when you deploy it locally. But when i make an deployment archive and i upload it to the server the theming isn't visible. In de index.html staat het volgende: <head> <title>Daywize</title> <meta http-equiv="expires" content="0" /> <meta http-equiv="pragma" content="no-cache" /> <script type="text/javascript" src="mxclientsystem/dojo/dojo.js" djConfig=" usePlainJson: true, rtlRedirect: 'index-rtl.html' "> </script> <link type="text/css" rel="stylesheet" href="mxclientsystem/mendix/ui/mendix.css" media="screen"/> <link type="text/css" rel="stylesheet" href="ui/theme-default/layout.css" media="screen"/> <link type="text/css" rel="stylesheet" href="ui/theme-daywize-dark/custom.css" media="screen"/> In de login html: <html> <head> <title>Daywize Login</title> <meta name="robots" content="noindex, nofollow"> <script type="text/javascript" src="ui/js/login_i18n.js"></script> <script type="text/javascript" src="ui/js/login.js"></script> <script type="text/javascript"> window.mxconfig = { xasBase : '/xas/' } </script> <style type="text/css"> @import "ui/yui/reset-fonts.css"; @import "ui/theme-daywize-dark/login.css"; </style> <!--[if IE 6]>
asked
2 answers
4

Did you include the Gzip?

Take a look at this question:

Theme with Mendix 2.5.1.1 & Gzip

answered
2

You have to create gzip files for all html and css files. You can easily create gzipped files of your source files with 7zip

answered