[PHP] MySql Rollback in PHP within a website

2003-07-13 Thread bruce
xamples/hints/sample code will be appreciated. Thanks for any assistance! Regards, Bruce [EMAIL PROTECTED] (925) 866-2790 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] apache/web site question...

2003-12-24 Thread bruce
arate PC. If this isn't possible, I'll take the PHP/ASP/Etc.. approach where I can include a file that resides on another completely different server/PC... thanks... bruce douglas [EMAIL PROTECTED] (925) 866-2790 -- PHP General Mailing List (http://www.php.net/) To unsubscri

RE: [PHP] Re: exec works with some, but not all commands

2004-07-24 Thread bruce
when running shell commands form php/web apps... it's a good idea to check the ownership/privs/permissions of both the exe being run, as well as any output/input files for the exe app. you should also check the web/apache/iis error/log files to determine if everything is correct... regards, --

[PHP] php mysql--mysqli persistent connections...

2004-07-30 Thread bruce
cross multiple pages..??? if persistent connections are still supported with mysqli, how? and if the persistent connection is no longer available, can someone explain why it was dropped..??? thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php mysql--mysqli persistent connections...

2004-07-30 Thread bruce
php/mysql supported persistent connections.. i had assumed that mysqli would as well it appears that it doesn't... -bruce -Original Message- From: John Holmes [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 10:54 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re:

RE: RE: [PHP] php mysql--mysqli persistent connections...

2004-07-30 Thread bruce
th the db processing, followed by a commit! at least this was the plan, until i couldn't find the persistent hook within mysqli... what am i missing..?? -bruce -Original Message- From: John Holmes [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 11:09 AM To: [EMAIL PROTECTED];

[PHP] db transactions across multiple pages...

2004-07-30 Thread bruce
basically be a container for db connections... comments/criticisms/etc... -bruce -Original Message----- From: bruce [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 11:33 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: RE: [PHP] php mysql--mysqli persistent connections... ne

RE: [PHP] db transactions across multiple pages...

2004-07-30 Thread bruce
as i understand it if you're going to do transactional processing, as once the connect dies, the actions being performed are rolled back if you haven't done a "commit"... -bruce -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 200

RE: [PHP] db transactions across multiple pages...

2004-07-30 Thread bruce
not sure if it's php/mysqli... but if you check the php.net for the "mysqli" not "mysql" functions... you won't see the persistent attribute listed for the php.ini attributes... -bruce you're learning more every day -Original Message- From: J

RE: [PHP] db transactions across multiple pages...

2004-07-30 Thread bruce
you also won't see the mysqli pconnect function... which tells me that at least for now, it's not there... -bruce -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 8:44 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] db transactions acros

RE: [PHP] db transactions across multiple pages...

2004-07-31 Thread bruce
subsequent db functions for the page are then performed between the web app and mysql, using the handle provided by the pool app that's the theory, not sure how it would work, or what other issues would be. but if it did work, it could be extended to support any given web app/server that nee

RE: [PHP] db transactions across multiple pages...

2004-07-31 Thread bruce
wrote bruce: > yeah... > > i saw that write up. i've also inquired with bugs.mysql as to if/whether > this might be reinserted.. we'll see. You don't need persistant connections with the method you describe. The pool app simply manages multiple connections. Curt

RE: [PHP] db transactions across multiple pages...

2004-07-31 Thread bruce
hich would then allow for transactional processing across multiple pages within a web app -Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Saturday, July 31, 2004 8:59 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] db transactions across multiple pages... * Thus wrot

[PHP] function similar to to sizeof

2004-07-31 Thread bruce
does php have a function similar to the 'C' sizeof function... i'm looking to copy an object, and i'd like to be able to copy it at the binary level but i need to be able to determine the size of the object... any thoughts/comments..??? thanks -bruce -- PHP Genera

RE: [PHP] function similar to to sizeof

2004-07-31 Thread bruce
lto:[EMAIL PROTECTED] Sent: Saturday, July 31, 2004 6:16 PM Cc: [EMAIL PROTECTED] Subject: Re: [PHP] function similar to to sizeof bruce wrote: >does php have a function similar to the 'C' sizeof function... > > yep in PHP 5 but it's just an alias for count. >i'm loo

RE: [PHP] Upgrade PHP?

2004-08-01 Thread bruce
i've successfully built php5 on rh8 with no issues... if you search through the achives of this mailing list you'll see what i did. look for mysqli/php. what issues are you haveing when you build from source...??? let us know, and i'm sure someone can help -Original Message- From:

[PHP] pconnect...

2004-08-02 Thread bruce
code within the earlier php4 regarding the pconnect issue? thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] pconnect...

2004-08-02 Thread bruce
i meant mysqli/php5 regarding pconnect. although, i've since seen information that leads me to believe htat pconnect would necessarily in and of itself be my solution. i'm starting to believe that a real solution for this would have to be implemented within mysql itself... -bruce ---

RE: [PHP] pconnect...

2004-08-02 Thread bruce
i meant mysqli/php5 regarding pconnect. although, i've since seen information that leads me to believe that pconnect would "not" necessarily in and of itself be my solution. i'm starting to believe that a real solution for this would have to be implemented within mys

RE: [PHP] Upgrade PHP?

2004-08-02 Thread bruce
provide us with a copy of the attributes you used when you compiled... ie ./configure --attributeA --ldapetc... -Original Message- From: Will Collins [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 12:21 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Upgrade PHP? Well I uninst

[PHP] looking for a solid/good basic registration/login app/script

2004-08-07 Thread bruce
vorite/good app that they've used/implemented. i've look through lots of scripts, and decided to check here for additional input. thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] updating a frame from within php...

2004-08-10 Thread bruce
eed to be be able to refresh elements/links in the 'nav' window with the new values... searching through google, hasn't really shed any insight/light on the best approach for this.. any ideas/pointers/comments/thoughts... thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] redirecting to another frame using php header function

2004-08-11 Thread bruce
other frame. didn't find anything from google/php.net thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] updating a frame from within php...

2004-08-11 Thread bruce
in the event the user disbales j'script, i'm looking for an alternative... in my case, it should be pretty easy, because i'm looking to reload the entire page into the "_top"/"parent" frame/window. however, when i send the header, it gets interpreted as reloading in the same frame. which is not wh

[PHP] download file question...

2004-08-19 Thread bruce
hi... i can allow files to be uploaded to my app. are there corresponding scripts/code to allow files to be downloaded to the user via the browser?? just occurred to me that i'll want to do this... nothing jumps out at me searching google/php.net for this... thanks -- PHP General Mailing List

[PHP] php err msg/issue...

2004-10-13 Thread bruce
/resultset.php] i'm not sure why this is generated, or what's going on, or even how/why to correct it!! apparently this doesn't happen with php4, but i'm not certain. any thoughts/opinions/comments would be helpful... thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php err msg/issue...

2004-10-13 Thread bruce
ess Error: > PHP Error: [2048] Creating default object from empty value [Line: 1537] > [File: /var/www/html/blast/txtdbapi/resultset.php] > > > i'm not sure why this is generated, or what's going on, or even how/why to > correct it!! apparently this doesn't

RE: [PHP] php err msg/issue...

2004-10-13 Thread bruce
$rs->pos, i get '0' so are you saying that the code can't handle '$rs->rows[0] = $rec' if this is the case, how can this be corrected i guess it boils down to, how do you create/initialize/add a row to the db structure..??? thanks... -bruce ps.. i tried to

[PHP] looking for a few php partners/developers....

2004-10-14 Thread bruce
hi... i'm curious.. if i'm putting together a project, and am looking for a few php developers as sweat equity partners, is this an appropriate place to post my request..??? thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] looking for a few php partners/developers....

2004-10-14 Thread bruce
e going to get there... Thanks for reading! -Bruce Douglas [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] returning values/information from perl apps to php apps..

2004-10-04 Thread bruce
it' value of a short int. i need to return values that might be multiple arrarys. should i simply write the perl return values into an output file, and read the output vars from the output file in the php file... comments/thoughts/etc thanks -bruce -- PHP General Mailing List

[PHP] RE: returning values/information from perl apps to php apps..

2004-10-04 Thread bruce
eric... how does using serialize allow the information from the perl app to be used by the php parent app. unless you're implying that the serialized information is stored in an external file, that's then read by the php calling/parent app... -bruce -Original Message- Fr

[PHP] probs generating multiple drop down select lists within a single form

2004-10-17 Thread bruce
ke all the select vars for the query terms arrays, it works as it should, in that if all three lists aren't selected, then the user can't proceed. however, if i use the select for the 2nd/3rd lists, then the logic screws up... any idea why this is occuring is there a better way/e

RE: [PHP] probs generating multiple drop down select lists within a single form

2004-10-18 Thread bruce
't selected anything. this should be pretty straight forward, but i'm missing something... thanks -bruce -Original Message- From: Greg Donald [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 6:14 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] probs generating multiple d

[PHP] how to create multiple selects within php

2004-10-18 Thread bruce
ue for the select list var even though i don't select the item. if someone can point me to an actual working example of php code that generates multiple lists/menus within a form, i'd appreciate it!! thanks -bruce ps. if needed, i can supply the actual test code i've used to

RE: [PHP] how to create multiple selects within php

2004-10-18 Thread bruce
he user to actually select an item? or, how can i detect when a user has actually selected a list item?? thanks... -bruce -Original Message----- From: bruce [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 7:07 AM To: [EMAIL PROTECTED] Subject: [PHP] how to create multiple selects

RE: [PHP] how to create multiple selects within php

2004-10-18 Thread bruce
tems, even though they haven't been selected thanks -bruce -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 7:31 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] how to create multiple selects within php bruce wrote: > ok... > &g

RE: [PHP] how to create multiple selects within php

2004-10-18 Thread bruce
i've decided to punt... and do something similar to what i had initially created, which implements basically what you have below... the user will just have to be satisfied with seeing the 1st item that's a default/dummy item... thanks... -bruce -Original Message- Fr

[PHP] people/projects looking for developers...

2004-10-18 Thread bruce
to be revenue generating businesses. thanks Bruce Douglas [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] people/projects looking for developers...

2004-10-18 Thread bruce
just satisfied with their jobs interesting... thanks -bruce -Original Message- From: Dan Joseph [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 6:57 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] people/projects looking for developers... > a question for consideration. are the

RE: [PHP] ability to find include files...

2008-11-17 Thread bruce
hi t!! strace is something i would have used.. but unfortunately, strace (at least as far as i can tell) doesn't work with web based apps... thanks -Original Message- From: Thodoris [mailto:[EMAIL PROTECTED] Sent: Sunday, November 16, 2008 11:42 PM To: Andrew Ballard Cc: bruce

RE: [PHP] while-question

2008-11-17 Thread bruce
curious qiestion to all on here who dabble in php... how many of you have actully gone to college, taken algorithm courses, microprocessor courses, design/architecture courses, etc.. or is the majority of the work here from people who've grabbed the tools and started programming... ? -O

RE: [PHP] Scheduling scripts?

2008-11-18 Thread bruce
he's looking to create a script/app for his own.clent usage.. not to just use google's cal app,,, check out freshmeat.net, or sourceforge if you haven't already... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Richard Heyes Sent: Tuesday, November 18, 20

RE: [PHP] while-question

2008-11-19 Thread bruce
interesting points regarding college and programming.. my degrees bsee/msee covered alot more than pure programing.. as a double ee/cs, the ability to articulate an issue/problem, and bring to mind a cogent thought process was valuable. the ability to understand how different algorithms worked,

RE: [PHP] Model Web Site

2008-11-21 Thread bruce
hi... for what it's worth. the best approach might be to find a few sites that have the functionality/layout you like. there are probably a few of them that you'll run across that meet what you have in mind. use these as your basic guides. add additional features that you'd like. you now have (ro

[PHP] array/iteration issue!!

2008-11-27 Thread bruce
hi. i have the following test multidiminsional array. i'm trying to figure out how to iterate through the array, to produce something like foo, physics, sss foo, physics, sffgg foo, english, sss foo, english, sffgg can't quite seem to get it right!! thoughts/comments... etc... thanks

RE: [PHP] array/iteration issue!!

2008-11-27 Thread bruce
t;=>"sffgg") ), "dept2"=>array("dept"=> "english", "class"=>array("class1"=>"sss","class2"=>"sffgg") ) ); how would i iterate through this..?? thanks -O

RE: [PHP] array/iteration issue!!

2008-11-27 Thread bruce
; array ( "class1" => "sss", "class2" => "sffgg" ) ), array ( "dept" => "english", "class" => array ( "class1" => "sss"

RE: [PHP] array/iteration issue!!

2008-11-27 Thread bruce
much props guys!!! thanks!! -Original Message- From: Micah Gersten [mailto:[EMAIL PROTECTED] Sent: Thursday, November 27, 2008 8:23 PM To: Robert Cummings Cc: bruce; 'PHP General list' Subject: Re: [PHP] array/iteration issue!! Robert Cummings wrote: > On Thu, 2008-1

RE: [PHP] array/iteration issue!!

2008-11-27 Thread bruce
obert Cummings [mailto:[EMAIL PROTECTED] Sent: Thursday, November 27, 2008 8:40 PM To: Micah Gersten Cc: bruce; 'PHP General list' Subject: Re: [PHP] array/iteration issue!! On Thu, 2008-11-27 at 22:22 -0600, Micah Gersten wrote: > > This is actually a much smaller data structure.

[PHP] Trre/Drop Down quick app for testing database tbls

2008-11-28 Thread bruce
Hi. I've got a few tbls that I'm testing. I'd like to have a simple web app to be able to iterate through the tbls to test out what I have in them. I'd like to be able to have each tbl as a drop-down/select box, so I select from selecta, which lists items from TBL-A, which then uses the id from T

RE: [PHP] category and sub category traversal

2008-12-01 Thread bruce
hey vamvan... you might pop this to the mysql email list as well, if you haven't already! [EMAIL PROTECTED] -Original Message- From: VamVan [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2008 5:13 PM To: php List Subject: [PHP] category and sub category traversal Hello,

[PHP] trying to figure out how to create the right query...

2008-12-11 Thread bruce
Hi. I have the following test db/tbl setup. stateTBL +--+ | stateName| | stateID |>>>+ +--+ V V V collegeTBL V +--+ V | collegeName | V | stateID |<<<+ | college

[PHP] Need a brain to bounce some Mysql/DB thoughts off of!!

2008-12-11 Thread bruce
the various tbls, and inserts if anyone's interested in helping me shake my mind out on this... thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] email app/script/needs...

2009-01-03 Thread bruce
HI... Playing around with an app and I need to implement some functionality allowing a user to email some text. Basically, I want to allow the user to select some text from a dropdown list. I then want to allow the user to edit the text if needed, and to then submit the text for email to a given

RE: [PHP] setting up FTP account names via PHP

2009-01-05 Thread bruce
support for pure ftpd. One solution I have in mind is to write the password into the pureftp DB upon signup. That would be the easiest. The other solution to write to a conf file would be OK, too. What do you think? bruce wrote: > are you trying to allow a user who logs in, to use his same us

RE: [PHP] setting up FTP account names via PHP

2009-01-05 Thread bruce
are you trying to allow a user who logs in, to use his same username when interfacing with the FTP server? obviously, the password for the FTP server will be different. Or are you looking to dynamically create a one time user/passwd for the user so that it changes each time they access the FTP ser

RE: [PHP] setting up FTP account names via PHP

2009-01-05 Thread bruce
hose folders? I don't see any other solution. Any suggestions? Thank you for any help, merlin bruce schrieb: > merlin.. > > if you're going to allow a user to use the same user/passwd for the site, > and the FTP server.. i would strongly argue that you should allow the user >

[PHP] Looking for an app...

2009-01-15 Thread bruce
Hi List! I know this is somewhat basic.. and I am searching google as I type! I'm looking for a client/server app that allows me to have a quick/dirty client that can upload/download a file to a server app, with the server app copying the file to a given dir... Code samples, or pointers to a sit

[PHP] killing a child process from pcntl_exec

2009-01-22 Thread bruce
Hi.. I fork a child process, using pcntl_exec. I see the process from the cmdline (using pgrep 123), but I can't seem to kill the pid from the cmdline, using "kill -9 123".. Is there something that I need to implement within the php test in order for the kill signal to be effective? If I wait, t

RE: [PHP] Re: killing a child process from pcntl_exec

2009-01-22 Thread bruce
-Original Message- From: Carlos Medina [mailto:i...@simply-networks.de] Sent: Thursday, January 22, 2009 8:04 AM To: php-general@lists.php.net Subject: [PHP] Re: killing a child process from pcntl_exec bruce schrieb: > Hi.. > > I fork a child process, using pcntl_exec. I see the proce

RE: [PHP] killing a child process from pcntl_exec

2009-01-22 Thread bruce
i'm pretty sure that's not the issue... i should be able to spawn/fork any kind of external app/process... "kill -9 pid", especially if done as root, should terminate the process... i suspect that the issue has to do with zombie processes, and how php/pnctl_exec/etc.. operates. -Original M

[PHP] php spawing/forking issues

2009-01-22 Thread bruce
Hi... Playing around with a test app to spawn external child processes. I'd like to be able to spawn/fork/run am external child process, that: -allows the child processes to run as separate independent processes (pid) -allows the child process(es) to be terminated via cmdline (kill -9 pid) i'

[PHP] process creation

2009-01-23 Thread bruce
A simple question (or so I thought). Does php allow an app to create/start a process/application that can continue to run on its own, after the initiating program/app terminates? It appears that the spawning/forking functions might work, but the child apps would be in a zombie status, and couldn'

RE: [PHP] process creation

2009-01-23 Thread bruce
lto:torokal...@gmail.com] Sent: Friday, January 23, 2009 10:09 AM To: bruce Cc: php-general@lists.php.net Subject: Re: [PHP] process creation 2009/1/23 bruce > A simple question (or so I thought). > > Does php allow an app to create/start a process/application that can > continue to ru

[PHP] php forking/spawning question...

2009-01-27 Thread bruce
Hi... got the follwoing example... basically, when i call the function "spawn_" i get the passed vars for appname/args... the $appname,$args are valid when the spawn_ function is initially invoked. however, when the app does the fork, the $appname, $args get lost. when the function gets to the pc

RE: [PHP] Connect local app to a web app

2009-02-05 Thread bruce
hi... can you describe in psuedocode what you're trying to accomplish? might be able to help if i have a better understanding of where you're trying to go. -Original Message- From: Jônatas Zechim [mailto:zechim@gmail.com] Sent: Thursday, February 05, 2009 11:25 AM To: php-general@l

[PHP] preg_match question...

2009-02-06 Thread bruce
hi... trying to figure out the best approach to using preg_match to extract the number from the follwing type of line... " 131646 sometext follows.." basically, i want to extract the number, without the text, but i have to be able to match on the "text" i've been playing with different preg_mat

RE: [PHP] Re: preg_match question...

2009-02-06 Thread bruce
hp-general@lists.php.net Subject: [PHP] Re: preg_match question... ""bruce"" wrote in message news:234801c98863$88f27260$0301a...@tmesa.com... > hi... > > trying to figure out the best approach to using preg_match to extract the > number from the follwing typ

[PHP] webapp to drive/monitor a bunch of system processes

2009-02-11 Thread bruce
hi... i've got a project (goal) where i'm looking for a webbased app that drives/runs/monitors different linux/system processes. i'm basically looking for different apps that i can look at to get ideas/see their layout/structure. i'm going to have to create a similar app to run some processes that

[PHP] fork/spawnzombie question

2009-02-12 Thread bruce
sources, but I'd still like to have the zombie processes removed. I'm wondering. Is it possible to fork off a process, and have it essentially do the wait on all the zombie/shild processes from the parent app? Or would this be a peer process, waiting on it's peers? Thanks

[PHP] redirecting output for a spawned child process..

2009-02-21 Thread bruce
hi... got a situation where i have a parent app that spawns children. trying to figure out how to get the output of the spawned/forked children to be written to an external file... can't seem to find any examples of how to accomplish this... do i have to insert something within the child php app

[PHP] file locking...

2009-02-28 Thread bruce
Hi. Got a bit of a question/issue that I'm trying to resolve. I'm asking this of a few groups so bear with me. I'm considering a situation where I have multiple processes running, and each process is going to access a number of files in a dir. Each process accesses a unique group of files, and th

RE: [PHP] file locking...

2009-03-01 Thread bruce
ere i get rid of the files.. and i use some sort of database as the informational storage. hopefully this provides a little more clarity. thanks -Original Message- From: Robert Cummings [mailto:rob...@interjinn.com] Sent: Sunday, March 01, 2009 2:50 AM To: bruce Cc: php-general@lists.php.n

RE: [PHP] file locking...

2009-03-01 Thread bruce
.. the backend of the service has to quickly process the files in the dir as fast as possible to return the data to the web client query... thanks -Original Message- From: Robert Cummings [mailto:rob...@interjinn.com] Sent: Sunday, March 01, 2009 9:54 AM To: bruce Cc: php-general

[PHP] RE: file locking...

2009-03-03 Thread bruce
March 01, 2009 11:41 AM To: undisclosed-recipients: Subject: Re: file locking... On Sun, 1 Mar 2009 10:00:54 -0800, "bruce" declaimed the following in comp.lang.python: > > Except in my situation.. the client has no knowledge of the filenaming > situation, and i might have 1000s

RE: [PHP] whoami explanation

2009-03-03 Thread bruce
hi pj... single quotes are entered via the key directly left from the "return/enter" key on most/all qwerty keyboards... the 'backtic' is normally the shift '~' key... the key, right to the left of the '1' key... in the upper left position of the keyboard... -Original Message- From: P

RE: [PHP] Re: Problems with exec() on windows

2009-03-19 Thread bruce
hey... if you're going to deal with file/pathnames in windows/linux.. you're going to have to encapsulate them with "" or with '' ie double/single quotes... -Original Message- From: Kyohere Luke [mailto:l...@beyonic.com] Sent: Thursday, March 19, 2009 10:18 AM To: Bastien Koert Cc: Shaw

RE: [PHP] Re: Problems with exec() on windows

2009-03-20 Thread bruce
;C:\pathwi~1\gammu.exe" failed :-( > > Well, you didn't do it properly then. What is the actual path? > > > > > The only way I've gotten it to work was to get rid of the spaces in the > > path/to/exe. > > > > Luke. > > > > On Thu, Mar

[PHP] linux sha1sum .vs php sha1

2009-03-20 Thread bruce
hi... doing some testing with linux sha1sum, and php's sha1 function... are they both supposed to return the same results for the same chunk of text. test file "a.dat" = "1234567890" linux: echo a.dat > sha1sum -t!= php any thoughts... thanks -- PHP General Mailing List (http://www.

[PHP] quick question - need a site i can more or less copy from

2009-03-22 Thread bruce
Hi... Working on a test app, and I need a web interface to test/view the underlying information. Looking for (hopefully) quick pointers/suggestions. I'm dealing with a number of cli web crawling apps that return data. I'm trying to find a quick app that I can modify the db schema, as well as some

[PHP] webmin mods..

2009-03-22 Thread bruce
oh... has anyone ever played/used/modified the webmin app?? i'm looking for a web based app/tool that i can modify to be able to manage my distribbuted client/server crawler on my network of boxes. i'd rather start with an existing framework/app that already kind of works with modules/apps on a s

RE: [PHP] Regex

2009-03-26 Thread bruce
hi... if you haven't solved your issue... can you tell me in detail what you're trying to accomplish? what are the steps to running the script? thanks -Original Message- From: jesse.ha...@arvatousa.com [mailto:jesse.ha...@arvatousa.com] Sent: Thursday, March 26, 2009 1:23 PM To: php-gen

[PHP] Workflow app for software

2009-03-31 Thread bruce
Ladies/Gents... Hi. Trying to get some input to a web based app for dealing with managing software apps/scripts. Basically, i'm envisioning a system where people register/signup, and then check in/out apps for development/testing/production... I need a way of dealing with users, assigning/accepti

RE: [PHP] Workflow app for software

2009-03-31 Thread bruce
hey todd... just toook a look at the polarion svn-web app i thought that was closed source... i see that it's open!!! -Original Message- From: haliphax [mailto:halip...@gmail.com] Sent: Tuesday, March 31, 2009 2:18 PM To: bruce; php-general@lists.php.net Subject: Re: [PHP] Wor

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
...@interjinn.com] Sent: Wednesday, April 01, 2009 9:30 AM To: haliphax Cc: php-general@lists.php.net Subject: Re: [PHP] Workflow app for software On Wed, 2009-04-01 at 11:25 -0500, haliphax wrote: > On Wed, Apr 1, 2009 at 8:33 AM, bruce wrote: > > not another top/side/bottom post thr

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
iphax [mailto:halip...@gmail.com] Sent: Wednesday, April 01, 2009 11:42 AM To: php-general@lists.php.net Subject: Re: [PHP] Workflow app for software On Wed, Apr 1, 2009 at 1:38 PM, Robert Cummings wrote: > On Wed, 2009-04-01 at 13:30 -0500, haliphax wrote: >> On Wed, Apr 1, 2009 at 11:53 AM

RE: [PHP] Workflow app for software

2009-04-01 Thread bruce
now that.. was funny actually laughed out loud! -Original Message- From: George Larson [mailto:george.g.lar...@gmail.com] Sent: Wednesday, April 01, 2009 12:08 PM To: Robert Cummings Cc: bruce; haliphax; php-general@lists.php.net Subject: Re: [PHP] Workflow app for software

[PHP] Out of the blue question..

2009-04-06 Thread bruce
Hi Ladies/Gents of the list... I've got an issue/question and figured I'd fire it to the list. Over time, I've had a few projects that I've worked on, where I've required someone with skills way beyond mine for a given area. And rather than spend hours trying to figure it out, I've sometimes hire

RE: [PHP] Out of the blue question..

2009-04-07 Thread bruce
chris... did you read the entire msg.. this isn't/wasn't a hunt for someone for a project... please re-read.. -Original Message- From: Chris [mailto:dmag...@gmail.com] Sent: Monday, April 06, 2009 8:14 PM To: bruce Cc: php-general@lists.php.net Subject: Re: [PHP] Out o

RE: [PHP] 800 pound gorilla

2009-04-20 Thread bruce
hmmm... a developer might not (won't) give you voting rights? (is there sucj a thing!!!) however, if you put together a number of really skilled c/c++ (whatever) developers, then you could easily take the current existing sourcebase of code, and go ahead and fork your own version, and never need

[PHP] Need Help! - Looking over a wireframe doc...

2009-05-05 Thread bruce
rkflow the doc is.. Get to me offline if you're interested in taking a look. thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] speaking of control structures...

2009-05-07 Thread bruce
you know... interesting that goto can be found in code!! -Original Message- From: Robert Cummings [mailto:rob...@interjinn.com] Sent: Thursday, May 07, 2009 7:36 AM To: Tom Worster Cc: Clancy; php-general@lists.php.net Subject: Re: [PHP] speaking of control structures... On Thu, 2009-

RE: Fwd: [PHP] SECURITY PRECAUTION BEFORE SUBMITTING DATA INDATABASE

2009-05-21 Thread bruce
if you really want to get to the real low level details of an app... unless you're dealing with an app that's seriously crunching, and extremely sensitive to returning data to the user's browser in a timely manner, you should write all replies back to a db/tbl... this would allow you as the develo

[PHP] Startup Stuff in the san Francisco/Bay Area

2009-05-24 Thread bruce
Hi guys... Before you start flaming/shouting.. thought I'd post this here, as I'm at my wit's end, and this might help others as well. And yeah, this has nothing to do with solving a php coding issue!! I'm trying to figur eout if there are guys/gals/groups/etc.. of developers here in the San Fran

RE: [PHP] continue working after finishing up with the http client

2009-05-27 Thread bruce
hi tom... exacly what are you trying to accomplish? is this in a web app? has the user hit the site, logged in, etc? can you provide an example of what the sequence of events are that you're trying to deal with.. thanks -Original Message- From: Tom Worster [mailto:f...@thefsb.org] Sent

RE: [PHP] continue working after finishing up with the http client

2009-05-27 Thread bruce
[mailto:f...@thefsb.org] Sent: Wednesday, May 27, 2009 7:14 AM To: bruce; php-general@lists.php.net Subject: Re: [PHP] continue working after finishing up with the http client On 5/27/09 9:50 AM, "bruce" wrote: > exacly what are you trying to accomplish? is this in a web app? has the user

RE: [PHP] spawning a process that uses pipes - doesn't terminate when webpage download is canceled

2009-05-28 Thread bruce
Hi Flint. Not sure if you have a solution to this yet, or if I fully understand! But if your issue is basically that you have a situation where you might have orphaned processes that never finish and that are consuming real resources you could have the app get/monitor the process ID for each proce

[PHP] Numerical Recipe - Scheduling Question

2009-05-29 Thread bruce
Hi.. Got a need to be able to allow a user to specify the frequency to run certain apps/processes.. I need to be able to have the user specify a start Time, as well as a periodic frequency (once, hourly, daily, weekly...) as well as allow the user to specify every XX minutes... So i basically nee

RE: [PHP] Re: Numerical Recipe - Scheduling Question

2009-05-29 Thread bruce
Friday, May 29, 2009 2:48 PM To: php-general@lists.php.net Subject: [PHP] Re: Numerical Recipe - Scheduling Question bruce wrote: > Hi.. > > Got a need to be able to allow a user to specify the frequency to run > certain apps/processes.. I need to be able to have the user specify a

  1   2   3   4   5   6   7   >