473,410 Members | 1,857 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,410 software developers and data experts.

PHP exec upsetting get_file_contents

Hi
I'm running with PHP5 on WAMP & have come across a problem. I use the following php script to respond to an <image src="this.php?source=xxx">
Expand|Select|Wrap|Line Numbers
  1.  // get $source & $res 
  2.     $command = "convert -geometry $res $source gim29.gif";
  3.     exec($command);
  4.     if (file_exists("gim29.gif")) {
  5.         if($img     = @file_get_contents("gim29.gif")) {
  6.                                   header("Content-type: \"image/gif\"");
  7.                                   print $img;
  8.                                 }
  9.                 }
  10.  
This fails - I do not get the image to my browser. Inspecting file gim29.gif shows it to be good - convert did the job. In fact - if I comment out the exec all works well! Also if I substitute the "convert...." with "ls -l" it still fails !!!
Dec 10 '07 #1
2 1806
More info:
File getim.htm contains:
[CODE}
<html><body>
<image src="./getim.php">
</body></html>
{/CODE]
File getim.php contains:
Expand|Select|Wrap|Line Numbers
  1. <?php
  2.     $command="dir";
  3.     exec($command);
  4.     $img=file_get_contents("gim29.gif");
  5.     header("Content-type: \"image/gif\"");
  6.     print $img;
  7.     exit ();
  8. ?>
  9.  
Silly test I know, but demonstartes the problem.
Call getim.htm in browser & PHP/Apache just hangs
Comment out the exec() & all's well

HELP please - I need to use exec() in my scripts
Dec 10 '07 #2
Even more info.
Looks like Windows only

Tried the above little test on Linux Server & all's well

Trouble is - I need it to work on Windows
Dec 10 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: Andr? Roberge | last post by:
I have the following two files: #--testexec.py-- def exec_code(co): try: exec co except: print "error" #-- test.py--
0
by: Jan | last post by:
I store sql-commands in a database table. In the first step I get the sql command out of the database table with embedded sql. In the second step I try to execute the command, which i got from the...
17
by: comp.lang.tcl | last post by:
The TCL command I am using will do a command-line action on a PHP script: set cannotRunPHP I have to do it this way as both the TCL script and the PHP script run as CLI. However, "info.php"...
5
by: TPJ | last post by:
I have the following code: ----------------------------------- def f(): def g(): a = 'a' # marked line 1 exec 'a = "b"' in globals(), locals() print "g: a =", a
4
by: Michael | last post by:
Hi, I'm having difficulty finding any previous discussion on this -- I keep finding people either having problems calling os.exec(lepev), or with using python's exec statement. Neither of...
21
by: comp.lang.tcl | last post by:
set php {<? print_r("Hello World"); ?>} puts $php; # PRINTS OUT <? print_r("Hello World"); ?> puts When I try this within TCL I get the following error:
2
by: xml0x1a | last post by:
How do I use exec? Python 2.4.3 ---- from math import * G = 1 def d(): L = 1 exec "def f(x): return L + log(G) " in globals(), locals() f(1)
11
by: 1965 | last post by:
Hi, All. I am new to PHP. Though I dug through this forum to try to find an answer to get_file_contents function, I failed. Please help with the below problem. I am testing building a page by...
26
by: warth33 | last post by:
Hello I have a php site. Some page needs to call an external program. The programs are home made c# applications. It uses to work without problem. For a while. Maybe it work for some hour....
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.