473,419 Members | 4,373 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,419 software developers and data experts.

Problems with exec

I'm having a problem with exec on my hosting server. Unfortunately,
the hosting support seems to be anything but helpful.

The following works fine on my localhost:

<?php
$MaskData = "mask.exe -e \"TestString\"";

$Result = exec($MaskData, $Output, $ReturnValue);
echo("Result: ".$Result);
echo("ReturnValue: ".$ReturnValue."<br/>");

foreach($Output as $outputline)
{
echo("outputline: $outputline<br>");
}
?>

But on my hosting server, I've installed (I believe) the properly
compiled version for that os, and it always returns 127. I don't have
shell access, so I'm a bit of loss on how to proceed. Any
information on this return code or how to work through this, would be
greatly appreciated.

Thanks, J
Nov 27 '07 #1
7 2181
JahMic wrote:
I'm having a problem with exec on my hosting server. Unfortunately,
the hosting support seems to be anything but helpful.

The following works fine on my localhost:

<?php
$MaskData = "mask.exe -e \"TestString\"";

$Result = exec($MaskData, $Output, $ReturnValue);
echo("Result: ".$Result);
echo("ReturnValue: ".$ReturnValue."<br/>");

foreach($Output as $outputline)
{
echo("outputline: $outputline<br>");
}
?>

But on my hosting server, I've installed (I believe) the properly
compiled version for that os, and it always returns 127. I don't have
shell access, so I'm a bit of loss on how to proceed. Any
information on this return code or how to work through this, would be
greatly appreciated.

Thanks, J
Hi J,

If you cannot execute in a shell, do a phpinfo(), and find the following
settings:

safe_mode = On or Off
and
safe_mode_exec_dir =

Is safe_mode maybe On, and is your mask.exe not listed in
safe_mode_exec_dir?

If so, you know why you cannot execute mask.exe.

Read more here: http://nl3.php.net/manual/en/function.phpinfo.php

Bottomline: Talk with your hosting provider. If they do not cooperate,
switch hosting provider or do not use mask.exe.

Regards,
Erwin Moller
Nov 27 '07 #2
On Nov 27, 7:14 pm, Erwin Moller
<Since_humans_read_this_I_am_spammed_too_m...@spam yourself.comwrote:
JahMic wrote:
I'm having a problem with exec on my hosting server. Unfortunately,
the hosting support seems to be anything but helpful.
The following works fine on my localhost:
<?php
$MaskData = "mask.exe -e \"TestString\"";
$Result = exec($MaskData, $Output, $ReturnValue);
echo("Result: ".$Result);
echo("ReturnValue: ".$ReturnValue."<br/>");
foreach($Output as $outputline)
{
echo("outputline: $outputline<br>");
}
?>
But on my hosting server, I've installed (I believe) the properly
compiled version for that os, and it always returns 127. I don't have
shell access, so I'm a bit of loss on how to proceed. Any
information on this return code or how to work through this, would be
greatly appreciated.
Thanks, J

Hi J,

If you cannot execute in a shell, do a phpinfo(), and find the following
settings:

safe_mode = On or Off
and
safe_mode_exec_dir =

Is safe_mode maybe On, and is your mask.exe not listed in
safe_mode_exec_dir?

If so, you know why you cannot execute mask.exe.

Read more here:http://nl3.php.net/manual/en/function.phpinfo.php

Bottomline: Talk with your hosting provider. If they do not cooperate,
switch hosting provider or do not use mask.exe.

Regards,
Erwin Moller
Hi Erwin,

Thanks for the quick reply. safe mode is actually off. This
application is in the same directory as the scripts. If I change
$MaskData = "mask.exe -e \"TestString\""; to $MaskData = "./mask.exe -
e \"TestString\""; (the addition of ./) the value of $ReturnValue is 1
and no values for $Result and $output. (Output should be a long
string).

A hosting provider switch is likely, but this is an immediate issue
that I need to get taken care. Once again, any help is much
appreciated.

Thanks, J

Nov 27 '07 #3
JahMic wrote:
On Nov 27, 7:14 pm, Erwin Moller
<Since_humans_read_this_I_am_spammed_too_m...@spam yourself.comwrote:
>JahMic wrote:
>>I'm having a problem with exec on my hosting server. Unfortunately,
the hosting support seems to be anything but helpful.
The following works fine on my localhost:
<?php
$MaskData = "mask.exe -e \"TestString\"";
$Result = exec($MaskData, $Output, $ReturnValue);
echo("Result: ".$Result);
echo("ReturnValue: ".$ReturnValue."<br/>");
foreach($Output as $outputline)
{
echo("outputline: $outputline<br>");
}
?>
But on my hosting server, I've installed (I believe) the properly
compiled version for that os, and it always returns 127. I don't have
shell access, so I'm a bit of loss on how to proceed. Any
information on this return code or how to work through this, would be
greatly appreciated.
Thanks, J
Hi J,

If you cannot execute in a shell, do a phpinfo(), and find the following
settings:

safe_mode = On or Off
and
safe_mode_exec_dir =

Is safe_mode maybe On, and is your mask.exe not listed in
safe_mode_exec_dir?

If so, you know why you cannot execute mask.exe.

Read more here:http://nl3.php.net/manual/en/function.phpinfo.php

Bottomline: Talk with your hosting provider. If they do not cooperate,
switch hosting provider or do not use mask.exe.

Regards,
Erwin Moller

Hi Erwin,

Thanks for the quick reply. safe mode is actually off.
Good.

This
application is in the same directory as the scripts. If I change
$MaskData = "mask.exe -e \"TestString\""; to $MaskData = "./mask.exe -
e \"TestString\""; (the addition of ./) the value of $ReturnValue is 1
and no values for $Result and $output. (Output should be a long
string).
Ok, the $ReturnValue says 1, so I expect that the command DID run
succesfully.
Very strange your $Output array is empty.

Of course, what you want now is run the command by hand in a shell as
user PHP, being on Apache: Apache, or nobody or www-data, or
IUSR_<machinenameon IIS.

But you cannot.

So you'll have to debug by guessing.
Does the mask.exe has execution rights for PHP-user?
Do you maybe use files in mask.exe that are not accecible by PHP?
Throw in a full path to mask.exe instead of ./
Check your slashes, etc.
Try passthru() instead of exec().
And last but not least, insult the supportdepartment of your hosting
provider. ;-)

Good luck.

Regards,
Erwin Moller
A hosting provider switch is likely, but this is an immediate issue
that I need to get taken care. Once again, any help is much
appreciated.

Thanks, J
Nov 27 '07 #4
Hi Erwin, Once again thanks for the help. More comments below:

On Nov 27, 8:20 pm, Erwin Moller
<Since_humans_read_this_I_am_spammed_too_m...@spam yourself.comwrote:
JahMic wrote:
On Nov 27, 7:14 pm, Erwin Moller
<Since_humans_read_this_I_am_spammed_too_m...@spam yourself.comwrote:
JahMic wrote:
I'm having a problem with exec on my hosting server. Unfortunately,
the hosting support seems to be anything but helpful.
The following works fine on my localhost:
<?php
$MaskData = "mask.exe -e \"TestString\"";
$Result = exec($MaskData, $Output, $ReturnValue);
echo("Result: ".$Result);
echo("ReturnValue: ".$ReturnValue."<br/>");
foreach($Output as $outputline)
{
echo("outputline: $outputline<br>");
}
?>
But on my hosting server, I've installed (I believe) the properly
compiled version for that os, and it always returns 127. I don't have
shell access, so I'm a bit of loss on how to proceed. Any
information on this return code or how to work through this, would be
greatly appreciated.
Thanks, J
Hi J,
If you cannot execute in a shell, do a phpinfo(), and find the following
settings:
safe_mode = On or Off
and
safe_mode_exec_dir =
Is safe_mode maybe On, and is your mask.exe not listed in
safe_mode_exec_dir?
If so, you know why you cannot execute mask.exe.
Read more here:http://nl3.php.net/manual/en/function.phpinfo.php
Bottomline: Talk with your hosting provider. If they do not cooperate,
switch hosting provider or do not use mask.exe.
Regards,
Erwin Moller
Hi Erwin,
Thanks for the quick reply. safe mode is actually off.

Good.

This
application is in the same directory as the scripts. If I change
$MaskData = "mask.exe -e \"TestString\""; to $MaskData = "./mask.exe -
e \"TestString\""; (the addition of ./) the value of $ReturnValue is 1
and no values for $Result and $output. (Output should be a long
string).

Ok, the $ReturnValue says 1, so I expect that the command DID run
succesfully.
Actually, on successful systems $ReturnValue is 0.
Very strange your $Output array is empty.
Is there a possible way to pipe or redirect the output?
>
Of course, what you want now is run the command by hand in a shell as
user PHP, being on Apache: Apache, or nobody or www-data, or
IUSR_<machinenameon IIS.

But you cannot.

So you'll have to debug by guessing.
Does the mask.exe has execution rights for PHP-user?
I've tried 777 to no avail.
Do you maybe use files in mask.exe that are not accecible by PHP?
No other files
Throw in a full path to mask.exe instead of ./
to no avail?
Check your slashes, etc.
Try passthru() instead of exec().
nada
And last but not least, insult the supportdepartment of your hosting
provider. ;-)
Don't worry about that, I'm giving them their due share of grieve.

Thanks, James
>
Good luck.

Regards,
Erwin Moller
A hosting provider switch is likely, but this is an immediate issue
that I need to get taken care. Once again, any help is much
appreciated.
Thanks, J- Hide quoted text -

- Show quoted text -- Hide quoted text -

- Show quoted text -
Nov 28 '07 #5
JahMic wrote:

>>application is in the same directory as the scripts. If I change
$MaskData = "mask.exe -e \"TestString\""; to $MaskData = "./mask.exe -
e \"TestString\""; (the addition of ./) the value of $ReturnValue is 1
and no values for $Result and $output. (Output should be a long
string).
Ok, the $ReturnValue says 1, so I expect that the command DID run
succesfully.

Actually, on successful systems $ReturnValue is 0.
Oops. Sorry for the confusion.
>
>Very strange your $Output array is empty.

Is there a possible way to pipe or redirect the output?
Well, passthru() should do this.

<quote>
The passthru() function is similar to the exec() function in that it
executes a command . This function should be used in place of exec() or
system() when the output from the Unix command is binary data which
needs to be passed directly back to the browser. A common use for this
is to execute something like the pbmplus utilities that can output an
image stream directly. By setting the Content-type to image/gif and then
calling a pbmplus program to output a gif, you can create PHP scripts
that output images directly.
</quote>

>
>Of course, what you want now is run the command by hand in a shell as
user PHP, being on Apache: Apache, or nobody or www-data, or
IUSR_<machinenameon IIS.

But you cannot.

So you'll have to debug by guessing.
Does the mask.exe has execution rights for PHP-user?

I've tried 777 to no avail.
clear.
>
>Do you maybe use files in mask.exe that are not accecible by PHP?

No other files
Anything else that might need additional rights?
Maybe opening ports under 1024 on *nix?

>
>Throw in a full path to mask.exe instead of ./

to no avail?
:-(
>
>Check your slashes, etc.
Try passthru() instead of exec().

nada
>And last but not least, insult the supportdepartment of your hosting
provider. ;-)

Don't worry about that, I'm giving them their due share of grieve.
Sorry James,

What you really need to do first is run the program from commandline to
see if it actually works.

You don't know for sure the program works. Is that right?

But I understand that is not possible, since you don't have shell. :-/
I think I would try the supportdepartment and ask then to try it for you.
Give them the command and ask them to run it for you.
If they refuse, shoot them. :P

It is very difficult to debug like this of course.
Sorry, I am also out of options.

Good luck!

Regards,
Erwin Moller
Thanks, James
>Good luck.

Regards,
Erwin Moller
>>A hosting provider switch is likely, but this is an immediate issue
that I need to get taken care. Once again, any help is much
appreciated.
Thanks, J- Hide quoted text -
- Show quoted text -- Hide quoted text -

- Show quoted text -
Nov 28 '07 #6
On Nov 28, 5:37 am, Erwin Moller
<Since_humans_read_this_I_am_spammed_too_m...@spam yourself.comwrote:
JahMic wrote:
>application is in the same directory as the scripts. If I change
$MaskData = "mask.exe -e \"TestString\""; to $MaskData = "./mask.exe -
e \"TestString\""; (the addition of ./) the value of $ReturnValue is 1
and no values for $Result and $output. (Output should be a long
string).
Ok, the $ReturnValue says 1, so I expect that the command DID run
succesfully.
Actually, on successful systems $ReturnValue is 0.

Oops. Sorry for the confusion.
Very strange your $Output array is empty.
Is there a possible way to pipe or redirect the output?

Well, passthru() should do this.

<quote>
The passthru() function is similar to the exec() function in that it
executes a command . This function should be used in place of exec() or
system() when the output from the Unix command is binary data which
needs to be passed directly back to the browser. A common use for this
is to execute something like the pbmplus utilities that can output an
image stream directly. By setting the Content-type to image/gif and then
calling a pbmplus program to output a gif, you can create PHP scripts
that output images directly.
</quote>
Of course, what you want now is run the command by hand in a shell as
user PHP, being on Apache: Apache, or nobody or www-data, or
IUSR_<machinenameon IIS.
But you cannot.
So you'll have to debug by guessing.
Does the mask.exe has execution rights for PHP-user?
I've tried 777 to no avail.

clear.
Do you maybe use files in mask.exe that are not accecible by PHP?
No other files

Anything else that might need additional rights?
Maybe opening ports under 1024 on *nix?
Throw in a full path to mask.exe instead of ./
to no avail?

:-(
Check your slashes, etc.
Try passthru() instead of exec().
nada
And last but not least, insult the supportdepartment of your hosting
provider. ;-)
Don't worry about that, I'm giving them their due share of grieve.

Sorry James,

What you really need to do first is run the program from commandline to
see if it actually works.

You don't know for sure the program works. Is that right?

But I understand that is not possible, since you don't have shell. :-/

I think I would try the supportdepartment and ask then to try it for you.
Give them the command and ask them to run it for you.
If they refuse, shoot them. :P

It is very difficult to debug like this of course.
Sorry, I am also out of options.

Good luck!

Regards,
Erwin Moller
Thanks, James
Good luck.
Regards,
Erwin Moller
>A hosting provider switch is likely, but this is an immediate issue
that I need to get taken care. Once again, any help is much
appreciated.
Thanks, J- Hide quoted text -
- Show quoted text -- Hide quoted text -
- Show quoted text -
What if you tried using exec to run the command but piping standard
out to one file and standard error to another file. Make sure both of
these files are in your home directory - and then use fopen to read
them. This probably won't help tooooo much but it might give you some
insight. Good luck!
Nov 29 '07 #7
On Nov 29, 9:13 pm, Aaron Saray <102degr...@102degrees.comwrote:
On Nov 28, 5:37 am, Erwin Moller

<Since_humans_read_this_I_am_spammed_too_m...@spam yourself.comwrote:
JahMicwrote:
>>application is in the same directory as the scripts. If I change
>>$MaskData = "mask.exe -e \"TestString\""; to $MaskData = "./mask.exe -
>>e \"TestString\""; (the addition of ./) the value of $ReturnValue is 1
>>and no values for $Result and $output. (Output should be a long
>>string).
>Ok, the $ReturnValue says 1, so I expect that the command DID run
>succesfully.
Actually, on successful systems $ReturnValue is 0.
Oops. Sorry for the confusion.
>Very strange your $Output array is empty.
Is there a possible way to pipe or redirect the output?
Well, passthru() should do this.
<quote>
The passthru() function is similar to the exec() function in that it
executes a command . This function should be used in place of exec() or
system() when the output from the Unix command is binary data which
needs to be passed directly back to the browser. A common use for this
is to execute something like the pbmplus utilities that can output an
image stream directly. By setting the Content-type to image/gif and then
calling a pbmplus program to output a gif, you can create PHP scripts
that output images directly.
</quote>
>Of course, what you want now is run the command by hand in a shell as
>user PHP, being on Apache: Apache, or nobody or www-data, or
>IUSR_<machinenameon IIS.
>But you cannot.
>So you'll have to debug by guessing.
>Does the mask.exe has execution rights for PHP-user?
I've tried 777 to no avail.
clear.
>Do you maybe use files in mask.exe that are not accecible by PHP?
No other files
Anything else that might need additional rights?
Maybe opening ports under 1024 on *nix?
>Throw in a full path to mask.exe instead of ./
to no avail?
:-(
>Check your slashes, etc.
>Try passthru() instead of exec().
nada
>And last but not least, insult the supportdepartment of your hosting
>provider. ;-)
Don't worry about that, I'm giving them their due share of grieve.
Sorry James,
What you really need to do first is run the program from commandline to
see if it actually works.
You don't know for sure the program works. Is that right?
But I understand that is not possible, since you don't have shell. :-/
I think I would try the supportdepartment and ask then to try it for you.
Give them the command and ask them to run it for you.
If they refuse, shoot them. :P
It is very difficult to debug like this of course.
Sorry, I am also out of options.
Good luck!
Regards,
Erwin Moller
Thanks, James
>Good luck.
>Regards,
>Erwin Moller
>>A hosting provider switch is likely, but this is an immediate issue
>>that I need to get taken care. Once again, any help is much
>>appreciated.
>>Thanks, J- Hide quoted text -
>- Show quoted text -- Hide quoted text -
>- Show quoted text -

What if you tried using exec to run the command but piping standard
out to one file and standard error to another file. Make sure both of
these files are in your home directory - and then use fopen to read
them. This probably won't help tooooo much but it might give you some
insight. Good luck!- Hide quoted text -

- Show quoted text -
As it turns out, after blindly switching binaries, I found out I was
trying to use a binary for a different OS. (too many flavors of unix)
Of course, if I had shell access, I could have found this out in 5
minutes. Onwards to other problems.

Many thanks for all the help,

J
Dec 1 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: starlightjen | last post by:
Hello, I'm trying to use php to update my htpasswd file. I have my permissions on .htpasswd set to 777, so it should be wide open. From the command line (when logged into the server as...
6
by: Hal Vaughan | last post by:
I have a script used to find and run Java on a Windows system.  It worked fine on original tests (on a Windows XP system).  It's now running on a Windows 2000 (sp3) system, and it won't work -- the...
1
by: Hal Vaughan | last post by:
I've been using Runtime.exec() like this: Runtime rt = Runtime.getRuntime(); try {Process p = rt.exec("MyCommand.bat");} catch (Exception e) {do stuff} When I start my Java classes, I start...
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--
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"...
0
by: Christian Rank | last post by:
Today I ran into problems when combining a C program with SQL statements with the ECPG interface of PostgreSQL: According to the documentation, it should be possible with EXEC SQL WHENEVER NOT...
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...
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....
23
by: Maarten | last post by:
Howdy, Recently I switched from a Windows PC to Mac OS-X 10.5 (php v5.2.6) and I have a little problem with one function within my cd-management script. For extracting a bit of info from my...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
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.