Robertooo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP update to 3.6 – Missing argument 2 for wpdb::prepare()Thanks. I’ve already read that but I don’t know what is the ID at the date .
I can’t find examples for the date.
I have the same error, and this is my 990th row:
function prepare( $query, $args ) { if ( is_null( $query ) ) return; $args = func_get_args(); array_shift( $args ); // If args were passed as an array (as in vsprintf), move them up if ( isset( $args[0] ) && is_array($args[0]) ) $args = $args[0]; $query = str_replace( "'%s'", '%s', $query ); // in case someone mistakenly already singlequoted it $query = str_replace( '"%s"', '%s', $query ); // doublequote unquoting $query = preg_replace( '|(?<!%)%f|' , '%F', $query ); // Force floats to be locale unaware $query = preg_replace( '|(?<!%)%s|', "'%s'", $query ); // quote the strings, avoiding escaped strings like %%s array_walk( $args, array( $this, 'escape_by_ref' ) ); return @vsprintf( $query, $args ); }How could I fix it?
Forum: Themes and Templates
In reply to: Piano black background imageI know the correct answer:
I’ve modified this in style.css:
body { margin:0; padding:0; background:url(img/back1.gif);
Modified version:
body { margin:0; padding:0; background:url(your background file.jpg);
background-repeat:repeat;
background-attachment:fixed; }Forum: Themes and Templates
In reply to: Piano black background imageThanks, I’ll try this plugin.
Forum: Themes and Templates
In reply to: Piano black background imageThere’s a style.css. Perhaps it contains this background information?
….
/* —— layout ———————— */#wrapper { background:url(img/back2.png) no-repeat center top; }
#contents { width:959px; margin:0 auto; text-align:left; }
#header { background:url(img/top.png) no-repeat bottom; height:160px; }
#middle-contents { background:url(img/side.png) repeat-y; padding-bottom:50px; }
#left-col { float:left; display:inline; width:584px; margin:0 0 0 5px; }
#right-col { float:right; display:inline; width:330px; margin:70px 5px 0 0; }
#footer { background:url(img/bottom.png) no-repeat top; height:114px; margin-bottom:50px; }
….Forum: Themes and Templates
In reply to: Piano black background imageI can’t findt that, there’s only logo file and not background image. But I ‘d like to change especially the left and right side of the theme.
For e.g.http://i1125.photobucket.com/albums/l595/Atomantiii/piano.jpg
Hi
First you have to deactivate the wp-cycle plugin and make an sql backup from your database.
Then login into phpmyadmin database where looks for your database and click on content. You have to find wp-cycle expression in your database and delete all hit from it if you find them. Finally you activate the plugin and hopefully it will work perfectly.