[Solved] Thumbnails missing
Quick fix for the problem:
$slides[$skey] -> image_path = get_bloginfo( 'url' ) . '/wp-content/uploads/slideshow-gallery/' . $slide -> image;
2. For viewing problem in Manage Slides page, find the plugin folder "slideshow-gallery\views\admin\slides\loop.php" line 52, find the code like this:
<a href="<?php echo $this -> Html -> image_url($image); ?>" title="<?php echo $slide -> title; ?>" class="colorbox" rel="slides"><img class="slideshow" src="<?php echo $this -> Html -> timthumb_image_src($slide -> image_path, 40, 40, 100); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" /></a>
1. Go to slideshow-gallery.php line 168, then you should find the code like this:
$slides[$skey] -> image_path = 'wp-content/uploads/slideshow-gallery/' . $slide -> image;
Change to,
$slides[$skey] -> image_path = get_bloginfo( 'url' ) . '/wp-content/uploads/slideshow-gallery/' . $slide -> image;
2. For viewing problem in Manage Slides page, find the plugin folder "slideshow-gallery\views\admin\slides\loop.php" line 52, find the code like this:
<a href="<?php echo $this -> Html -> image_url($image); ?>" title="<?php echo $slide -> title; ?>" class="colorbox" rel="slides"><img class="slideshow" src="<?php echo $this -> Html -> timthumb_image_src($slide -> image_path, 40, 40, 100); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" /></a>
Change to,
<a href="<?php echo $this -> Html -> image_url($image); ?>" title="<?php echo $slide -> title; ?>" class="colorbox" rel="slides"><img class="slideshow" src="<?php echo $this -> Html -> timthumb_image_src(get_bloginfo('url').'/'.$slide -> image_path, 40, 40, 100); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" /></a>
<a href="<?php echo $this -> Html -> image_url($image); ?>" title="<?php echo $slide -> title; ?>" class="colorbox" rel="slides"><img class="slideshow" src="<?php echo $this -> Html -> timthumb_image_src(get_bloginfo('url').'/'.$slide -> image_path, 40, 40, 100); ?>" alt="<?php echo $this -> Html -> sanitize($slide -> title); ?>" /></a>
The problem is the plugin can't locate the image location. Hope this will helps.
Comments
A TimThumb error has occured
The following error(s) occured:- Could not find the internal image you specified.
Query String : src=http://127.0.0.1/wordpress/wp-content/uploads/slideshow-gallery/930.jpg&w=100&h=75&q=100&a=tTimThumb version : 2.8.10
//$img = 'wp-content/plugins/' . $this -> plugin_name . '/screenshot-1.png';<br><br>$img = get_bloginfor('url').'/wp-content/plugins/' . $this->plugin_name . 'screenshot-1.png';
<br>
<hr>
<b>Changed slideshow-gallery.php</b>
<br>
<br>
foreach ($slides as $skey => $slide) { <br>
$slides[$skey] -> image_path = get_bloginfo( 'url' ) . '/wp-content/uploads/slideshow-gallery/' . $slide -> image; <br>
//$slides[$skey] -> image_path = 'wp-content/uploads/slideshow-gallery/' . $slide -> image;
<br>
All old code is commented out //
<br>
Did not change the manage stuff yet, not until I was sure this was going to work.
<br>
No changes.
<br>
Suggestions?
Any assistance would be greatly appreciated.
- AUM.