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 7 2141
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
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
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
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 -
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 -
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!
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 This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
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...
|
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...
|
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...
|
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--
|
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"...
|
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...
|
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...
|
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....
|
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...
|
by: Rina0 |
last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |