1
vote
5answers
65 views
Prevent file differences between live and staging websites AND system scripts (PHP)
I'm trying to find a good way to maintain PHP configuration differences between a dev and live environment. I know how to handle differences when scripts are run by Apache (see bel …
2
votes
4answers
102 views
Suppressing output from exec() calls in PHP
I have a number of command line scripts in PHP that use exec() to perform tasks such as restarting services, loading MySQL timezone files, etc. While exec() itself does not output …
0
votes
2answers
54 views
PHP CLI vs PHP WEB
Hiya All,
I am currently running a script that i've created in PHP that parses and sorts out 6 different xml files of around 40mb each.
I currently run the script through a brows …
1
vote
4answers
85 views
PHP Magic Constants
I am trying to get the filename of the script that is running (But not the include it is calling).
echo basename(__FILE__); # will always output include.php
echo basename($_SERVE …
0
votes
4answers
88 views
Escaping a literal <?php and <? in a PHP script
I am templatizing my php.ini using PHP. I have a script to set up a development environment by generating httpd.conf, apachectl, and php.ini from templates using a CLI PHP script. …
0
votes
6answers
63 views
php5 cli: no output
Hi, i've got a php script that runs on the command line. To improve it's performance, i would like to completely suppress it's output.
How can I do that?
Thanks!
1
vote
4answers
63 views
How to pass file into PHP CLI?
I have a PHP script named "scipt" and a textfile called 'data.txt'. Right now I can execute script, but then I need to type in "data.txt". Is there any way to pass in data.txt as a …
1
vote
1answer
113 views
filemtime() not working in Windows PHP-CLI
I just got PHP-CLI working on my Windows machine so I could create scripts using PHP. However, I'm trying to write a script to cleanup my Firefox downloads folder of files older t …
0
votes
4answers
244 views
Optimizing php command line scripts to process large flat files
I have a large flat file that I need to process in php. I convert the flat file into a normalized database in mysql. There are several million lines in the flat file.
I originally …
0
votes
4answers
138 views
How to use the php command line interactively?
Are there any howtos for using the php command line interactively? I found a lot about running sripts that are in text-files, but not really about the shell with the prompt where I …
0
votes
2answers
311 views
Using the PHP CLI with MAMP
Does MAMP come with the PHP CLI installed? I am trying to run a script from the command line, but using a Mac, with MAMP, and not knowing much about PHP CLI is making it difficult. …
1
vote
1answer
209 views
PHP cli Memory usage optimization
Hello
I am trying to code a custom url_rewriter for squid.
& also with using some other url_rewriter programs like squidGuard
so have to use a wrapper to able use both or an …
0
votes
2answers
127 views
Generic “Killed” error in PHP CRON job
I am working on a CRON job in PHP which has to do a lot of heavy lifting via the database. Think lots and lots of loops.
It executes properly when I limit the data set, but whe …
0
votes
2answers
82 views
PHP clone keyword vs clone() command line CLI issues
Hello,
I have been using the clone keyword to duplicate objects like so:
$x = clone $obj;
as per the manual.
This works fine when accessed by browser. phpinfo() reports PHP v …
0
votes
3answers
109 views
php long running script
how can I provide feedback for a shell command that may run for quite some time?
for example, i need a script that does hg clone ... then in my php i make a call
exec('hg clone . …
