• For a couple of weeks now I’m getting a lot of 404s where
    /highslide/graphics/zoom.cur/
    is attached to the permalink.

    I used to have this problem with Thickbox and got rid of it by putting this in functions.php

    function thickbox_image_paths() {
    	global $post;
    	wp_reset_query();
    	if (is_singular() && strpos($post->post_content,'class="thickbox"') !== false) {
    		$thickbox_path = get_option('siteurl') . '/wp-includes/js/thickbox/';
    		echo "<script type=\"text/javascript\">\n";
    		echo "	var tb_pathToImage = \"${thickbox_path}loadingAnimation.gif\";\n";
    		echo "	var tb_closeImage = \"${thickbox_path}tb-close.png\";\n";
    		echo "</script>\n";
    	}
    }
    add_action('wp_footer', 'thickbox_image_paths');

    Being quite but not entirely ignorant of PHP, I’m wondering if there is a similar solution to my 404-problem with highslide.

    Any suggestions?

    http://wordpress.org/extend/plugins/highslide-4-wordpress-reloaded/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Andreas

    (@sauerland)

    Anybody ? Please ! MayDay !

    Plugin Author solariz

    (@solariz)

    Any link to a example page where i can see the error ?

    Thread Starter Andreas

    (@sauerland)

    The page in question is http://smmp.de, but it’s not an error you can see. I only see the 404s in the backend via the User Online plugin and on the server monitor. It’s nothing dramatic for users, just odd and quite a nuisance if you are monitoring 404s for link maintenance.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Highslide 4 WordPress *reloaded*] 404 links with zoom.cur’ is closed to new replies.