I have the same issue.
I activate debug :
echo “1__”.$_FILES[“image”][“tmp_name”][$id].”\n”;
echo “2__”.$id.”\n”;
echo “3__”.$new_filename.”\n”;
When I upload asset I have :
C:\sites\test.soldeslingerie.fr/wp-includes/piecemaker-images/assets_20120417205703000000.bmp100 100 1__C:\Windows\Temp\php42DF.tmp 2__0 3__C:\sites\test.soldeslingerie.fr/wp-includes/piecemaker-images/assets_20120417205703000000.bmp assets.bmp – Write file error! Please check permission fb-books/ ,fb-images/ folders and set to “777
I ‘m on Windows machine Apache PHP
Who have an idea ?
piecemaker-images and piecemaker are present under wp-includes
REgards
Ludo
To complete.
In my directory wp-includes\piecemaker-images
I have 2 files
-p-image-107406-grande_20120417211227000000.jpg
thumb_-p-image-107406-grande_20120417211227000000.jpg
same issue with a .flw
by reading ur details it looks 2 me we have same prob!
“u had activated debug…”
i got this line.but can’t understand that does it work 4 u?
i use windows and running wp under bitnami wordpress stack.
& sorry i can’t get ur 2nd comment.
It looks like a typical windows problem. Just before the file copy, the spaces in the file name are removed causing all the trouble mentioned above.
Uncommenting line 2257 in piecemaker-main.php should do the trick:
// $new_filename = preg_replace(‘/[\ ]/’, ”, $new_filename);
Now you can add assets en transitions and piecemaker 2 should work fine. Good luck with it.