-1
votes
2answers
25 views

PHP echo not displaying in Terminal (OS X 10.8) [closed]

I don't have much experience running PHP from Terminal, though I have done straight server-uploads for some time. Essentially I'm trying to run some PHP locally, but none of the "echo" statements are ...
0
votes
2answers
31 views

Start server in current directory (php/apache)

Apparently, you can start a temporary server with Python, by using: python -m SimpleHTTPServer Is there a way to do this for PHP and Apache? e.g. one command which will serve the current folder as ...
0
votes
1answer
30 views

Can't open lib '/opt/ibm/iSeriesAccess/lib64/… : file not found?

I am connecting to IBM AS 400 server through php. The ODBC drivers are properly installed and i can do everything from browser. But when i execute a php file on linux terminal (php -f filename.php), ...
-2
votes
2answers
29 views

php script error when using dirname [closed]

$reportDir = dirname(dirname(__FILE__))."/data/$orgShortName/cron"; if(!is_dir($reportDir)) { mkdir(dirname(dirname(__FILE__))."/data/$orgShortName/"); } $reportUrl = ...
0
votes
1answer
70 views

Can't connect to MySQL, even though running

This is driving me crazy! I have MySQL preference pane on my Mac OS X Lion, and also start and stop it from Terminal. mysql works from terminal and I can connect to databases, but when I do it from ...
0
votes
1answer
54 views

PHP - Executing say function from mac shell / terminal

I am trying to make a simple php script that takes text from user input and then uses mac's terminal 'say' function (text-to-speach) to read the text aloud. The only resource I've been able to find ...
0
votes
2answers
32 views

will “service httpd reload” reload new php.ini settings?

I'm trying to enable shorthand in PHP via setting this: short_open_tag = 1 I then execute: service httpd reload however the changes do not take effect. do I need to do "service apache2 reload" ...
0
votes
1answer
137 views

How do I link mcrypt?

I am trying to install mcrypt for use on my local machines dev environment. I need to this to install Magento. I used this answer to install mcrypt, but get the following error: $ brew link ...
0
votes
1answer
29 views

php system() doesnt let the rest of the code , execute

I have a PHP script like this: <?php system("firefox http://run.imacros.net/?m=the_macro.iim 2>&1"); // CODE// ?> When I run this from terminal, opens my FireFox normally ...
0
votes
1answer
41 views

PHP mail() troubles Mac

I am trying to send an email from my mac using the php mail() function, but I cannot seem to get it to work. I can start sendmail from the terminal with no errors, and have edited my system's php.ini ...
0
votes
1answer
57 views

Macports port not found

I am a relatively new Mac user (coming from a ubuntu/debian background) and have attempted to replace apt-get with macports "port" command. I've installed XCode and Macports successfully (my terminal ...
1
vote
0answers
131 views

Read data from USB serial device

I am trying to read data from a USB serial RFID device in Ubuntu. The device is: https://www.sparkfun.com/products/8852 The device is recognised under Ubuntu as: /dev/ttyUSB0 If I use programs ...
1
vote
2answers
196 views

SSH terminal using JS, HTML5 and PHP

I'm looking for a solution like GateOne that i could install on a server which support PHP for which i have no ssh connection. It also support Python but i can't execute anything on it without an ...
1
vote
1answer
53 views

how to get c++ compile results on linux with php

I want to get compile errors with php. I can take the outputs of some commands but I can't take compile command outputs. for example : $compileCode = "g++ -o program program.cpp"; $output = ...
-5
votes
2answers
44 views

PHP debuging printing into command line [closed]

I have a php server, and I want to create a function that will receive a variable and will print it into a terminal/command line that will be open at the same time. Any idea how it can be done? Linux ...
1
vote
1answer
93 views

Trying to deploy to appfog anchorcms

I have just installed the command line tool for appfog and logged in, in the instructions it says run af update app Now I am trying to setup [anchorcms][1] do I run af update anchor (when I am in the ...
0
votes
1answer
102 views

PHPUnit runs on Terminal but not in NetBeans

I'm running Mac OS X 10.6 w/ bitnami mampstack 5.4.11 (PHP 5.4.11) and NetBeans 7.2.1. Since I've switched from XAMPP (for Mac) w/ PHP 5.3.x to 5.4+ NB can't use PHPUnit or any other bash script. ...
0
votes
2answers
135 views

Using terminal, how do I make OS X use MAMPs version of PHP

I'm currently learning the Yii framework, and one of the tutorials I was running through yesterday required me to test the database connection of a project. The details aren't too important here, but ...
0
votes
1answer
247 views

gearman issues & php cli

I'm having some gearman issues when trying to run commands in terminal using php cli. For example I run this command: gearmand --log-file=/var/log/gearman-job-server/gearman.log and get: gearmand: ...
0
votes
1answer
103 views

Issues installing gearman on MAMP running OS X 10.8

As the title states I am having some issues when installing gearman for PHP in a MAMP environment. Here's what I've done so far: I've downloaded the latest PECL version and run these commands based ...
0
votes
0answers
86 views

Unable to run Xcodebuild command from php file on mac machine

I'm trying to run following command from php file and it's work fine. exec('/usr/bin/xcodebuild -version', $output); print_r($output); But when I'm trying to run following command and it wont ...
1
vote
3answers
114 views

php command line change text output

I want to know is it possible to change some output for special php cli base application to change some value on terminal not echo new one. for example this is cli application. #!/usr/bin/env php ...
1
vote
1answer
70 views

How do I set up PHPUnit locally on a Windows laptop?

I have no software related to PHP on my laptop. I know how to code in PHP and have previously used Subversion through Eclipse which connects to a web server but unfortunately I'm struggling to find ...
0
votes
0answers
50 views

Symfony2: Can't launch after generating bundle

I just created a Symfony2 project by generating this with Terminal (OSX). I generated the following things: Bundle Namespace: SG/FOBundle Bundle Name: SGFOBundle Configuration Format: YML All ...
0
votes
1answer
67 views

var_dump() output shortned - phpunit or my terminal?

I am writing tests in phpunit and every now and then I have to do a var_dump($this->getRequest()->getBody()) which is all fine and dandy, how ever in the terminal when I do: phpunit ...
0
votes
1answer
173 views

Add a track to spotify playlist using spotify-api-server

I've asked the owner for the project for some help, but thought I'd ask stack overflow as well. Does anyone know how to correctly add a track using the spotify-api-server? I'm sure i'm missing ...
0
votes
1answer
140 views

MAMP PHP vs Apple's installed version

I would like to use MAMP's version of PHP for my local PHP testing and development. I understand that Macs come with a version of PHP installed. I have installed MAMP and everything seems to be going ...
1
vote
1answer
101 views

Backend script running terminal commands in C# - where to start

I have written a script in php that is used for generating pdf's out of html. Basically it get's the html string, saves it as a .html file and finally renders the page in phantomjs and joins the pdfs ...
0
votes
1answer
372 views

How concatenate a array of videos using avconv

I want to concatenate a array of videos my array is $interFIFO // array( 0=>test1.mpg, 1=>test2.mpg, 2=>test3.mpg, ...
1
vote
2answers
113 views

Run CLI commands using PHP script

I want to convert a flv file to mpg using avconv it is run successively using terminal. My problem is run command using php script. I write a code but i did not got result. My code as follows ...
-2
votes
1answer
157 views

How to clear the Laravel Application Key via Terminal

I'm creating a application. I want to clear the Laravel Application key via terminal. Not manually. Is there any way to clear via artisan. I can only generate via following command php artisan ...
0
votes
2answers
419 views

Google Analytics access token expired after 3600 s (1 hour)

I'm using Google analytics API (PHP) to retrieve my account info, I retrieved the refrech token using : if (isset($_SESSION['token'])) { // echo $_SESSION['token'].'<br />'; $authObj = ...
0
votes
1answer
139 views

Check if a machine on local network is available with PHP

I have a PHP app runing on local network server (Mac Mini server with OS X Lion). There are several local clients (also Macs) accessing this app. Client machines are put to sleep from time to time. I ...
2
votes
4answers
187 views

How to POST parameters to php from terminal

If I have a file named somephpfile.php, I can execute this from a terminal window using: "php somephpfile.php" If I want to pass paramaters to this from the terminal which the php file will receive ...
0
votes
1answer
79 views

shell_exec is blocking until finished, I would like it to be non blocking

I have the following PHP code: shell_exec("(traceroute odesk.com > trace.txt;echo 'traceIsDone'>>trace.txt) &"); This line takes 50 seconds to finish, it worked with ping and when I ...
0
votes
2answers
406 views

PHP_Beautifier - Fatal Error - require PEAR.php

I have installed pear and php_beautifier with sudo... From what I've read I should be able to format code with the command php_beautifier x.php But when I try to do this I get this error: ...
0
votes
4answers
802 views

Execute PHP get request through terminal

I'm currently running cronjobs for several people, to know who are those people i give it a parameter with some details : 0 1 * * * cd /var/www; php auto.php?user=user for some reason it returns ...
1
vote
2answers
690 views

PHP - Execute code from terminal, ubuntu server

I know that you can run php files from terminal with linux running PHP... I.e. "php script.php" ... But is there any program that allows you to directly input php into the terminal (through any ...
1
vote
5answers
595 views

Use mac terminal to write PHP (save files) [closed]

I recently bought a macbook air, and I'm trying to program using the terminal instead of an ftp client + text editor. I know how to SSH in, and from there run PHP (php -a), but I can't quite figure ...
2
votes
6answers
698 views

Calling a function in a PHP script from the command line

I have a script that has a bunch of different parameterized functions. Is it possible to call any of these functions from the command line and pass in the arguments instead of me having to hard code ...
-1
votes
2answers
45 views

How do I determine whether PHP is running from the console or not?

php -f script.php param1 param2 At the moment, I am just checking whether isset($argv). Is this the best way? P.S. I also wanted to know if all input parameters are always stored in $argv?
-1
votes
1answer
175 views

command works fine through terminal but not shell_exec php

Got a weird issue i have installed wav2png on my mac osx with lion now and works fine when using terminal no problem but when i try to run it using shell_exec with php like below $wav2png = ...
0
votes
0answers
159 views

Live terminal output in webpage, server side binary, PHP, JavaScript?

I'm writing a web interface for some software that runs on a server of mine. Basically, I want the user to be able to select a set of parameters on a webpage and then hit go and have our software ...
1
vote
1answer
130 views

Is it possible to integrate with Sagepay Virtual Terminal using PHP?

I'm crating a Sagepay Direct implementation for a client, which deals with taking deposits and payments, as well as refunding deposits. This is fine for online payments, but the client also takes ...
0
votes
2answers
451 views

Deleting base64 Eval Junk with (osx) terminal

Trying to clean up after a slew of php injections -- every php function in about six sites worth of WordPress templates is full of junk. I've got everything off the server, onto a local machine, and ...
2
votes
2answers
132 views

How can I cURL with JavaScript turned on?

I need to load content from a remote uri into a PHP variable locally. The remote page only shows content when JavaScript is turned on. How can I get around this? Essentially, how can I use cURL for ...
1
vote
1answer
385 views

GUI installer for memcached on Mac?

I'm looking for a way to install memcached on my Mac running Lion, but I have no idea how to use terminal. Is there an easy to use GUI package to install it instead?
0
votes
1answer
106 views

Can PHP exec() return nested arrays? [closed]

I am using PHP exec() to run a script that outputs a 3 column, 5 row data table. Right now each row is a single value in my array as follows: 1 => "Nancy Female 32 05/10/2012" 2 => "Drew ...
0
votes
4answers
2k views

How do I stop a script running in UNIX?

I ran a php script, let's use "mytestscript.php" for example. It will run continuously for a few hours. How can I stop it from the Terminal (UNIX) command line?
0
votes
0answers
171 views

Headache with bash and php

I need to execute the following code using php. virt-install --hvm --name ubuntuserver --ram 1024 --disk path=/root/Downloads/windows8.img,size=15 --cdrom ...

1 2 3