Title: Code by Jinx's Replies | WordPress.org

---

# Code by Jinx

  [  ](https://wordpress.org/support/users/code-by-jinx/)

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

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Loglink] auto login links in all wordpress emails](https://wordpress.org/support/topic/auto-login-links-in-all-wordpress-emails/)
 *  Plugin Author [Code by Jinx](https://wordpress.org/support/users/code-by-jinx/)
 * (@code-by-jinx)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/auto-login-links-in-all-wordpress-emails/#post-7063786)
 * Thanks for your suggestions!
 * I’m going to use the suggestions here, as well as what’s in [this topic](https://wordpress.org/support/topic/great-plugin-heres-an-idea?replies=2)
   and put together a new update for Loglink this weekend (hopefully).
 * The main point of this plugin is to be a lightweight solution, so that’s my #
   1 priority, but if I can fit in functionality that makes this all possible alongside
   some documentation I will.
 * (P.S. – You can set a “time token” for these links already under **_Dashboard-
   > Tools -> Loglink -> Link Duration_**. Is that what you’re looking for?)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Loglink] Great Plugin. Here's an idea](https://wordpress.org/support/topic/great-plugin-heres-an-idea/)
 *  Plugin Author [Code by Jinx](https://wordpress.org/support/users/code-by-jinx/)
 * (@code-by-jinx)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/great-plugin-heres-an-idea/#post-6825207)
 * Thanks for the suggestion!
 * This has given me quite a few ideas for the future of this plugin. I’m currently
   working on an eCommerce platform for release in early 2016, but if I get the 
   chance in the next couple of weeks, I’d like to take the basic concept of this
   plugin, and expand it into a few different areas of WordPress (such as dynamically-
   generated links in emails).
 * I will add this suggestion to my list of TODOs, and open an Issue on GitHub when
   I begin work on it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The RocketBar] RocketBar Cron Jobs Exhaust Memory](https://wordpress.org/support/topic/rocketbar-cron-jobs-exhaust-memory/)
 *  Plugin Author [Code by Jinx](https://wordpress.org/support/users/code-by-jinx/)
 * (@code-by-jinx)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/rocketbar-cron-jobs-exhaust-memory/#post-6291792)
 * Hey Neil,
 * Sorry to hear that you’re having issues. I understand what you’re saying here.
   The RocketBar cache for Pages and Posts is built on an hourly basis. The code
   for that is here:
 * [https://github.com/byjinx/rocketbar/blob/master/rocketbar/includes/hooks.php#L14-L18](https://github.com/byjinx/rocketbar/blob/master/rocketbar/includes/hooks.php#L14-L18)
 * As far as I know, this is the correct way to write up Cron jobs, as specified
   in the WordPress docs: [https://codex.wordpress.org/Function_Reference/wp_cron](https://codex.wordpress.org/Function_Reference/wp_cron)
 * The only way that this issue could have arisen in a regular WordPress environment
   would be if WP Cron was not allowed to run, but stored future Cron events in 
   memory, and then was reenabled as some time in the future.
 * This would be an issue with any plugin using WP Cron, given enough time. The 
   reason that you’re having issues with RocketBar is only because it happens to
   be using an hourly Cron job (which is completely normal for a plugin), and therefore
   stored many more entries than normal.
 * I’m assuming that you’ve now reenabled WP Cron, and are now having issues. So,
   here’s what I’d recommend you do now:
 * —
 * Open the Rocketbar code base via FTP, and delete lines 17 and 18 in `rocketbar/
   includes/hooks.php`.
 * See: [https://github.com/byjinx/rocketbar/blob/master/rocketbar/classes/bar.php#L17-18](https://github.com/byjinx/rocketbar/blob/master/rocketbar/classes/bar.php#L17-18)
 * That _should_ fix your issue, by just not doing anything when the Cron job is
   requested. If it doesn’t, you will need to have someone log into your server,
   and run a script aside WordPress to remove all of the unnecessary entries within
   your WordPress `cron` option.
 * Because this is not a bug with the code base of RocketBar directly, this is all
   the assistance I can give you. If you would like assistance past this, you can
   contact me at [bruce@myinbox.ws](https://wordpress.org/support/users/code-by-jinx/replies/bruce@myinbox.ws?output_format=md),
   and I’d be happy to work with you at an hourly basis.
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The RocketBar] Search Posts](https://wordpress.org/support/topic/search-posts/)
 *  Plugin Author [Code by Jinx](https://wordpress.org/support/users/code-by-jinx/)
 * (@code-by-jinx)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/search-posts/#post-6195917)
 * Absolutely. Right now the commands functionality that I’ve built is very barebones,
   and this hasn’t been possible yet. I’m working to expand on this, and more than
   likely a command along the lines of `posts` or `search` will come along.
 * However, what I won’t be adding in is listings directly in the search box for
   Posts (like there are with Pages). That’s simply because, generally, there are
   thousands of Posts on any given blog, and in order to have them show up in listings,
   all of those Posts need to be stored and retrieved on every page load.
 * Instead, we’ll use the default WordPress queries to load Posts as we need them
   through a command, once that’s possible.
 * Thanks for bringing this up!
 * – Bruce
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The RocketBar] Freezes Admin Dashboard](https://wordpress.org/support/topic/freezes-admin-dashboard/)
 *  Plugin Author [Code by Jinx](https://wordpress.org/support/users/code-by-jinx/)
 * (@code-by-jinx)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/freezes-admin-dashboard/#post-6193340)
 * Thanks very much!
 * I’m making some changes for the next release of RocketBar that should help to
   resolve this issue. This release should be out within the next few days. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The RocketBar] Freezes Admin Dashboard](https://wordpress.org/support/topic/freezes-admin-dashboard/)
 *  Plugin Author [Code by Jinx](https://wordpress.org/support/users/code-by-jinx/)
 * (@code-by-jinx)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/freezes-admin-dashboard/#post-6193323)
 * Hey Neil,
 * Thanks for the reply. You can upload your screenshots to a site like [imgur.com](http://imgur.com)
   and post a link to them here. 🙂
 * Right now, it’s looking like it could be an issue with an icon that’s being loaded
   in your admin panel causing issues with the way that RocketBar uses Icons in 
   the bar.
 * There’s actually an error coming from one of the WordPress javascript files (`
   wp-includes/js/wp-emoji-release.min.js`).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The RocketBar] Freezes Admin Dashboard](https://wordpress.org/support/topic/freezes-admin-dashboard/)
 *  Plugin Author [Code by Jinx](https://wordpress.org/support/users/code-by-jinx/)
 * (@code-by-jinx)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/freezes-admin-dashboard/#post-6193290)
 * Hey Neil,
 * Sorry to hear you’re having problems with the plugin! I’m taking a look at the
   areas you mentioned on my development environment, but I’m not able to recreate
   these issues.
 * It’s more than likely that this is caused by a plugin conflict I’m unaware of,
   as the plugin doesn’t cause this kind of issue in a controlled environment. I’d
   love to try to debug this if you could send me the following data:
    - The current version of WordPress you’re running
    - A screenshot of your plugins page, or a list of your currently activated plugins
    - A screenshot of your developer console. You can open your console by pressing
      F12 in most browsers, and clicking the `Console` tab.
 * Thanks, I appreciate the report!
 * – Bruce

Viewing 7 replies - 1 through 7 (of 7 total)