Ionel Roiban
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Crontrol] Job is Kicked-OutI can actually setup a shorter interval, and it works for a while, until it is kicked out again. I wonder, under what circumstances could that happen.
- This reply was modified 7 years, 10 months ago by Ionel Roiban.
- This reply was modified 7 years, 10 months ago by Ionel Roiban.
Forum: Reviews
In reply to: [User Activity Log] Hijacks WP dashboardThank you. Please ad an option to the Plugin settings page.
Yes, twice. Thanks but you locked most useful functionality which makes this plugin looks like bait for the paid version.
Forum: Fixing WordPress
In reply to: mysqli_real_connect(): (HY000/2002): No such file or directoryCheck your WP CLI version.
Forum: Plugins
In reply to: [WP DB Driver] Failed opening plugins/wp-db-driver/inc/inc/error-handler.phpThanks, Marko! And thanks for this plugin. You should have 1 million + downloads per month if people knew how important is to make use of the PDO driver instead of what WordPress is using by default.
Forum: Plugins
In reply to: [WP DB Driver] Failed opening plugins/wp-db-driver/inc/inc/error-handler.phpThat was quick! Can you please point us to the github repo. Thank you.
Forum: Plugins
In reply to: [WP DB Driver] Failed opening plugins/wp-db-driver/inc/inc/error-handler.phpSame goes for line 577 in wp-db-driver/inc/db-driver.php
Need to replace this:
require_once( dirname( __FILE__ ) . '/drivers/' . $driver . '.php' );
with this:
require_once( dirname( __FILE__ ) . '/../drivers/' . $driver . '.php' );
Forum: Plugins
In reply to: [Loco Translate] Twig files support“__string_to_translate” is what Twig supports. All we need is for Twig files to be parsed. thank you.
Forum: Plugins
In reply to: [WP Search] [Plugin: WP Search] On activation dashboard doesn't show pluginsLook at the php error log. It did the same to me, and that’s because I already have Zend Framework in the php search path.
Forum: Plugins
In reply to: [GD Star Rating] [Plugin: GD Star Rating] Moving to another solutionYes, polldaddy.com.
Forum: Plugins
In reply to: [Wordpress Wiki] [Plugin: WordPress Wiki] fatal errorParse error: syntax error, unexpected T_SL in /[wp-directory]/wp-content/plugins/beatpanda-WordPress-Wiki-8a785f7/controllers/wiki_pages.php on line 31
Forum: Themes and Templates
In reply to: Adding a class to first and last menu itemsThis should be a default in wp_nav_menu function. Way too important for navigation styling.
Forum: Themes and Templates
In reply to: Add ‘last’ class to menu item<li class="menu-item menu-item-type-post_type menu-item-123 menu-item-last" id="menu-item-123"><a href="https://www.example.com/about-us/">About</a></li>
Forum: Themes and Templates
In reply to: Add ‘last’ class to menu itemIE 8 does not support last-child. It would be much easier to add a class to the last li in list.
<li class="menu-item menu-item-type-post_type menu-item-123" id="menu-item-123"><a href="https://www.example.com/about-us/">About</a></li>
Forum: Installing WordPress
In reply to: changing from 1and1 domain nameGo into wp_options table and change siteurl and home to your domain.