vletoux
Forum Replies Created
-
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] Garbled htmlIt happened to me too at the beginning.
Root cause: lib curl missing and a web server with zip compression enabledRenaming the index.html to index.html.zip allowed me to browse the html
Forum: Plugins
In reply to: [WP Content Security Plugin] Wrong log url when installed on a subfolderThanks for the update
Also the “test” button indicates the “WordPress Address” and not the “Site Address”Forum: Themes and Templates
In reply to: [AccessPress Lite] file bgheader.jpg is 168kBNo, 168kB is 10% of 1.44 MB …
This size is directly pointed by google page speed as a performance problem.
I’ve manually optimized the size myself, but an upgrade in the theme file will solve the problem on all users on this theme.regards,
VincentForum: Plugins
In reply to: [WP e-Commerce Shop Styling] Interaction with "Amazon SES DKIM Mailer"ok, it was a problem with the MTA which was forcing quoted-printable mail encoding.
no problem with the shop styling plugin.
v
Forum: Plugins
In reply to: [WP e-Commerce Shop Styling] Interaction with "Amazon SES DKIM Mailer"ok, any special caracter which get encoded corrupte the signature.
<html><head>
</head>
<body>
{#mailcontent#}
</body>
</html>
=> OK<html><head>
<style=”text/css”></style>
</head>
<body>
{#mailcontent#}
</body>
</html>
=> Not OK (the ” in <style is encoded to 3D”)Maybe some html escaping is missing in the code.
(the mail gateway escape the html. That changes the content and as a consequence, the signature become invalid)