lampstax Posted June 29, 2010 Share Posted June 29, 2010 Hey guys, I'm running WAMP on Windows 7 and trying to pass a command to mogrify. I tried passthru(), system(), exec() but none worked. A sample command is convert -format jpeg -extract 2048x1536+0+0 +repage -thumbnail 100x75 C:/wamp/www/alpha.offernation.org/uploads/properties/property_original_1277852331.jpg C:/wamp/www/alpha.offernation.org/uploads/properties/property_original_1277852331_100x75.jpg I know the command itself works because if I run it directly from the DOS prompt it works. When I run with a simple command like 'dir': $last_line = passthru('dir', $retval); I get the correct output .. but when I replace 'dir' with the command above .. i get this: $last_line = 4 and $retval = NULL I think it could be a permission issue with windows 7, but I'm not sure how to troubleshoot. Google is not being very helpful either. Can anyone point me in the right direction? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/206226-passthru-system-exec-not-working-potentially-permissioning-issues/ Share on other sites More sharing options...
btherl Posted June 30, 2010 Share Posted June 30, 2010 Here's a few ideas for troubleshooting. Generic ideas unfortunately, I don't know what your actual problem might be. 1. Login as whatever user the web server runs as and run the command 2. Deliberately give the command files it doesn't have access to and see what happens 3. Execute "dir" on the paths you are giving to the convert command, see if it can access them 4. Execute "move" on files in the paths you are giving to convert 5. Execute your command with the "display help" option, and see if you do indeed get the help displayed as output. If not then it may not be able to access that command at all. Quote Link to comment https://forums.phpfreaks.com/topic/206226-passthru-system-exec-not-working-potentially-permissioning-issues/#findComment-1079048 Share on other sites More sharing options...
lampstax Posted June 30, 2010 Author Share Posted June 30, 2010 Hey btherl. Thanks for writing all that out! I will give it a try tomorrow and see if I get lucky. Quote Link to comment https://forums.phpfreaks.com/topic/206226-passthru-system-exec-not-working-potentially-permissioning-issues/#findComment-1079086 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.