Re: [FIXED] Spaces in Paths
Posted: 2007-10-01T23:30:13-07:00
Try adding extra quotes around the file path. For PHP on windows that can be tricky as you much use double quotes.
Something like...
The extra quotes are for the dos command parser (or is it cgiwin?)
Something like...
Code: Select all
exec("C:/ImageMagick/convert.exe \"$filename\" thumbnail 250x250 \"$thumbdir/$name.jpg\"" );