Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
142 views

Powershell: how to implement standard switches?

For things like -WhatIf, we have $PSCmdlet.ShouldProcess() given to us by the [CmdletBinding] attribute. Are there other such tools or practices for implementing common command line arguments such as ...
3
votes
2answers
46 views

How to pass the content of a variable trough an external command in php?

I have a variable that contains a long string. (specifically it contains a few kilobytes of javascript-code) I want to pass this string trough an external command, in this case a ...
2
votes
3answers
628 views

PHP exec() not working - exiting early? no error?

i am using PHP to run exec() on a script which looks like this: exec("pdftk xx.pdf fill_form xx.fdf output xx.pdf flatten"); the strangest thing is that when i log in to ssh and put the command in ...
2
votes
5answers
651 views

PHP/passthru/mysqldump seems to timeout

I've got a PHP script that I call to run MySQL database backups to .sql files, TAR/GZip them and e-mail them to me. One of the database is hosted by a different provider than the one providing the ...
1
vote
3answers
160 views

performance of passthru(“cat file”)

I'm using passthru("cat filepath") in my download script. My concern is that it might use a lot of server resource. What is the difference between directly link a file in a public directory and ...
1
vote
2answers
117 views

php start php script and continue

At the moment I have a line of code like this: system("/usr/bin/php myphpscript.php --param=".val); Is there a way to make php not wait for the script to finish - and just move on instead? It's a ...
1
vote
1answer
29 views

webservice reference shenanigans

I have a .net webservice (passthrough WS) that passes through to another one (underlying WS), passing a particular custom object. both WS's include the assembly with the particular custom object ...
1
vote
3answers
394 views

Interacting with multiple servers over SSH in PHP

I'm currently writing a deployment framework in PHP. The framework connects to servers and executes commands over SSH. I've been looking for quite a while trying to find a way in PHP to do this ...
1
vote
2answers
193 views

php execution time vs iddle time

This is more of a theoretical question. When I run a PHP script that does a passthru to some other program, say a Java application, lets assume that program works for 30 minutes and then ends ...
1
vote
1answer
384 views

PHP: Problem using passthru to stream a zip on mac os x only

I'm trying to put together a zip streaming solution through the use of Unix's zip command and PHP's passthru function, but I've hit a snag. The script looks something like this: <?php ...
0
votes
0answers
25 views

MS Access cancel execution of pass-thru query keyboard shortcut

When using SQL pass-thru queries in MS Access, there is a default time-out of 60 seconds, at which point an instruction is sent to the remote server to cancel the request. Is there anyway to send this ...
0
votes
2answers
54 views

PHP command not executed system(), exec() or passthru()

I am trying to run a command line file conversion using open office. openoffice pdf filename.doc 2>&1 when i execute in command line as root it works fine and the file is converted. However ...
0
votes
1answer
53 views

Determine how long a system(), pasthrus(), exec(), operation is taking in php

Want to know how to determine how long a call to system(), passthru(), exec() (either of these) takes. For example. I use system() to call an external program, I would like to time how long it takes ...
0
votes
1answer
101 views

Problem in using functions Exec, passthru, System

Hi all dear friends and teachers ... Heart In the design phase of my current project I'm wrong and I tried Game, unfortunately I missed a positive result. HuhHuh Project in the programming language ...
0
votes
1answer
114 views

Unable to execute ttf2afm from php

I am working on a project that involves PDF API TCPDF. So I needed an area in admin where site admin can upload and install new fonts to be used with TCPDF. I am working on a script that does ...
0
votes
3answers
45 views

Problem with passthru on server

I have a problem trying to run passthru function in my php code (Joomla module). the code is following (this is only a snippet) ob_start(); passthru("/usr/bin/whois 85.70.231.130 | /usr/bin/grep ...
0
votes
1answer
627 views

Mac OSX Convert library (html file to pdf) works via terminal but not PHP

I'm trying to take a generated html file and convert it to PDF on the fly with PHP. It's going on my localhost and staying there so for the PDF conversion I'm using a Mac OSX utility, I guess you ...
0
votes
1answer
211 views

Acces passthrough query for large sql table

I have a large table in a mysql database (6 million records). If I link the table, I can open it just fine--it seems like access requests the records as needed. However, if I use a passthrough query, ...
0
votes
1answer
411 views

IIS Proxy/pass through question

We have set of computers that need to access a certain web application (MVC) hosted on our ASP.NET box. These computers are on their own little subnet that can only see a small back office server that ...
0
votes
1answer
228 views

Why no Authorization Header received in SSO?

I implement a SSO with NTLM and passthru, and it works if our client had joined into domain. As in our code we will check if there is a "Authorization header" in the request header. And the problem ...
0
votes
1answer
205 views

Making dynamic text item transparent for mouse

I'm working with actionscript 3 and have a trouble. I need to write player where users will see text on the front of the movie. The text is text field of type "Dynamic text". The problem is that I ...
0
votes
1answer
25 views

Passthrough indentification in wcf

How do I pass the identity of the logged on user in an a webapplication to a service beeing called by the webserver? My idea her is to set som kind of EndpointIdentity on the cahnnel. In my case this ...
0
votes
3answers
1k views

exec function in PHP and passthru?

Hello I have a couple questions about PHP exec() and passthru(). 1) I never used exec() in PHP but I have seen it is sometimes used with imagemagick. I am now curious, what is some other common ...
0
votes
1answer
1k views

Why is calling (ImageMagick) convert.exe from PHP script resulting in an unresponsive page?

* This is now resolved * by clearing the temp folder in windows! Some info - Windows 2003 server, IIS 6 ImageMagick 6.3.3 PHP 5.2.0 I am using ImageMagick to resize images on the server and I think ...
0
votes
2answers
533 views

mysqldump passthru returncode's

I am trying to do a mysql dump via php. This is the code $backupFile = $table. "-". date("Y-m-d-H:i:s") . '.gz'; //Command nog aanpassen.... $command = "mysqldump --opt -h $dbhost -u ...
-1
votes
0answers
30 views

wget failing on PHP 5.3.5

A very simple wget command within PHP used to work fine on my old server, but fails on my new server. The php test file I created is as follows. If I run the exact commands from the shell it works ...