Franck160
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoptimize] coming up; 1.8Hi Frank,
tested & … Approved ??
Tested with Optimize (html, js, css) & “Inlining all CSS” selected or not (*).
Host: Windows – Wamp: Apache 2.2.21 – SQL 5.5.16 – php 5.3.13.
Browsers: FF, IE, Chrome(*) Bye the way, when “Inlining all CSS” is selected, the css style.css of the parent theme is downloaded… Is that normal? (I’m obviously using a child theme of twenty thirteen theme).
NB: French translation is good ??
Best regards
Forum: Plugins
In reply to: [Really Static] Doesn't export sites with custom taxonomiesThat would be nice ??
Forum: Plugins
In reply to: [The Events Calendar] IllogicalThanks ??
Forum: Plugins
In reply to: [The Events Calendar] Category / sub category / etcHi Barry,
Sorry for the delay – we normally only scan this forum once a week and there was an extended gap over the festive period.
No problem, I just wanted this to be still up to date ?? Hope you all have happy Christmas ??
Exposing the information you want (showing parent categories etc) in the way you want might require a little tweak here and there, however.
Yes, “little” tweak here and there… ??
But OK, you answered. Sub-cat give no advantage today & as is.
Forum: Plugins
In reply to: [Floating Social Bar] Adding Post Comments to Social BarHere is a proposal (but no options):
class-floating-social-bar.php, line 893// Add in the services. $output .= $services; // add comments $myval = '<a href="' . get_permalink() . '#comments" >' . get_comments_number() .'</a>'; $output .= '<div class="sharerbubble">'. $myval . '</div>'; // end add comments // Close up the outer social bar container. $output .= '</div>';
and something like that in css:
/* ** Floating Social Bar */ .fsb-social-bar .sharerbubble { background: url("images/singlebubble.png") no-repeat scroll 10px 0 rgba(0, 0, 0, 0); float: left; height: 25px; line-height: 18px; margin: 7px 0 0; min-width: 25px; vertical-align: top; border-left: 2px solid #DBDBDB; } .fsb-social-bar .sharerbubble a { color: #2D2520; font-family: 'Lora',Arial,Helvetica,san-serif !important; font-size: 14px !important; padding: 0 0 0 40px; }
Happy web ??
Forum: Plugins
In reply to: [Floating Social Bar] Adding Post Comments to Social Bar+1 ?? Or even better, would be nice to add the feature directly into the bar ??
Apart from that, nice pluging!
Forum: Plugins
In reply to: [The Events Calendar] IllogicalSame here. Confirmed? Take into account?
Forum: Plugins
In reply to: [The Events Calendar] reverse chronological order: reloadedHappy new year:)
Is that confirmed? Take into account at all?
Thanks!
Forum: Plugins
In reply to: [The Events Calendar] Category / sub category / etcPing?
Forum: Plugins
In reply to: [Autoptimize] coming up; 1.8Same here even if I desable the “Inlining all CSS” option (not sure if it’s overall good or not, appart from validators;) i.e, css reloaded each time versus cached…)
Forum: Plugins
In reply to: [Generate Cache] [function.unlink]Reenable the plugin, and problem desappear… Closed? ??
Forum: Plugins
In reply to: [Autoptimize] Connection reset – legacy filter requiredForum: Plugins
In reply to: [Autoptimize] Connection reset – legacy filter required?? Yes! you found the correct workout ??
Note that in my case,
WP – 3.8
Autoptimize 1.8
W7
Apache 2.2.21
PHP 5.3.13
MySQL 5.5.16ThreadStackSize 8*1024*1024
didn’t work… butThreadStackSize 8388608
did ??So complete solution is:
httpd.conf:# Server-pool management (MPM specific) Include conf/extra/httpd-mpm.conf
and into conf/extra/httpd-mpm.conf
<IfModule mpm_winnt_module> ThreadStackSize 8388608 </IfModule>
Forum: Plugins
In reply to: [Autoptimize] Connection reset – legacy filter requiredHi again,
Here is what is working for me:
In yui-php-cssmin-2.4.8-2.php
Line 291, change// Remove the spaces before the things that should not have spaces before them. // But, be careful not to turn "p :link {...}" into "p:link{...}" // Swap out any pseudo-class colons with the token, and then swap back. $css = preg_replace_callback('/(?:^|\})(?:(?:[^\{\:])+\:)+(?:[^\{]*\{)/', array($this, 'replace_colon'), $css);
by
// Remove the spaces before the things that should not have spaces before them. // But, be careful not to turn "p :link {...}" into "p:link{...}" // Swap out any pseudo-class colons with the token, and then swap back. // CRASH HERE but not on Linux... // $css = preg_replace_callback('/(?:^|\})(?:(?:[^\{\:])+\:)+(?:[^\{]*\{)/', array($this, 'replace_colon'), $css); if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') { $css = preg_replace_callback('/(?:^|\})(?:(?:[^\{\:])+\:)+(?:[^\{]*\{)/', array($this, 'replace_colon'), $css); }
Well, it’s doesn’t explain why it crash (*)(on windows only?), but sounds OK as a quick (& durty? ;)) patch.
(*) Don’t see (yet?) any side effect on commenting it out.Enjoy ??
Forum: Plugins
In reply to: [Autoptimize] Connection reset – legacy filter requiredHi there,
just a quick message as I have the same problem, and would follow up ??
WP – 3.8
Autoptimize 1.8
W7
Apache 2.2.21
PHP 5.3.13
MySQL 5.5.16(Works like a charm on real server ?? – Thanks!)