Check To See If A Program Is Running
Is there any specific way to check to see if a certain program is up and running? Like I want something to pop up only if program ****.exe is running.
View Complete Forum Thread with Replies
Related Forum Messages:
Running Program
I have a program called "rlx" that takes two arguments and writes a file. The command line could be "~/rlx file b" and it executes correctly from shell. What it does is to write a file to webserver/rlx/file.dat. The permission for the program rlx is 755, the permission for the dir rlx is 777, and the text output from the program after having run it is correct. (It displays the filename and other data). Code: //Commandline tried are all these, just one of them in the real code of course: $commandline = "/home/me/rlx/rlx file b"; $commandline = "/../../rlx/rlx file b"; // since above didnt work, i tried to copy the program file to the web directory, renaming it to rlx2 so it doesnt have the same name as dir $commandline = "rlx2 file b"; $commandline = "/.rlx2 file b"; // one of following in the real code of course exec($commandline); system($commandline); shell_exec($commandline);
View Replies !
How Can I Check If A Server Is Up And Running?
Is there any way to check if a server is running and then refresh to it? maybe something like this: <?php $url = "http://www.mysite.com"; if(server_status($url) == true){ header('location : $url'); } else{ echo "Server down -- TRY AGAIN LATER"; } ?> I was looking at php.net and i found Memcache::getStats(), but i don't know what that does...
View Replies !
How To Check If Mysql Is Running
I have just installed mySQL win32 version and i dont really know how to get the service to run or if it is actually running. is there any php code that will check to see if it is running. if it is running, can someone tell me how i am actually suppose to manage and add new databases etc?
View Replies !
Check That The Image Is "complete" Before Running The Script?
I have a script that processes a live image from a webcam, cropping it and delivering it to the user. The webcam ftp's an image called "ftp.jpg" every so often, and when the user loads the "live image" page, the script opens the ftp-ed image and creates and saves a new jpeg with the cropping applied. The problem seems to be, if the user runs the script and the new image hasn't finished ftp-ing in, the resulting cropped image is black - nothing. Is there some way to check that the image is "complete" before running the script? If not, any suggestions for avoiding trying to process an incomplete image?
View Replies !
Warning: Invalid Argument Supplied For Foreach() Running On A OS X Machine Running Apache 1.x And PHP 4.x.
The following script was running on a OS X machine running Apache 1.x and PHP 4.x. I just moved the script over to a Linux machine running Apache 2.0.51 and PHP 4.3.8, and now the foreach line does not work. It says Warning: Invalid argument supplied for foreach() in /var/www/localhost/htdocs/warehouse/whse_order_submit.php on line 39 Here is the script: <?php //get the variables from the other page $id=$_POST['id_no']; $sku=$_POST['sku']; $description=$_POST['description']; $order=($_POST['order_qty']); $store=$_POST['store']; $comment=$_POST['comment']; $ip=$REMOTE_ADDR; //check if store is empty if(empty($store)) { die("Store is required. Please press the back button and enter in your store."); } //connect to the database require('../inc/database_conn.php'); //$month=getdate(mon); //$day=getdate(mday); //$year=getdate(year); //$today=$year . "-" . $month . "-" . $day $today=date('Y-m-d'); // create the unique order number $headerqry = "INSERT INTO misc_order_header (order_date, store, comment, ip) VALUES ('$today', '$store', '$comment', '$ip')"; mysql_query($headerqry, $conn) or die(mysql_error()); $order_no=mysql_insert_id(); foreach($order_qty as $id_no => $val) { if($order_qty[$id_no] > 0) { $detailqry = "INSERT INTO misc_order_detail (order_no, id_no, sku, order_qty, order_date, store) VALUES ('$order_no', '$id_no', '$sku', '".$order_qty[$id_no]."', '$today', '$store')"; mysql_query($detailqry, $conn) or die(mysql_error() . "<BR>" . $detailqry); } }
View Replies !
Sessions? External Program / External Program
I am trying ac ouple of days now to learn some things on SESSIONS,but I think I am not getting it very clearly. I have a PHP page tha contains a form. Users enter data in the form, which are then written in a file (the file is created at the time a user enters some data) The file is then given as an input to an external program The external program runs and gives some results which are then stored in another file (that is created when the external program finishes) What I want to do is to somehow create these files and, when the user exits from the browser, then both files that refer to this user, will be deleted. Code:
View Replies !
Add A Drop Down Menu For Check In And Check Out Date
i have done a booking system and want to add a drop down menu for check in and check out date. I have done the drop down menu and the date display in is today's date. I wanted to make the the date 3 days in advanced of todays date. <select name="dayIn" > <? for ($i=1;$i<=$days;$i++) { if($i == $_POST['dayIn']) { ?> <option value="<?=sprintf('%02d', $i)?>" selected><?=$i?></option> <? } else if($_POST['dayIn'] == "" && $i==date(d)){?> <option value="<?=sprintf('%02d', $i)?>" selected><?=$i?></option> <? } else { ?> <option value="<?=sprintf('%02d', $i)?>"><?=$i?></option> <? } } ?> </select> and here is my code for check out: <td>Check-out date</td> <td> </td> </tr> <tr> <td><select name="dayOut"> <? #$nextDayOut=$_POST['dayIn']+1; $nextDayOut = date('d', strtotime('+1 days')); for ($i=1;$i<=$days;$i++) { if($i == $nextDayOut) { ?> <option value="<?=sprintf('%02d', $i)?>" selected><?=$i?></option> <? } else { ?> <option value="<?=sprintf('%02d', $i)?>"><?=$i?></option> <? } } ?> can anyone help me figure this thing out?
View Replies !
Sort Of IP Check Or Other Security Check
Do sessions already do some sort of IP check or other security check or do I have to do this manually? My problem is that I want to use sessions to log in users to my message board. My concern is that a non-cookie user, we'll call her Mary, will post a link to another message at my site and that link will include her session id. If someone else, call him John, clicks on that link, will John now have the same session id as Mary? Or are sessions smart enough not to let that happen?
View Replies !
File Check-in/check-out System?
I'd like to a build a PHP-based interface for sharing documents (MS Office docs, latex, etc). I need to be able to allow users to "check-out" the files for their exclusive use and then go through a "check in" process when they re-upload the doc so it's accessible again to everyone else. I'd also like to implement some form of version control where older versions of the docs can be in some sort of repository. I'm not quite sure how to approach either concept. I'm wondering if anyone can give me tips on how I might go about this.
View Replies !
PHP Used As A CGI Program
Manual for odbc_pconnect states: "Persistent connections have no effect if PHP is used as a CGI program." As I have just installed PHP on a PC with an Apache server, how does one tell if it is used as a CGI program, and if so, how does one confiure it not to be?
View Replies !
C Program And PHP
I have written this function in a C program, using Visual Studio. The PHP script executes fine, but the output is not displayed. I have been racking my brains for hours trying to figure this one out. The output from the php program should print to a file called 'out.txt'. The file is successfully created, but with no content. I am pretty sure it's the way PHP returns the results. Does anyone have any ideas? Any help would be most appreciated. int passCode(void) { FILE *phpFile, *out; size_t len; char buffer[1000]; phpFile = popen("php -f testing1.php", "r"); if (phpFile) { out = fopen("out.txt", "w"); len = fread(buffer, 1, sizeof(buffer), phpFile); fprintf(out, buffer); fclose(out); pclose(phpFile); return 1; } else { return 0; } }
View Replies !
How To Use ? And : In A Program
in the program below, what is the meaning/use of the question mark (?gcd) and the colon (:$a) after the return statement? <? $x=32; $y=80; function gcd($a, $b) { return ($b>0)?gcd($b,$a%$b):$a;} $val=gcd($x, $y); print "The greatest common denominator of $x and $y is $val"; ?> This recursive program is used to find the greatest common denominator of 2 numbers.
View Replies !
How To Program OOP
I use OOP for a PHP Application Framework I am programming. I have one base class which includes all the necessary functions and variables which all the other classes use. So what I originally did was that I made an instance of the base class and passed it to the other classes. Now someone insisted that this is not the way to do it. so I used 'extends base' to make the base class available to the other classes. Afterwards it worked fine, but it didn't make the code smaller nor did it result in faster speed. I used the benchmarking script from PEAR. So I wonder whats the difference between those two solutions, both work fine. Are there some tools to analyse how much memory a script uses?
View Replies !
Run A Program.
I am using system('GPA.exe ' . $filename); to run a program GPA.exe this program do the following things. ../GPA.exe filename.txt and will generate another file. HOWEVER, the problem is, there is no new file generated and I doesn't get an exception. I don't know why. Can somebody give me a clue?
View Replies !
Sig Program
I ran across a very cool little program today that I think I can reproduce for something I need on my site using PHP. http://www.danasoft.com/customsig.php How do they give the URL a .jpg extension and still be able to have it run a PHP script and send a JPG back to the browser?
View Replies !
Non-PHP-program To PHP/cgi
I read a POST-request from a Web-client over a socket and will pass this request to a PHP/cgi-Modul, to get PHP's generated HTML-stream. The request contains formular parameter and the data from an uploaded file. I copy the parameter-names and the values and pass them to PHP. This works fine, but I don't know how to tell PHP, it may read the data from the uploaded file.
View Replies !
PHP Program
I have a client that pretty much needs an admin program for their site. They are a local radio station. They want to be able to create forms within their website admin so they don't have to copy and paste code. They have no programming experience. NONE. They also want to be able to access their database to view content submitted. They send out birthday e-cards and all that junk. So does anyone know of a program that can do this? They have a thing like this in iHTML, but it's gettin spammed all to hell and they want a more secure route.
View Replies !
Is There A Way To Optimize My Program?
My Program is about parsing website through their url, My program is working properly but everytime it enters URL with so many sub URL (i mean thousand) my program seem to stop responding. Can you suggest something to this problem. somebody told me that i use the sleep() fucntion to not force my script to run successively, to give a pause to my program. Any thing more you can suggest? i'm not after the speed of execution but what im after is that he finish his job no matter how much time it takes....
View Replies !
Run Program Automatically
I want to create the option for my clients to create their own e-mail address. When I do this in Telnet, I have to run the command 'vadduser' It then asks me for a username, I want to assign this automatically. (1,2,3,4 etc etc) It then asks me for a password, I want this to be something the user has already given in a form (before the script was run). It then has to be retyped. Those two things can be done automatically. It then asks if I want to assign a disk quota (YES) and then asks for the number of megabytes (1) That's it. Are there any examples available of how to do this?
View Replies !
Php Email Program
Does anyone know of a php or even cold fusion based script out there for accessing email that can be customized? Right now I use SquirrelMail which is great, however, you can't really customize it to tie in with your web site. Is there something out there that is very flexible that I could make fit right into my site which is pretty reliable in terms of web email?
View Replies !
Should I Use A One Php Program Or Multiple
I have taken over a php web site. Once you login you are given six menu choices. Each option is or can be independant of the others. They each modify the same database but in different ways. On clicking the menu buttons the program calls php functions to do the action. Thus the user stays inside a large program. I was expecting the menu to provide links rather than function calls. 1) Is there a reason to stay inside a large program through function calls rather than linking to separate pages? 2) Am I correct that providing a <a href=... link would isolate the functionality and call a new program? The current program is spagettii code and somewhat buggy. There are side effects that depend on what function was called before. I am hoping that passing the hidden input parameters is all the connectivity I need.
View Replies !
Survey Program -
I want to migrate a survey program to web application and have selected PHP to use a on the server end along with apache and firebird rdms. As developing a web application is much different than a standard app I have some questions: 1) The survey has 50 questions with answers being 1-10. Is it best to store all 50 questions and corresponding answers in a javascript array and then up all in a batch update? The downside to this approach is the user could lose all responses to survey questions if the client computer web browser crashed. 2) After authenticating the user, how do I keep track of the rating session to guard it from hacking? Do I just store the username in a javascript variable since there is really no constant connection to the server?
View Replies !
PHP Program Packaging
I'm going to be doing a program for an elderly couple who owns a horse ranch, and wants some software to keep track of all their horses, owners, doctors, etc. I'm going to be writing the program in PHP using a MySQL database. I set up one like this for my work and it runs off of Apache on our server. I need this program to be a stand-alone install, without installing MySQL, PHP, and Apache seperately. How could I go about integrating it all into one package?
View Replies !
Standalone Program
I'm going to be doing a program for an elderly couple who owns a horse ranch, and wants some software to keep track of all their horses, owners, doctors, etc. I'm going to be writing the program in PHP using a MySQL database. I set up one like this for my work and it runs off of Apache on our server. I need this program to be a stand-alone install, without installing MySQL, PHP, and Apache seperately. How could I go about integrating it all into one package?
View Replies !
Program Flow
I had some bad experience with code organization and script functionality in writing my php based applications. And as the applications get bigger in scale it gets even worse. Therefore, I am trying to build a general schema for data flow in a php/mysql application. What I has in mind is to design a three major units. To handle the input, processing and data access. Plus another unit to generate the output. What I have now is one script that resolves the operation to be done according to the parameters send to it and the call the processing unit to do the rest of the job. However, as I add more functionality to the system this dispatcher script gets bigger and bigger... 1. How can I arrange my program/data flow in an efficient and easily maintainable way? 2. And how should I implement the output generation unit to be completely seperate from the others (I have lots of forms and outputs I have to show the user when necessary)?
View Replies !
Calling A C Program From Php.
I need to call a c program from a php. I also need to pass a string to it and have it return an array or string. I was thinking about calling it like its cgi script, but I'm not to sure how to do that. I haven't figured the variable passing because I'm just trying to get it to run first. These are allthe things I tried. Code:
View Replies !
Calendar Program (help)
I have been solving algorithms with php, just to get practice. But my new company asked to do the following program in php, msql within 6 hours which I have got stuck. The task is as follows: task: "make a calendar using php and mysql where user can insert some messages and then see the day event." I thought of doing a calendar on the browser where, in each cell there is a button. If button is clicked then a new textbox that imputes some message from the user and stores it in the mysql. I don't know weather the above idea is possible. Can any one give me a idea to approach the above problem? Any link for UI in php? Is php event driven?
View Replies !
How To Run Program In Php(Matlab)
I am trying to run a matlab script.(This script you can run from the command line by command 'matlab -r scriptname'). But when I use this command inside a system or exec I don't get any output, nor does the matlab opens and executes as it does in case of command line. Code:
View Replies !
Connecting To A Program
i wanna try get php to execute a command to a process/application running on a linux box(same computer). the application that is running is called asterisk. asterisk uses a CLI, how i normally do this is: Open a terminal type in: asterisk -r <--- connects to the CLI reload <----- reloads the config files exit <-- exits the terminal/CLI
View Replies !
Creating .exe From PHP Program
I have developed a PHP application which is currently running online. It regularly interacts with mySQL. I would like to use something like Roadsend to create a .exe which can be run locally and offline. However, I'm not sure how this .exe would interact with mySQL. Does anyone have any experience with Roadsend or similar, that might be able to help me with this?
View Replies !
Program Execution
I am using php to write inputs I receive from browser into a text file.Than I use shell_exec() to execute a program on server that writes those inputs from the text file and write its output to another text file. Now after my program has written its output I want to read this text file from php and send it back to the browser.
View Replies !
Lauch A Program
I want to lunch wmplayer and play a file on the server (my pc). I tried exec() and it didn't work. I'm guessing that it needs to create the window but the problem is how do I do it. What is the command to do it.
View Replies !
Day Of The Week Program
I am trying to write a program that will give me the day of the week without using the date function. I input the date and it's supposed to spit out the name of the day of the week. Here is what I have so far. I don't know quite what to do next. Code:
View Replies !
Executing A Program
I am trying to run a console application which needs to keep running even after the php script has finished executing. I also need the PID or some sort of handle I can use to kill the program at a later stage.
View Replies !
Program Clog
I am developing a web crawler which collects info from more than 50,0000 pages. but i am afraid this is going to clog the rental web server if I run it every single day. Is it possible to stop the web hosting server because of my program?
View Replies !
Mail Program
I am looking for a mail program I can setup on my site to offer visitors free e-mail from my domain. Hivemail went out of business. Everyone.net is an ASP solution. Can anyone recommend another program to use?
View Replies !
Looking For A Pay To Upload PHP Program
Anyway, I'm looking for a PHP program that has the user pay to upload certain files to a server. I'd like to make it so the person has to pay before it will allow them to go to the upload page. I'm looking for one that is flexible and will allow me to change the look of it to fit my website. Also, if possible, I would like it to only allow certain file types for upload. Anyway, if anyone knows of any script, or template, or whatever, that fits this description PLEASE let me know. I've been searching for something like this straight for the past couple of days and have yet to find anything.
View Replies !
Cannot Get The Program To Run At All Through Exec
I downloaded the program called Snapshotter which allows you to take screenshots of webpages through the command-line. Server is Win2k3/XP (live/local). I cannot get the program to run at all through exec while the same directory/permissions for ffmpeg run fine. I cannot even get it to spit out the default output you get if you run it without arguments. exec("dir") works fine, but exec("c:lahSnapshotter") doesnt return anything. Registered the path in the PATH environment and still no luck, yet exec("c:lahffmpeg") works fine and returns data.
View Replies !
E-commerce Program
I'm looking for an e-commerce program for my site in PHP. I want to purchase something, top of the line, then do some customizations. Cost isn't really an issue. Which cart would be my best option?
View Replies !
Initiating A Program
Is it possible to start a program and, in effect, detatch it from php and let it run in the background. E.g. I could start a small bash script running, that would make an iso file from a dir, then mail the user on completion. I clearly don't want to have php sitting around doing nothing while this is happening.
View Replies !
Using Server Program
Is there any way to use a program on the server to display data? For example, I want to use Crystal Reports on the Intranet server to display data. So when the user clicks a link on the web page Crystal Reports should open either as standalone or in the web browser. Is this possible?
View Replies !
|