 |
มีปัญหา Error functions ช่วยแก้ไขหน่อยครับ .. Warning: Missing argument 2 for wpdb::prepare(), called in |
|
 |
|
|
 |
 |
|
ส่ง code มาให้ดูด้วยก็ดีนะครับ น่าจะมีปัญหาเรื่องของตัวแปรที่ส่งมาใน function
|
 |
 |
 |
 |
Date :
2013-01-07 00:13:08 |
By :
kokiflam |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Copy เฉพาะ Line ที่มีปัญหามาดูครับ
|
 |
 |
 |
 |
Date :
2013-01-07 08:55:12 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขออภัยครับเมื่อวานใส่โค้ดไว้ละหาย
รบกวนช่วยดูหน่อยครับผิดพลาดตรงไหน
สาเหตุที่เกิดเป็นตอนอัพเกรด wordpress แล้วทีนี้โค้ด functions ในธีมมันใช้ไม่ได้ครับ
custom-functions.php
custom-functions.php
// get image id
// retrieves the attachment ID from the file URL
function get_image_id($image_url) {
global $wpdb;
$prefix = $wpdb->prefix;
$attachment = $wpdb->get_col($wpdb->prepare("SELECT ID FROM " . $prefix . "posts" . " WHERE guid='" . $image_url . "';")); // บรรทัด 160 ที่มีปัญหาครับ
return $attachment[0];
}
function comment_list( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
switch ( $comment->comment_type ) :
case 'pingback' :
case 'trackback' :
?>
wp-db.php
wp-db.php
function prepare( $query, $args ) { // บรรทัด 990 ที่มีปัญหาครับ
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 );
}
|
 |
 |
 |
 |
Date :
2013-01-07 13:35:33 |
By :
sorawit.ff |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขออนุญาติดันหน่อยครับ
แก้ปัญหาไม่ได้จริงๆ
|
 |
 |
 |
 |
Date :
2013-01-07 18:22:05 |
By :
sorawit.ff |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่มีใครช่วย เลยหรอ :(!!
|
 |
 |
 |
 |
Date :
2013-01-08 15:53:23 |
By :
sorawit.ff |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ดัน ขอคนช่วยวันที่ 3 :(!!
|
 |
 |
 |
 |
Date :
2013-01-09 13:50:40 |
By :
sorawit.ff |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|