Jeg kæmper virkelig en kamp med at få vist thumbnails på min forside. Jeg har fulgt troubleshooting'en på http://www.arrastheme.com/forums/topic.php?id=79. Googlet problemet og forsøgt med alverdens ting. bl.a. har jeg gd library installeret. lavet tilladelserne om til 755 og endda prøvet med 777 utallige gange. jeg har været inde og ændre i timthumb.php med følgende råd:
I am running wpmu 2.7.1 and I modified the arras-theme/library/timthumb.php to allow for my thumbnails to work, but right now only for main blog.
To get it to work for all blogs in wpmu it must return the value for the blog. Still working to get that part to work.
But this is what I did, maybe it will help someone.
The issue was that the file was not where the cleanSource, get_document_root functions said it should be.
Around line 538 there is a line in the function cleanSource
$src = str_replace($host, "", $src);
I added below that line the folowing to replace /files/ with blogs.dir/1/files/, the 1 is the main blog user/admin.
$src = str_replace("/files/", "blogs.dir/1/files/", $src);
Also I removed one of the values in the array in function get_document_root
removed ../../../../../ and the comma (,) on line above.
Efterfølgende gik jeg ind og ændrede min timthumb.php til:
$src = str_replace($host, "", $src);
$src = str_replace("/files/", "blogs.dir/1/files/", $src)
$host = str_replace("www.", "", $host);
$src = str_replace($host, "", $src);
Gør jeg noget forkert her?
Min side er rasanne.dk og jeg bruger one.com og temaet er arras
Håber virkelig der er en derude der kan/vil hjælpe mig, da jeg er blevet hårløs af rive mit hår ud i desperation.
med venlig hilsen
Rasmus
not resolved