Daisuke Takahashi
Forum Replies Created
-
Forum: Plugins
In reply to: [OPcache Dashboard] What is this plugin for and can anyone use it?Hi master412160!
This plugin requires:
- WordPress 3.8+
- OPcache 7.0.2+ enabled
Isn’t that for most hosts already turned on?
If you are using PHP 5.5, answer is “yes”. PHP 5.5’s OPcache is included in PHP Core and is enabled by default.
But PHP 5.2, 5.3, and 5.4, you have to install PECL-OPcache module manually. Because not included in PHP Core. For more, PHP.netFatal error: Call to undefined function opcache_get_configuration() in /home/public_html/projects/ggn/wp-content/plugins/opcache/opcache.php on line 190
I guess you are using OPcache < 7.0.2.
This plugin needs OPcache 7.0.2+ enabled.Forum: Plugins
In reply to: [Google AdSense] HTTP Access HTTPS AdministrationMy Admin URL is https://www.extendwings.com/wp-admin/options-general.php?page=GooglePublisherPlugin
iframe src is https://publisherplugin.google.com/?site=http%3A%2F%2Fwww.extendwings.com&siteId={my site id}&adminUrl=https%3A%2F%2Fwww.extendwings.com%2Fwp-admin%2Foptions-general.php%3Fpage%3DGooglePublisherPlugin&version=0.1.0&wp_version=3.9&hl=jaThis problem maybe caused by Javascript of “https://publisherplugin.google.com/”.
Here is a sample of change.Forum: Plugins
In reply to: [Google AdSense] HTTP Access HTTPS AdministrationI have same problem!
Forum: Plugins
In reply to: [OPcache Dashboard] Missing graphs on dashboardwp_unslash() is since WordPress 3.6
To resolve this problem, please upgrade your WordPress to 3.6Furthermore, this plugin is designed for MP6 Dashboard(since 3.8).
Forum: Plugins
In reply to: [OPcache Dashboard] Missing graphs on dashboardHi serons,
Please give me PHP errors and followings:
- OS Name & Version:
- Server Software Name & Version:
- PHP Version:
- WordPress Version:
- Plugin Version:
Forum: Reviews
In reply to: [OPcache Dashboard] GJThis code is from Akismet. Reading other’s code give me a great number of tips on coding!
Forum: Plugins
In reply to: [Server Status] broke on installAccording to https://www.php.net/eol.php , PHP 5.2 is no longer maintained.
So, I cannot support “Unsupported” PHP versions, sorry…Forum: Plugins
In reply to: [Server Status] broke on installThe error continues with this version?
Forum: Plugins
In reply to: [Server Status] broke on installForum: Plugins
In reply to: [Server Status] broke on installPlease try This version. This is beta version of this plugin.
Forum: Plugins
In reply to: [Server Status] broke on installHow about 0.1.2?
Forum: Plugins
In reply to: [Server Status] broke on installI’m published new version. Please try it and tell me the consequence.
Forum: Plugins
In reply to: [Server Status] broke on installThis is caused by PHP.
If you can upgrade PHP, please use after 5.4.0.I’m working to fix this issue. This may take 1~2 days.
Forum: Plugins
In reply to: [Server Status] broke on installIt doesn’t happen in my server.
Please install this plugin again.(Uninstall & Re-install)
If this problem continue after that, please send your server info:
- OS name, version
- httpd name, version
- PHP name, version
- WordPress version
Forum: Plugins
In reply to: [Send to Kindle] Japanese language filesHere is my fixed code(send-to-kindle.php):
private function __construct() { load_plugin_textdomain( "kindle", false, dirname( plugin_basename( __FILE__ ) ) . '/languages/'); // Set up sensible defaults. add_option( 'stk_button_look', array( // placement 'home' => true, 'archive' => true, 'post' => true, 'page' => false, 'before' => false, 'after' => false, // button style 'color' => 'white', 'size' => 'small', 'border' => true, 'theme' => 'light', // button text 'text' => 'send-to-kindle', 'font' => 'sans-serif', ) ); add_option( 'stk_button_advanced', array( 'selectors' => array( 'title' => '.entry-title', 'published' => '.entry-date', 'content' => '.post', 'exclude' => '.sharedaddy', ), 'enabled' => false, 'markup' => '<div class="kindleWidget">Kindle</div>', ) ); // Register actions and filters. add_shortcode( 'sendtokindle', array( $this, 'get_button_html' ) ); add_filter( 'the_content', array( $this, 'attach_to_content' ) ); add_filter( 'get_the_excerpt', array( $this, 'clean_the_excerpt' ) ); add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_script' ) ); if ( is_admin() ) { // Only load settings screens for admins. add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'settings_link' ) ); if ( ! class_exists( 'STK_Settings' ) ) { include_once( dirname( __FILE__ ) . '/admin/settings.php' ); } if ( ! class_exists( 'STK_Settings_Advanced' ) ) { include_once( dirname( __FILE__ ) . '/admin/settings-advanced.php' ); } $settings = STK_Settings::get_instance(); $advanced_settings = STK_Settings_Advanced::get_instance(); } }
I hope you will find it helpful.