PlugIn:
/*
Plugin Name: Thumb-in-Post
Version: 0.2
Plugin URI:
Description: Automatically inserts a thumbnail and caption into a post using a custom tag <thumb></thumb>
Author: Ali Hassan
Author URI: http://www.ali-hassan.net
*/
Ich verwende die alte Version, da ich über 700 Beiträgen mit den alten Tags gesetzt habe.
Bei diesen Einstellungen
Code
// set the tag that will be used to identify where the picture info is
$tag ="thumb";
// set url at which the images are located -- this is where the pictures should be located
$imgurl = get_settings('fileupload_url').'/';
//set the path to the images
$imgpath = '/wp-images/post'.'/';
//subdirectory of the $imgpath in which the thumbnails will be stored
$thumbpath = $imgpath.'thumbnails/';
Alles anzeigen
Erhalte ich diese Fehlermeldung und verstehe es einfach nicht.
Die Ordner haben CHMOD 777 und die Dateien 666. Wenn ich die Pfadangaben relativ mache, geht es auf der Startseite, aber bei der Beitragsansicht funktioniert der relative Pfad aufgrund des Permalinks nicht.
Code
Warning: getimagesize(): open_basedir restriction in effect. File(/wp-images/post/05-08-futterimpression1.jpg) is not within the allowed path(s): (/www/htdocs/v113082/:/tmp:/usr/bin:/www/htdocs/v113082:/bin:/usr/local/bin:/usr/share/php) in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 110
Warning: getimagesize(/wp-images/post/05-08-futterimpression1.jpg): failed to open stream: Operation not permitted in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 110
Error: cannot resize images other than JPEG or PNG; or file not found
Warning: Division by zero in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 129
Warning: imagecreatetruecolor(): Invalid image dimensions in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 133
Warning: imagesx(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Warning: imagesy(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Warning: imagesx(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Warning: imagesy(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Error: could not write image
Warning: getimagesize(): open_basedir restriction in effect. File(/wp-images/post/05-08-futterimpression2.jpg) is not within the allowed path(s): (/www/htdocs/v113082/:/tmp:/usr/bin:/www/htdocs/v113082:/bin:/usr/local/bin:/usr/share/php) in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 110
Warning: getimagesize(/wp-images/post/05-08-futterimpression2.jpg): failed to open stream: Operation not permitted in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 110
Error: cannot resize images other than JPEG or PNG; or file not found
Warning: Division by zero in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 129
Warning: imagecreatetruecolor(): Invalid image dimensions in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 133
Warning: imagesx(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Warning: imagesy(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Warning: imagesx(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Warning: imagesy(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /www/htdocs/v113082/#zausel2/wp-content/plugins/thumb-in-post.php on line 136
Error: could not write image
Alles anzeigen