Title: tzdk's Replies | WordPress.org

---

# tzdk

  [  ](https://wordpress.org/support/users/tzdk/)

 *   [Profile](https://wordpress.org/support/users/tzdk/)
 *   [Topics Started](https://wordpress.org/support/users/tzdk/topics/)
 *   [Replies Created](https://wordpress.org/support/users/tzdk/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/tzdk/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/tzdk/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/tzdk/engagements/)
 *   [Favorites](https://wordpress.org/support/users/tzdk/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 121 total)

1 [2](https://wordpress.org/support/users/tzdk/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/tzdk/replies/page/3/?output_format=md) …
[7](https://wordpress.org/support/users/tzdk/replies/page/7/?output_format=md) [8](https://wordpress.org/support/users/tzdk/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/tzdk/replies/page/9/?output_format=md) [→](https://wordpress.org/support/users/tzdk/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Output Cache] It works?](https://wordpress.org/support/topic/it-works-433/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/it-works-433/#post-4918339)
 * Year old problem [https://core.trac.wordpress.org/ticket/15058](https://core.trac.wordpress.org/ticket/15058)
   but inline docs have been updated [https://core.trac.wordpress.org/changeset/28735](https://core.trac.wordpress.org/changeset/28735)
 * A story from real life where he used same code as this plugin to generate key.
   [http://themergency.com/wordpress-developer-tip-dont-use-long-transient-names/](http://themergency.com/wordpress-developer-tip-dont-use-long-transient-names/)
 * So you cant really be sure it works unless you know transient is valid. Might
   not be.
 * `$cache_key = 'cache-menu-' . md5( serialize( $args ) ) . $version;`
 * can be trouble.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Enabling APC on Page Caching Slows Down Site](https://wordpress.org/support/topic/enabling-apc-on-page-caching-slows-down-site/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/enabling-apc-on-page-caching-slows-down-site/#post-4972358)
 * I have no clue but stumbled over this when researching Memcached issues:
 * > 2. apc.enable_cli=1
   > BAD BAD BAD, this is for debug only! Every time you run php-cli, it clears 
   > the APC cache.
 * [http://stackoverflow.com/questions/3570131/optimize-apc-caching](http://stackoverflow.com/questions/3570131/optimize-apc-caching)
 * Another quote I forgot link to
 * > So opcode-cache in APC is useless in CLI mode : it will not optimize anything,
   > as PHP will still have to re-compile the source to opcodes each time PHP’s 
   > executable is launched.
 * In link note at the bottom. Apparently `apc.stat=0` is also a must. OR is it,
   questions, questions…
 *     ```
       ;Setting this to 0 will give you the best performance, as APC will
       ;not have to check the IO for changes. However, you must clear
       ;the APC cache to recompile already cached files. If you are still
       ;developing, updating your site daily in WP-ADMIN, and running W3TC
       ;set this to 1
       apc.stat=1
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Output Cache] It works?](https://wordpress.org/support/topic/it-works-433/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/it-works-433/#post-4918314)
 * Without going in to database you an see it with Debug Bar Transients [http://wordpress.org/plugins/debug-bar-transients/](http://wordpress.org/plugins/debug-bar-transients/)
   Need Debug Bar as well of course. Name will be “cache-menu-XXXX” where Xs are
   random characters.
 * Is cached for 12 minutes. Number can be changed via a filter. Because random 
   name it might not be possible to invalidate sooner, like when you update menu.
 * Can also see it working by checking number of mysql queires, will go down.
 * Another way to notice is failure of CSS to highlight “current” menu item. Transient
   is static cache not real time. Is only sacrifice to make with transients vs. 
   menus.
 * Oops, checked it for real and it does invalidate per changes. Which might lead
   to a new question
 * `Invalid transient - the transient name was probably truncated. Limit is 64 characters.`
   seems to pop up because of what it says. Hmm.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crayon Syntax Highlighter] Load Crayon JS files only in footer](https://wordpress.org/support/topic/load-crayon-js-files-only-in-footer/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/load-crayon-js-files-only-in-footer/#post-4502644)
 * Does that already.
 * Check options and especially:
 * “Attempt to load Crayon’s CSS and JavaScript only when needed”
 * If you pick monospace it will load a tiny CSS file:
 *     ```
       .crayon-font-monospace * {
           font-family: monospace !important;
       }
       ```
   
 * is it. Copy that in to own theme file. Is in /uploads/crayon-syntax-highlighter/
   themes/YOURTHEMENAME folder. Generated by theme builder.
 * When there is Crayon code you should see 1 CSS file in header and 1 JS in footer.
   If no code = zero files loaded.
 * If it works or not might depend on theme, plugins and other code. Why he put 
   in some options for loading stuff.
 * Forgot. Font file is automatically enqued so remove because you copy CSS in to
   other file, what ever is already loaded will do. Your own Crayon theme file would
   be a good choice.
 *     ```
       // Crayon fix for tiny monospace.css
       add_action ( 'wp_enqueue_scripts', 'disable_crayon_monospace' );
       function disable_crayon_monospace() {
       	wp_deregister_style ( 'crayon-font-monospace' );
       }
       ```
   
 * No reason to load 1 CSS file just for font. Handle for monospace is “crayon-font-
   monospace” – will be different depending on font choice.
 * Not quite sure this will work out of the box if you enable bbPress and comment
   support. The front-end stuff. But for basic usage it can work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HTML Mode Locker] A couple of PHP 5.4.x notices](https://wordpress.org/support/topic/a-couple-of-php-54x-notices-1/)
 *  Thread Starter [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/a-couple-of-php-54x-notices-1/#post-4549185)
 * Not sure how valid last fix is but you get notice without…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bulk Plugin Installation] Can't install form Plugin page URL](https://wordpress.org/support/topic/cant-install-form-plugin-page-url/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/cant-install-form-plugin-page-url/#post-3848140)
 * Mostly useless info I gave. Fast test not good enough. Does work but with 40 
   plugins it fails with mentioned error msg. Out of 40 16 installs, errors seems
   random.
 * Not just about disk space as someone mentioned.
 * From ithemes wiki:
    [http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions#PCLZIP_ERR_BAD_FORMAT](http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions#PCLZIP_ERR_BAD_FORMAT)
 * From Codex, fixed in 3.6 apparently
    [https://core.trac.wordpress.org/ticket/22913](https://core.trac.wordpress.org/ticket/22913)
 * Very old story
    [http://wordpress.org/support/topic/incompatible-archive-pclzip_err_bad_format-10?replies=36](http://wordpress.org/support/topic/incompatible-archive-pclzip_err_bad_format-10?replies=36)
 * Plugin install:
    [https://github.com/wp-cli/wp-cli/issues/781](https://github.com/wp-cli/wp-cli/issues/781)
 * Lots of different cases can give that error it seems.
 * But this plugin happily go
 * > Successfully installed the plugin [http://wordpress.org/plugins/xxxxxx/](http://wordpress.org/plugins/xxxxxx/).
 * regardless of error msg. so I guess plugin is out of sync with some changes in
   how to handle plugin installs.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Bulk Plugin Installation] Can't install form Plugin page URL](https://wordpress.org/support/topic/cant-install-form-plugin-page-url/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/cant-install-form-plugin-page-url/#post-3848139)
 * URLs work for me on std. Xampp setup. Tested with these
 *     ```
       http://www.wordpress.org/extend/plugins/duplicator
       http://www.wordpress.org/extend/plugins/plugin-notes
       http://www.wordpress.org/extend/plugins/debug-bar
       http://wordpress.org/extend/plugins/always-remember-me
       http://wordpress.org/extend/plugins/local-indicator
       ```
   
 * Uploaded one of them to own server and URL method also works there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cachify] Cachify and https-links](https://wordpress.org/support/topic/cachify-and-https-links/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cachify-and-https-links/#post-4462888)
 * Have you seen this [https://gist.github.com/sergejmueller/6990637](https://gist.github.com/sergejmueller/6990637)?
   Is from dev. himself, in docs too [http://playground.ebiene.de/cachify-wordpress-cache/](http://playground.ebiene.de/cachify-wordpress-cache/)
   More importantly it seems to work.
 * I have excluded bbPress with something like
 *     ```
       add_filter( 'cachify_skip_cache', 'skip_cache' );
       function skip_cache() {
       	if ( function_exists ( 'is_bbpress' ) && is_bbpress() ) {
       		return true;
       	}
       	else {
       		return false;
       	}
       }
       ```
   
 * so should [http://codex.wordpress.org/Function_Reference/is_ssl](http://codex.wordpress.org/Function_Reference/is_ssl)
   not work the same?
 * I think I would check WP Super Cache or W3TC forums for info on https page caching.
   Should you do it? is it foolproof?
 * Do not have option to test as I cant get Cachify to work on a Lite Speed server!
   Rewrite rules crap or something.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MinQueue] Cache failing – and having a hard time to locate the issue](https://wordpress.org/support/topic/cache-failing-and-having-a-hard-time-to-locate-the-issue/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cache-failing-and-having-a-hard-time-to-locate-the-issue/#post-4419574)
 * Only real issue I have noticed is this [https://github.com/wp-plugins/crazy-lazy/commit/af47452c2c45226c6b26eef8533e54fe228a6919#diff-473a3612e74d0d57e14bdc6ab5543578L162](https://github.com/wp-plugins/crazy-lazy/commit/af47452c2c45226c6b26eef8533e54fe228a6919#diff-473a3612e74d0d57e14bdc6ab5543578L162)
   line 162, sort of inline JS like wp_localize_script or something – reading material
   [http://wordpress.stackexchange.com/questions/51692/should-3rd-parties-use-wp-scripts-wp-styles-add-data](http://wordpress.stackexchange.com/questions/51692/should-3rd-parties-use-wp-scripts-wp-styles-add-data)
 * Minqueue seemed unprepared for this. I dont really use that plugin and code has
   been removed in newer versions. If not me messing up, or forgetting what really
   happened!, similar code should be a problem.
 * Now he know if he see this.
 * I think I have had to clear cache a few times, shit happens – also on hds and
   servers. Data/files can get corrupted. May be other caching stuff mess up? No
   details calls for no answer 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] WP_DEBUG PHP notice because of bbPress](https://wordpress.org/support/topic/wp_debug-php-notice-because-of-bbpress/)
 *  Thread Starter [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/wp_debug-php-notice-because-of-bbpress/#post-4195615)
 * Ohhh, nice. I will keep eye on beta, am on no. 2 now. I have not seen any issues
   coming from the bbPress notice btw., so can just stop looking! – but they build
   up like crazy and ruin already boring debug experience.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] WP_DEBUG PHP notice because of bbPress](https://wordpress.org/support/topic/wp_debug-php-notice-because-of-bbpress/)
 *  Thread Starter [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/wp_debug-php-notice-because-of-bbpress/#post-4195613)
 * Other posts being bbPress own Trac [http://bbpress.trac.wordpress.org/ticket/2412](http://bbpress.trac.wordpress.org/ticket/2412)
 * > Non-urgent. There’s a WordPress ticket that fixes this. Moving to future release
   > until it’s fixed in WordPress core.
 * yes it “fixes” a lot 😉 Not much encouragement to plugin devs. to “fix” if core
   see no need to. May be wrong to fix. Blah, blah – annoying it is.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] WP_DEBUG PHP notice because of bbPress](https://wordpress.org/support/topic/wp_debug-php-notice-because-of-bbpress/)
 *  Thread Starter [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/wp_debug-php-notice-because-of-bbpress/#post-4195612)
 * Hmm, bbPress dude try his luck on Trac [http://core.trac.wordpress.org/ticket/24169](http://core.trac.wordpress.org/ticket/24169)
   about this “too early” issue. About Theme Customizer but same thing. He believe
   it is a core issue, not related to bbPress. bbPress just checks! Example [http://bbpress.org/forums/topic/bbpress-deprecated-calls/](http://bbpress.org/forums/topic/bbpress-deprecated-calls/)–
   in other posts saying something like “waiting for core to fix” or similar. Someone
   tried to come up with a hack-around.
 * Answer:
 * > But for the moment, status quo prevails.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Update Control] What does "Permit Automatic Plugin Updates" do?](https://wordpress.org/support/topic/what-does-permit-automatic-plugin-updates-do/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/what-does-permit-automatic-plugin-updates-do/#post-4268428)
 * Check [https://github.com/WordPress/WordPress/blob/master/wp-admin/includes/class-wp-upgrader.php#L1752](https://github.com/WordPress/WordPress/blob/master/wp-admin/includes/class-wp-upgrader.php#L1752)
   and further down.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Update Control] Own options page](https://wordpress.org/support/topic/own-options-page/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/own-options-page/#post-4265919)
 * I thought one of the cool things about plugin was placement 🙂 Is a “core” plugin
   in its own little way = make sense to put in general settings.
 * Hide/Show toggle thingy could be compromise.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Update Control] PHP Notices](https://wordpress.org/support/topic/php-notices-15/)
 *  [tzdk](https://wordpress.org/support/users/tzdk/)
 * (@tzdk)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/php-notices-15/#post-4266658)
 * Yes, all perfect with debug on, PHP 5.4.20 and 5.5.4.

Viewing 15 replies - 1 through 15 (of 121 total)

1 [2](https://wordpress.org/support/users/tzdk/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/tzdk/replies/page/3/?output_format=md) …
[7](https://wordpress.org/support/users/tzdk/replies/page/7/?output_format=md) [8](https://wordpress.org/support/users/tzdk/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/tzdk/replies/page/9/?output_format=md) [→](https://wordpress.org/support/users/tzdk/replies/page/2/?output_format=md)