The command line interface of the PHP programming language. It can be used as an alternative to shell script, perl script and so on.
1
vote
1answer
12 views
PHP Sockets - socket_sendto() - UDP Header Mismatch
running into a problem I can't quite explain.
I'm building an interface to a system that sends a 36-byte 'notification' packet, and expects a 36-byte 'acknowledgement' packet.
The 36-byte payload is ...
0
votes
1answer
28 views
unable to run php cli from the command line when xampp portable is installed in another drive
I have installed a xampp portable package on my drive D, added the php folder path inside it on the system environment so I would be able to run php basically anywhere from the command line. but when ...
2
votes
1answer
52 views
Keep communication with database mysql when the browser closed by user
I currently need help comrades here. I'm making application development based on php, the application is quesionaire system, which the system have countdown timer for 60 minutes when user already ...
0
votes
1answer
25 views
Initialize a php script then stop to do another job
I'm looking for a method to initialize a php script (script.php) from a php script (main.php) then the main.php quickly skip the running process of script.php to continue for its main job.
I know it ...
0
votes
0answers
51 views
mysql_error() returning 'No such file or directory' in php run via unix terminal
I'm working through this tutorial on php development via the command line (I'm using a unix prompt on a mac). I have the code below in a file titled test.php.
<?php
define ...
1
vote
1answer
38 views
Detect command running in background
I am using php and its command line interface to execute a script. During script execution I call some commands in the background (some of which are quite time consuming), using the following code ...
1
vote
1answer
38 views
optimal way of passing multiple callback functions as arguments?
I have a function that could be used in CLI or web application, that being said, there is a little difference in the process; for example: if I'm using this function for CLI it'll use a text progress ...
0
votes
2answers
56 views
Unexpected notice: undefined index when null
I've written a little script that is supposed to create an array that looks something like this:
array(1 => array( 'month' => 'Jan',
'salary' => '01/31/2013',
...
0
votes
2answers
79 views
Running a PHP script on email arrival in an IMAP Server
I'm trying to implement a webmail in PHP. I would like to write a PHP CLI script which is run on every email arrival to store some parts of (not all of) incoming email into database for search ...
0
votes
1answer
56 views
How to read Output of Console Command in Yii?
I am trying to build some cron jobs to do backup some critical data on my Yii WebApplication
I have built the the CConsoleCommand Class that needs to run. It runs fine and the command is executed
...
0
votes
1answer
29 views
STDIN is only working randomly [PHP CLI]
So I have this script that changes the color of the text in the console. The problem is that although it accepts a string from both STDIN and the -s argument, it will occasionally leave out STDIN in ...
1
vote
2answers
26 views
PHP script doesn't run when called by lookup in $PATH variable
I have a PHP script located in a folder in my $PATH variable. The first line of the script is as follows:
#!/usr/bin/php
When I execute this script in bash by supplying the path to the script (for ...
1
vote
2answers
54 views
In Ubuntu how can I execute multiple simultaneous terminals from PHP?
I have a script in PHP that I run from a CLI.
Inside the script I have the following loop:
foreach($array as $key => $value){
exec("gnome-terminal -e php myscript.php $key $value > ...
0
votes
2answers
137 views
Cannot run PHP CLI on WAMP on Windows 8
I have been trying on this for hours
i Get the below error
'php' is not recognized as an internal or external command,
operable program or batch file.
Steps i have done
1- I have added to Windows ...
0
votes
0answers
75 views
PHP: Apache crash caused by Executing PDO prepared statement (CLI works fine)?
I have a really weird problem with a script I just wrote.
It works perfectly using the CLI.
Using the browser it crashes twice with the only error being:
Error 103 (net::ERR_CONNECTION_ABORTED): ...
2
votes
2answers
85 views
How to check if Tor is running within PHP?
I'm using Tor with PHP, for now, everything is working properly. But, when I try to start Tor from php it'll sometimes throw an error becuase Tor is currently running, so i've been wondering if there ...
2
votes
1answer
185 views
Failed to open stream: Too many open files
I'm writing a PHP CLI script for a client that runs in a shared hosting. It logs to a file using a simple function like:
function log_entry($msg) {
global $log_file, $log_handle;
$msg = ...
0
votes
1answer
59 views
Running PHP code from CLI and from Browser giving different results
I have stuck in a strange situation, I have a code to fetch albums from flickr. test.php
http://example.com/cron/test.php?uid=613
$f->setToken($user_token);
$all_album_list = ...
0
votes
1answer
34 views
Clear cache for PHP syntax checking
At the company I work we use Jenkins to CI our PHP code. We also use PHP CLI syntax checking to see if there are any syntax errors. Command us:
$ php -l
When a file is new or edited and this file ...
2
votes
1answer
71 views
php cant use interactive shell even after installing libreadline*
Im newbie in linux environment and in php, i want to use php interactive shell php -a but it seemeed it missed something, so i searched around and found out that i need to install libreadline* , and ...
0
votes
1answer
15 views
Portable paths and PHP CLI
So I got burned again by forgetting that the CLI does not have $_SERVER['DOCUMENT_ROOT'] defined.
What is the best way to get a portable/relative path in a PHP script that will be run by cron?
3
votes
1answer
33 views
Prepend commands in PHP CLI interactive mode
How can I start the php interactive mode (php -a) with pre-executing certain commands?
The option -B (--process-begin) seems exactly what I want, but it looks like this can not be combined with `-a-:
...
0
votes
0answers
26 views
Catch a specific warning in PHP cli
I made a script in php-cli that incurs in some warnings, i need to catch only one of them and kill the script "die();" only if it comes.
this:
Warning: fgets() expects parameter 1 to be resource, ...
0
votes
1answer
64 views
How i can run a default browser from .bat file
I create a PHP server instance and I would like to run browser automatically with running run.bat
Bat file content:
"php/php.exe" -S localhost:81 -t dokuwiki
1
vote
1answer
304 views
GoDaddy Cron Job PHP version (difference from sites PHP)
I have created a PHP script to do some automatic DB and scraping stuff for a GoDaddy website.
Our GoDaddy site runs PHP 5.3.13, it is just the default one you get. And this script can be run manually ...
0
votes
0answers
28 views
exec php-cli vs curl_init file
Lets hypothetically say I'm using curl_init that scrapes the content of a webpage. Let say these files are all sitting on the localhost and lets further say it's just for running cron jobs on the ...
0
votes
1answer
151 views
problems with php-cli
i have some strange problem with my php-cli, when in ruining php --info i see that php uses /etc/php.ini, and something strange when i'm changing php.ini the php --info shows me different values of ...
0
votes
1answer
38 views
Communicating directly with an SCGI channel
On my home server I'm trying to write a command line script that communicates with an SCGI (XML-RPC) server (rtorrent). Since it's really the only language that I'm any good at, I'd like to use PHP ...
1
vote
2answers
66 views
PHP `-l` flag not finding errors
Why might the PHP -l switch not find errors in test.html.
$ cat test.html
<?php
error_reporting(E_ALL);
echo "Hello, world!";
sdfsdfsdfsdf
?>
$ php -dhtml_errors=0 -ddisplay_errors=On -l ...
0
votes
2answers
51 views
time/date calculations
I have a database of users and each user has its own timezone settings.
For example, user A has GMT-05:00 , user B has GMT+1:00 , etc
I am trying to display the correct current date/time for this ...
-2
votes
1answer
55 views
Where can I download MySQL extension for windows and how can I make it work with php5.4's built in http server? [closed]
PHP 5.4 does not include mysql extension.
Does anybody know where can I download mysql extension for windows and how to configure php's built in http server to work with it?
1
vote
1answer
24 views
how it is possible to retrieve console --parameter values in php-cli?
When calling a PHP script in console this way:
phpscript.php --param1=value --param2=value2
How it is possible to retrieve param1 and param2 values?
0
votes
2answers
136 views
PHP Documentor installed via PEAR, phpdoc Command Not Found
I installed PHP Documentor on a shared host (Just Host) via PEAR and it appears to have installed correctly, no errors reported, and phpdoc is listed under the bin directory. Further, phpDocumentor is ...
0
votes
0answers
166 views
PHP Ajax Post Request with exec() weird issue
I'm using Yii and I have an ajax post request that looks like this:
function fetch_stat(link_id, fetch_type) {
// link_id array
// fetch_type string
$.ajax({
url: '<?php echo ...
0
votes
2answers
88 views
PHP Unsigned Right Shift - Malfunctioning
So, when using my method to preform a ( >>> ) unsigned right shift in PHP, the result is incorrect when the numbers involve negatives.
PHP Application Results:
INPUT: 10 >>> 3
INPUT: -10 ...
-1
votes
1answer
443 views
EasyPHP Windows7 wrong PATH variable [closed]
I got the problem with env variable PATH in Windows 7. Unfortunately PHP-CLI see PATH variable incorrect. How to solve my problem?
Server info
Apache/2.4.2 (Win32) PHP/5.4.6
PHP Version 5.4.6
...
1
vote
1answer
47 views
PHP server “catch-all” requests
I'm using the PHP built-in server for a small, personal project.
I'm just wondering if there's any way to rewrite all requests to just one script, which can then use $_SERVER['REQUEST_URI'] and ...
8
votes
1answer
132 views
Memory consumption on an iteration script
I have a script written in PHP and the same script written in Javascript.
It iterates a million times and on each time strips a string into an array and assigns the first array item into a new ...
0
votes
0answers
101 views
How to share the APC user cache between CLI and Web Server instances?
I am using PHP's APC to store a large amount of information (with apc_fetch(), etc.). This information occasionally needs analyzed and dumped elsewhere.
The story goes, I'm getting several hundred ...
0
votes
0answers
60 views
I want disable cli-sapi on netbeans/mamp for Symfony2 Generator
I'm developing in Symfony 2 using NetBeans 7.2.1 and Mamp 2.1.1, but when I run a sf2 generator the NB console return a error.
Analyzing the code, php.ini and debugging the execution of generator, I ...
2
votes
2answers
952 views
Getting “Comments starting with '#' are deprecated” message via CLI
I have a very limited access to server php configuration files .
when I run some of my cron scripts which involves writing log files , I am getting a warning like this
Comments starting with '#' ...
1
vote
1answer
157 views
require_once: cannot allocate memory
I have a pretty "unconventional" setup that looks like this:
I have a VMware virtual machine running Ubuntu Desktop 12.10 with networking set to bridge. Installed inside the VM is nginx, php-fpm, ...
1
vote
1answer
46 views
PHP CLI Callback
When PHP run normally I just refresh the browser via PHP header, javascript to re-run.
But I want do something like this in CLI mode. My current crawling script took very long time to execute and ...
1
vote
0answers
198 views
PHP Out of Memory Error with CURL
i'm experiencing some fatal errors when using CURL to retrieve remote images.
Error Message:
PHP Fatal error: Out of memory (allocated 786432) (tried to allocate 266241 bytes)
I have a function ...
0
votes
0answers
102 views
Php CLI extremely slow in Zend Server CE
I installed Zend Server CE and everything works great so far, but when I try php on command line it's extremely slow. It tooks five seconds only to display version.
I'm using Windows 8 64bit, and PHP ...
0
votes
0answers
37 views
Why doesn't the php cli add linebreaks after `echo` commands?
Since upgrading to php 5.4, issuing echo commands no longer includes automatic line breaks. In order to get similar behavior, you must now append your own; otherwise, you get the prompt on the same ...
1
vote
1answer
160 views
Running a PHP CLI Script from a PHP Application
I have a php file which needs to be executed in CLI from my Php application which runs on CodeIgniter framework. I tried the exec and shell_exec command and it seems to not start the process. Please ...
-1
votes
3answers
130 views
Forward email message [closed]
I've got an email message represented by a string, it already contains all headers, attachments, etc. What I need to do is to forward that email to another address and I don't want to touch that ...
0
votes
1answer
97 views
Change save path of PHP interactive shell history
I once found a way to disable session logging by php -a, php's interactive shell. How do I turn it back on? Is there a way to send logging to another, file besides ~/.php_history? I think I may have ...
2
votes
3answers
51 views
Receiving cmd line arguments as array
Writing a little command-line script at the moment, and I've got it working pretty nicely.
The script loops until the user issues an exit command, during which the user can enter commands like so:
...





