genkisan
Forum Replies Created
-
Forum: Plugins
In reply to: [Edit Any Table] No save nor delete button on any tableThanks!
Your plugin is a real timesaver for me πForum: Plugins
In reply to: [Edit Any Table] No save nor delete button on any tableNope. Primary key not identified when $this->use_mysqli = true but shows up when $this->use_mysqli = false.
Forum: Plugins
In reply to: [Edit Any Table] No save nor delete button on any tableSame issue with WP 3.9.1. I narrowed it down to the new lines in /wp-includes/wp-db.php
} elseif ( version_compare( phpversion(), '5.5', '>=' ) || ! function_exists( 'mysql_connect' ) ) { <strong>$this->use_mysqli = true;</strong>Save & Delete buttons shows up again when I set $this->use_mysqli = false.
Forum: Plugins
In reply to: [Edit Any Table] No save nor delete button on any tableHaving the same issue – no save or delete button for all tables.
PHP Version 5.5.1
MYSQL Support 5.0.11Using wp_postmenta table as an example, the structure is
CREATE TABLE IF NOT EXISTS'wp_postmeta' ( 'meta_id' bigint(20) unsigned NOT NULL AUTO_INCREMENT, 'post_id' bigint(20) unsigned NOT NULL DEFAULT '0', 'meta_key' varchar(255) DEFAULT NULL, 'meta_value' longtext, PRIMARY KEY ('meta_id'), KEY 'post_id' ('post_id'), KEY 'meta_key' ('meta_key') ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=17871 ;Using error_log in EditAnyTable.php as below
$primary = $eat_db->get_col_info('unique_key',-1); error_log(print_r($primary,1));produce results as below
Array ( [0] => [1] => [2] => [3] => )Same results when disabled all plugins so unlikely plugin conflict. I think it happened after upgrading to WP v3.9. Tried the plugin on a clean WP 3.8.3 without issue.
Forum: Fixing WordPress
In reply to: '0' as in Zero for Category NameThanks. Renaming the slug works.
Should this bug be reported?
For a personal blog I can simply use the workaround
but in a multi author blog I can’t control what others input as the category name.Forum: Plugins
In reply to: Genki Youtube Comments plugin errorhey guys, you can give the new version a download @
http://ericulous.com/2007/05/16/wp-plugin-genki-youtube-comments/hopefully it doesn’t break anything π
Forum: Themes and Templates
In reply to: No Comments textSearch for the text in comments.php and delete them.
Forum: Themes and Templates
In reply to: Putting posts in the sidebarI’m using the following for my sidebar. Maybe it will be of help.
<?php $my_query = new WP_Query(‘category_name=wordpress-themes&showposts=20’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>Forum: Themes and Templates
In reply to: How to display two classes next to each other horizontallyTry using display:inline for bubble or editpost div.
Forum: Themes and Templates
In reply to: Connections Theme: Theme EditorYou have to change the file permission for the theme files.
These might be of help
http://www.tamba2.org.uk/wordpress/chmod/
http://www.tamba2.org.uk/wordpress/ftp/Forum: Themes and Templates
In reply to: Is my header align or not?Looks good when I tried it at http://ipinfo.info/netrenderer π
Forum: Fixing WordPress
In reply to: Displaying only parent Categories in WP2.1?Try out Braydon’s “unfold_list_categories” plugin.
He hacked the original wp_list_categories function and got it working (at least on my blog πForum: Themes and Templates
In reply to: New WP Theme: Small StudioActually Internet Music wasn’t on my to-do themes cos I remember someone already ported over to WordPress. I can’t recall where I saw it. Or has my memory fail me?
Forum: Themes and Templates
In reply to: New WP Theme: Internet Sharingcre8tive, thanks for the update on the brand new theme release! Coming soon π
Forum: Themes and Templates
In reply to: anaconda theme- need image help :)Rename your “webbar2g.GIF” to small caps “webbar2g.gif” in the images directory
or try
#header {background: #666 url(βstyles/images/webbar2g.GIFβ) repeat-x;margin: 0 0 25px;padding: 0 0 8px}