try uploading the images again, i've checked the codes using firebug, it says "failed to load given url".
Yes even I tried loading from this link hxxp://dturbanwear.com/wp-content/uploads/products_img/lakmefash.jpg&w=300&zc=1&q=80&bid=1 and it FAILS to load each time giving some 501 INTERNAL ERROR whereas what I entered on WP backend was hxxp://dturbanwear.com/wp-content/uploads/products_img/lakmefash.jpg and it works fine. On backend i enter just hxxp://dturbanwear.com/wp-content/uploads/products_img/lakmefash.jpg at custom_field but later on checking on BROWSER SOURCE code it shows that THUMB.PHP action giving hxxp://dturbanwear.com/wp-content/uploads/products_img/lakmefash.jpg&w=300&zc=1&q=80&bid=1 and it FAILS to load. I know this is small bug or small mistake that I'm doing but I can't figure it out. Can anyone login to my WP dashboard and take a look on them...?
the image url is not given, so it will have a hard time loading the thumbnails, try uploading the images again.
I have checked uploading multiple images but no use. Can you login to my WP and fix it up. I can provide you the login if you are giving a try here.
The image will not be in the content of the post , but in the custom field. The problem is with the working of thumb.php . Seems like the server is not supporting the image re-size function of thumb.php
Do I got to upload any supporting plugin to work this. Do I got to upload thimthumb.php plugin or something? If yes please give me a link to download that particular login bro?
the thumb.php you are using is itself timthumb.php . have you created the cache folder and given it the proper permissions. You can even try the theme at localhost to see if the thumb.php is working or not.
Here is a solution for thumb.php not generating thumbnails. thebuzzmedia.com/tip-for-timthumb-thumb-php-not-generating-thumbnails/ you can try it and if still there is problem then we can think further
NO not working still. I completely replaced old thumb.php with the latest version but still dint work.
Here is a solution, it should be working: 0) take a full backup of your site. 1) CHMOD your thumb.php file and cache, temp directories to 777. 2) Add following codes in your theme's functions.php (anywhere): function get_image_path($src) { global $blog_id; if(isset($blog_id) && $blog_id > 0) { $imageParts = explode(‘/files/’ , $src); if(isset($imageParts[1])) { $src = ‘/blogs.dir/’ . $blog_id . ‘/files/’ . $imageParts[1]; } } return $src; } PHP: 3) Search for thumb.php in all theme’s php files and replace the few characters after it: echo $postImage PHP: by: echo get_image_path($postImage) PHP:
try this. On the shopping cart menu, click general setting, then on product setting paste this: http://dturbanwear.com/wp-content/themes/storefront/images/dummy/ both in "Product Image Path" and "Digital Product Path". Hope this one will help you.
try this, on the shopping cart menu, click general settings, on product settings, images path both on product image and digital image, paste this, dturban.com/wp-content/themes/storefront/images/dummy/, dont forget to put http:// before dturban
I tried this method long back but I cant find echo $postImage on thumb.php script. I gave your wp logins, can you look it for yourself. Please
$postImage is not located in thumb.php Look in all PHP files (theme files) and search for "thumb.php", when you get it, you will find $postImage around thumb.php, then just replace $postImage with get_image_path($postImage
Yes $postImage is not located in thumb.php You have to search in other theme files, search for "thumb.php" within other files, if you find it, you will see $postImage near that. Hope you understand me. If not, send me your admin details, and take a backup of your site.