Re: [PHP] PHP script won't run in the background

2011-11-30 Thread Alain Williams
On Wed, Nov 30, 2011 at 01:01:48PM +0100, richard gray wrote: > >You need a bit more info, get a backtrace with 'where'. > Thanks for the response Alain - below is the output:- Ah, much more useful . > [rich@LeMans] (/Web/scripts)> gdb --pid=3294 > GNU gdb 6.3.50-20050815 (Apple version gdb-

Re: [PHP] PHP script won't run in the background

2011-11-30 Thread Alain Williams
On Wed, Nov 30, 2011 at 12:58:26PM +0100, richard gray wrote: > On 29/11/2011 17:16, Daniel Brown wrote: > >On Sat, Nov 19, 2011 at 09:33, richard gray wrote: > >This happens because PHP is writing to STDOUT, of course, and then the > >command line redirection grabs that information and puts it i

Re: [PHP] PHP script won't run in the background

2011-11-30 Thread richard gray
On 23/11/2011 18:49, Alain Williams wrote: On Wed, Nov 23, 2011 at 06:14:07PM +0100, richard gray wrote: Reading symbols for shared libraries + done 0x000101d057ee in __ioctl () Any clues? To me it looks like PHP cli is trying to do some I/O but I'm just a dumb developer... :) ioctl on a

Re: [PHP] PHP script won't run in the background

2011-11-30 Thread richard gray
On 29/11/2011 17:16, Daniel Brown wrote: On Sat, Nov 19, 2011 at 09:33, richard gray wrote: This happens because PHP is writing to STDOUT, of course, and then the command line redirection grabs that information and puts it into the file. Unfortunately, by itself, this won't work in the backgro

Re: [PHP] PHP script won't run in the background

2011-11-23 Thread Alain Williams
On Wed, Nov 23, 2011 at 06:14:07PM +0100, richard gray wrote: > Reading symbols for shared libraries + done > 0x000101d057ee in __ioctl () > > Any clues? To me it looks like PHP cli is trying to do some I/O but I'm > just a dumb developer... :) ioctl on a tty is typically used to set it int

Re: [PHP] PHP script won't run in the background

2011-11-23 Thread richard gray
On 23/11/2011 11:05, Laruence wrote: Hi: I mean, do you built your php with readline support, or do you load readline.so into PHP? if so, remove it, then try again. and you also can use: gdb --pid={the pid of the stopped php} then you will find where the php hangs. thanks I d

Re: [PHP] PHP script won't run in the background

2011-11-23 Thread Laruence
Hi: I mean, do you built your php with readline support, or do you load readline.so into PHP? if so, remove it, then try again. and you also can use: gdb --pid={the pid of the stopped php} then you will find where the php hangs. thanks On Wed, Nov 23, 2011 at 1:04 AM, richard gray

Re: [PHP] PHP script won't run in the background

2011-11-22 Thread richard gray
On 22/11/2011 05:51, Laruence wrote: did you run php with readline? try run the script without php-readline. thanks No - the script was just a basic string echo - no readline was involved. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP script won't run in the background

2011-11-21 Thread Laruence
On Sat, Nov 19, 2011 at 11:27 PM, richard gray wrote: > >> Laruence, while that may be a helpful answer to a few people in the know, I think a clue is better, leave some space for the people to dance. :) >> just replying back with a single line like that isn't really going to help >> the people w

Re: [PHP] PHP script won't run in the background

2011-11-21 Thread Richard Quadling
On 19 November 2011 14:33, richard gray wrote: > Hi all > > Hope someone can help me with a weird issue I have... > > I am trying to run a php CLI script in the background and it just won't run > - it has a status of Stopped SIGTOU (Trying to write output) - Here are the > details > > OS > Mac OS

Re: [PHP] PHP script won't run in the background

2011-11-19 Thread richard gray
Laruence, while that may be a helpful answer to a few people in the know, just replying back with a single line like that isn't really going to help the people who are having this problem. At least explain why you suggested that, or what it does for those on the list that don't know, especial

Re: [PHP] PHP script won't run in the background

2011-11-19 Thread richard gray
On 19/11/2011 16:09, Laruence wrote: $ stty -tostop makes no difference # stty -tostop # php -f test.php >test.log 2>&1 & # jobs # [1]+ Stopped(SIGTTOU)php -f test.php > test.log 2>&1 Any other ideas? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://

Re: [PHP] PHP script won't run in the background

2011-11-19 Thread Ashley Sheridan
On Sat, 2011-11-19 at 23:09 +0800, Laruence wrote: > $ stty -tostop > > thanks > > On Sat, Nov 19, 2011 at 10:33 PM, richard gray wrote: > > Hi all > > > > Hope someone can help me with a weird issue I have... > > > > I am trying to run a php CLI script in the background and it just won't run >

Re: [PHP] PHP script won't run in the background

2011-11-19 Thread Laruence
$ stty -tostop thanks On Sat, Nov 19, 2011 at 10:33 PM, richard gray wrote: > Hi all > > Hope someone can help me with a weird issue I have... > > I am trying to run a php CLI script in the background and it just won't run > - it has a status of Stopped SIGTOU (Trying to write output) - Here are

Re: [PHP] PHP script for detecting pattern sequences?

2009-07-10 Thread Isaac Dover
i just got pwned! thanks, andrew. i should've paid more attention to what i was reading. - isaac On Fri, Jul 10, 2009 at 11:19 AM, Andrew Ballard wrote: > On Fri, Jul 10, 2009 at 10:30 AM, Isaac Dover wrote: > >> On Wed, Jul 8, 2009 at 11:32 PM, WenDong Zhang > wrote: > >> On Thu, Jul 9, 2009

Re: [PHP] PHP script for detecting pattern sequences?

2009-07-10 Thread Andrew Ballard
On Fri, Jul 10, 2009 at 10:30 AM, Isaac Dover wrote: >> On Wed, Jul 8, 2009 at 11:32 PM, WenDong Zhang wrote: >> On Thu, Jul 9, 2009 at 6:00 AM, Per Jessen wrote: >> > A suitable regex might look something like this: >> > >> > /([0-9]+)\1+/ >> > >> > Not tested, probably won't work on the first t

Re: [PHP] PHP script for detecting pattern sequences?

2009-07-10 Thread Isaac Dover
sorry, should have added that i'm not aware of any library to do this, but you could certainly write one! :) and i forgot to use the list, sorry. - isaac On Fri, Jul 10, 2009 at 10:28 AM, Isaac Dover wrote: > though this looks suspiciously like a homework assignment, i'll bite. > > those regex

Re: [PHP] PHP script for detecting pattern sequences?

2009-07-08 Thread WenDong Zhang
yes (\d+?)\1+ works fine On Thu, Jul 9, 2009 at 6:00 AM, Per Jessen wrote: > Rob Gould wrote: > > > Can anyone tell me if there's a PHP library out there that will help > > me determine "pattern sequences" from a string? > > > > > > Example input: > > > > 032258064516129032258064516129032258064

Re: [PHP] PHP script for detecting pattern sequences?

2009-07-08 Thread Per Jessen
Rob Gould wrote: > Can anyone tell me if there's a PHP library out there that will help > me determine "pattern sequences" from a string? > > > Example input: > > 032258064516129032258064516129032258064516129032258064516129 > Sequence = 032258064516129 > > > 0370370370370370370370370370370370

Re: [PHP] PHP script lag (5 secs) when declaring mime type.

2009-03-05 Thread Andrew Ballard
On Thu, Mar 5, 2009 at 1:26 PM, Jsbeginner wrote: > Thankyou Andrew Ballard and 9Tel , You're welcome. However, you forgot to reply to the list. > You both suggest that it's not necessory to set the Content-Length except > for images etc ... well the problem is that I also need to use this scr

Re: [PHP] PHP script lag (5 secs) when declaring mime type.

2009-03-05 Thread Andrew Ballard
On Thu, Mar 5, 2009 at 12:34 PM, Jsbeginner wrote: > Thankyou, > > I took "application/x-javascript" directly from the apache setup for my > domain so this should be correct. > > However I've just deactivated gzip (zlib.output_compression OFF in php.ini) > and that stopped the problem. > I've give

Re: [PHP] PHP script lag (5 secs) when declaring mime type.

2009-03-05 Thread 9el
On Thu, Mar 5, 2009 at 11:34 PM, Jsbeginner wrote: > Thankyou, > > I took "application/x-javascript" directly from the apache setup for my > domain so this should be correct. > > However I've just deactivated gzip (zlib.output_compression OFF in php.ini) > and that stopped the problem. > I've give

Re: [PHP] PHP script lag (5 secs) when declaring mime type.

2009-03-05 Thread Jsbeginner
Thankyou, I took "application/x-javascript" directly from the apache setup for my domain so this should be correct. However I've just deactivated gzip (zlib.output_compression OFF in php.ini) and that stopped the problem. I've given you a simplified version of the script that has the exact s

Re: [PHP] PHP script lag (5 secs) when declaring mime type.

2009-03-05 Thread haliphax
On Thu, Mar 5, 2009 at 10:27 AM, Jsbeginner wrote: > Hello, Just to say that I've got a bit further in my search : > > header('Content-Type: application/x-javascript'); > //header('Content-Length: '.filesize('test.js')); > readfile('test.js'); > ?> > > (Content-Length line removed) Has no lag...

Re: [PHP] PHP script lag (5 secs) when declaring mime type.

2009-03-05 Thread Jsbeginner
Hello, Just to say that I've got a bit further in my search : (Content-Length line removed) Has no lag... My guess is there is a problem with gzip or something that corrupts the content-length. So I'm still not sure if this is a PHP problem or an apache problem but any help would be great

Re: [PHP] PHP script lag (5 secs) when declaring mime type.

2009-03-05 Thread Jochem Maas
Jsbeginner schreef: > Hello, > > I don't know for sure is this problem is only related to PHP so I hope > I've posted in the right list. > > My problem is that with certain headers my script takes about 5 seconds > before sending the page, no matter how small the file I try to load... > My server

Re: [PHP] PHP script gives no output or error message

2008-12-27 Thread John Musbach
On Sat, Dec 27, 2008 at 3:32 PM, John Musbach wrote: > > Thanks, turns out there were multiple problems with my code. My final > working code is: > > > > for anyone who may be trying to accomplish the same thing as me. In > addition I edited index.php in the themes folder and added a php > clause

Re: [PHP] PHP script gives no output or error message

2008-12-27 Thread John Musbach
On Sat, Dec 27, 2008 at 1:13 PM, Daniel Brown wrote: >Good afternoon, John; > >There's a syntax error on line 19: > >> if(external_fud_login(fud_fetch_user($user)['id']))!=NULL) //User ID is >> valid and logged in > >It should be: >if(external_fud_login(fud_fetch_user($user['i

Re: [PHP] PHP script gives no output or error message

2008-12-27 Thread Daniel Brown
Good afternoon, John; On Sat, Dec 27, 2008 at 03:28, John Musbach wrote: [snip!] There's a syntax error on line 19: > if(external_fud_login(fud_fetch_user($user)['id']))!=NULL) //User ID is valid > and logged in It should be: if(external_fud_login(fud_fetch_user($user['id'

Re: [PHP] PHP Script/Thread ID thingie

2008-08-19 Thread Jochem Maas
Herman Gomez schreef: Jochem Maas wrote: [EMAIL PROTECTED] schreef: I'm logging things with error_log, and would like to be able to sort out one script run from another. So I'm looking for some kind of "script id" or "thread id" or "PHP script run execution ID" type of function. getmypid()

Re: [PHP] PHP Script/Thread ID thingie

2008-08-19 Thread Herman Gomez
Jochem Maas wrote: [EMAIL PROTECTED] schreef: I'm logging things with error_log, and would like to be able to sort out one script run from another. So I'm looking for some kind of "script id" or "thread id" or "PHP script run execution ID" type of function. getmypid() just returns the same

Re: [PHP] PHP Script/Thread ID thingie

2008-08-19 Thread Jochem Maas
[EMAIL PROTECTED] schreef: I'm logging things with error_log, and would like to be able to sort out one script run from another. So I'm looking for some kind of "script id" or "thread id" or "PHP script run execution ID" type of function. getmypid() just returns the same apache child process

Re: [PHP] PHP Script/Thread ID thingie

2008-08-15 Thread Stut
On 15 Aug 2008, at 23:30, Richard Lynch wrote: On Fri, August 15, 2008 10:52 am, Stut wrote: On 15 Aug 2008, at 16:37, [EMAIL PROTECTED] wrote: I'm logging things with error_log, and would like to be able to sort out one script run from another. So I'm looking for some kind of "script id" or "

Re: [PHP] PHP Script/Thread ID thingie

2008-08-15 Thread Richard Lynch
On Fri, August 15, 2008 10:52 am, Stut wrote: > On 15 Aug 2008, at 16:37, [EMAIL PROTECTED] wrote: >> I'm logging things with error_log, and would like to be able to sort >> out one script run from another. >> >> So I'm looking for some kind of "script id" or "thread id" or "PHP >> script run execu

Re: [PHP] PHP Script/Thread ID thingie

2008-08-15 Thread Eric Butera
On Fri, Aug 15, 2008 at 11:37 AM, <[EMAIL PROTECTED]> wrote: > > I'm logging things with error_log, and would like to be able to sort out one > script run from another. > > So I'm looking for some kind of "script id" or "thread id" or "PHP script run > execution ID" type of function. > > getmypi

Re: [PHP] PHP Script/Thread ID thingie

2008-08-15 Thread Stut
On 15 Aug 2008, at 16:37, [EMAIL PROTECTED] wrote: I'm logging things with error_log, and would like to be able to sort out one script run from another. So I'm looking for some kind of "script id" or "thread id" or "PHP script run execution ID" type of function. getmypid() just returns the

Re: [PHP] Php script for mail in a xhtml page

2007-09-10 Thread brian
Chris wrote: brian wrote: - You can do without the "echo" by using, eg. Yet later in another thread you complain about short_tags being an option.. can't have it both ways. Oh, is that so? Let's see what i wrote ... -- snip -- ... Better yet, PHP should do away with altogether but allo

Re: [PHP] Php script for mail in a xhtml page

2007-09-09 Thread Chris
brian wrote: Mauro Sacchetto wrote: I've to implement a php script in a web page to send mail. If I use a .html form and a separate .php script, all works fine. In the contrary, if I try to put the script into the .html file, I've some troubles... Here's the code: ... When I try to open the pa

Re: [PHP] Php script for mail in a xhtml page

2007-09-07 Thread brian
Mauro Sacchetto wrote: I've to implement a php script in a web page to send mail. If I use a .html form and a separate .php script, all works fine. In the contrary, if I try to put the script into the .html file, I've some troubles... Here's the code: ... When I try to open the page, I receive

Re: [PHP] Php script diagnostic app?

2007-06-25 Thread William Lovaton
If you have little knowledge about C you can use sysprof on a relatively new Linux distribution and you can see on a live system where the CPU is consumed the most. [] http://www.daimi.au.dk/~sandmann/sysprof/ [] http://live.gnome.org/Sysprof With a little help of Google you can map C functions t

Re: [PHP] Php script diagnostic app?

2007-06-18 Thread Guillaume Theoret
Thanks a lot for that post Paul. It brings up a question though. You said to never ever use that on a production server (an important disclaimer!) so I was wondering what people here used to log and simulate loads. I've used OpenSTA ( http://opensta.org/ ) and I was pleased with the results but i

Re: [PHP] Php script diagnostic app?

2007-06-17 Thread Paul Scott
On Mon, 2007-06-18 at 06:39 +0200, Paul Scott wrote: > If you would like a more detailed HOWTO, please let me know, and I will > write up something for you. http://fsiu.uwc.ac.za/index.php?module=blog&action=viewsingle&postid=gen9Srv59Nme5_9262_1182142431&userid=3897070607 --Paul All Email orig

Re: [PHP] Php script diagnostic app?

2007-06-17 Thread Paul Scott
On Sun, 2007-06-17 at 13:53 -0400, Robert Cummings wrote: > I believe there are profiling tools... probably from Zend. How big is I prefer using XDEBUG, which is totally free. You can install it from the pecl repositories: pecl install xdebug Then, you simply install it as an extension on your d

Re: [PHP] Php script diagnostic app?

2007-06-17 Thread Daniel Brown
On 6/17/07, Robert Cummings <[EMAIL PROTECTED]> wrote: On Sun, 2007-06-17 at 13:35 -0400, MIKE YRABEDRA wrote: > > I was wondering if there was some kind of application that would process a > php script, logging any functions (or classes) it encounters along the way. > Logging times and memory us

Re: [PHP] Php script diagnostic app?

2007-06-17 Thread Robert Cummings
On Sun, 2007-06-17 at 13:35 -0400, MIKE YRABEDRA wrote: > > I was wondering if there was some kind of application that would process a > php script, logging any functions (or classes) it encounters along the way. > Logging times and memory use. > > I am trying to figure out what in a script slows

Re: [PHP] php script from bat file

2007-06-12 Thread Richard Lynch
php.exe expects a PHP script as an argument, usually. You can run it interactively with -a or use -i to get phpinfo output and so on, but php.exe with nothing at all will run and not do much of anything. On Tue, June 12, 2007 11:30 am, Bosky, Dave wrote: > What's the syntax I need to use to execu

Re: [PHP] php script from bat file

2007-06-12 Thread Tijnema
On 6/12/07, Bosky, Dave <[EMAIL PROTECTED]> wrote: What's the syntax I need to use to execute a PHP script from a batch file? PHP is installed in 'C:\PHP' and the script I want to run is in 'C:\Inetpub\scripts\run.php'. I've created a Windows batch file which executes from the 'C:\PHP' dire

RE: [PHP] php script from bat file

2007-06-12 Thread Jay Blanchard
[snip] What's the syntax I need to use to execute a PHP script from a batch file? PHP is installed in 'C:\PHP' and the script I want to run is in 'C:\Inetpub\scripts\run.php'. I've created a Windows batch file which executes from the 'C:\PHP' directory and contains a single line 'php.exe C:\Inetp

Re: [PHP] php script fails when run from cron

2006-05-04 Thread blackwater dev
I finally got it working and Chris was correct. It appears that cron was using the wrong php. Pumping the errors of even logging them wouldn't have helped as I was tweaking the ini for the php I thought it was using. When I explicitly tell it which one to use, it seems to work fine. Thanks! O

RE: [PHP] php script fails when run from cron

2006-05-04 Thread Jay Blanchard
[snip] The code then goes on to move some data from a remote SQL Server db to the local mysql. When finished, the log stops at "got two classes". I am trying to debug now to see which of the two classes it seems to be failing on. I don't have anything in the php error log. The MSSQL connection

Re: [PHP] php script fails when run from cron

2006-05-04 Thread Richard Lynch
It's remotely possible that your database classes are trying to create temp files or cache files or something in the "current working directory" which for cron would be... The home directory of the user running it??? I don't even know what it would be, but I know it can be problematic. The cron

Re: [PHP] php script fails when run from cron

2006-05-03 Thread Chris
blackwater dev wrote: Chris, The double php thing is very likely as it is a box from my host and I installed php5 so I think php4 is on there somewhere as well without mssql support. I am simply running it like 15 21 * * * php /usr/local/apache2/htdocs/import.php How can I tell it which one

Re: [PHP] php script fails when run from cron

2006-05-03 Thread Chris
blackwater dev wrote: I have a script which runs fine from the command line but when I try to run it via cron, it seems to fail when the db class is instatiated, here is some code: $yesterday = date("Y-m-d",mktime(0, 0, 0, date("m") , date("d")-1, date("Y"))); $file=fopen("/usr/local/apache2

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-26 Thread Robert Cummings
On Wed, 2006-04-26 at 16:07, Jochem Maas wrote: > Richard Lynch wrote: > > ... > > > A general Google for search terms likely to contain what you need. > > This often requires several tries and some finesse on input for terms > > as common as "phpBB" and "forum" but an attempt must be made, even

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-26 Thread Jochem Maas
Richard Lynch wrote: ... A general Google for search terms likely to contain what you need. This often requires several tries and some finesse on input for terms as common as "phpBB" and "forum" but an attempt must be made, even if you're sure it will be fruitless... Cuz Google is goddamned s

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-24 Thread Richard Lynch
On Sat, April 22, 2006 1:51 pm, Gerr D wrote: > Richard, > > On 4/20/06, Richard Lynch <[EMAIL PROTECTED]> wrote: > >> Or perhaps you believe you have already completely mined out those >> resources, and PHP-General was your last resort. >> >> Which is fine, but that should have been in your origin

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-23 Thread Weber Sites LTD
v.com/get_example-4383.html Thanks berber -Original Message- From: Gerr D [mailto:[EMAIL PROTECTED] Sent: Saturday, April 22, 2006 8:51 PM To: [EMAIL PROTECTED] Cc: Weber Sites LTD; php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts Richard, On 4/20/06, Ri

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-22 Thread Gerr D
Richard, On 4/20/06, Richard Lynch <[EMAIL PROTECTED]> wrote: > Or perhaps you believe you have already completely mined out those > resources, and PHP-General was your last resort. > > Which is fine, but that should have been in your original post. Are you implying this list is intended to be a

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-21 Thread Weber Sites LTD
No words... Just :) -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Friday, April 21, 2006 2:48 AM To: John Nichel Cc: php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts [some SERIOUS text-deleting happened here...] On Thu, April 20

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Richard Lynch
On Thu, April 20, 2006 10:51 am, Weber Sites LTD wrote: > As I said, I could but then I would be bypassing all of the phpBB > logic > And chances are that I may miss something. Okay, try THIS tack: Why don't you search the phpBB plug-ins pages/archives/solutions for what you want? That's your mo

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Richard Lynch
On Thu, April 20, 2006 9:25 am, Weber Sites LTD wrote: > Notice that instead of helping, you too, are telling me > to go look for a PHP script somewhere else than the > PHP mailing list where so many php people that may > Have used php to write this script are reading. Why > Is that? Because he ho

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Richard Lynch
[some SERIOUS text-deleting happened here...] On Thu, April 20, 2006 8:08 am, John Nichel wrote: > Weber Sites LTD wrote: >> I have been on this list since 1998. Looking at some of the > '98 > you > say? Well, I don't remember you, but one would think being a part of I do. He posted an answer

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jochem Maas
[EMAIL PROTECTED] wrote: The idea of creating a phpBB user when a weberdev one is created has merit, but I'm not sure I saw anyone recommend doing the opposite? Since you have a fair idea of how weberdev creates users (since you created it) why not insert some PHP code into phpBB to create a w

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Weber Sites LTD
Cc: [EMAIL PROTECTED] Subject: RE: [PHP] PHP Script to open phpBB2 accounts The idea of creating a phpBB user when a weberdev one is created has merit, but I'm not sure I saw anyone recommend doing the opposite? Since you have a fair idea of how weberdev creates users (since you created it)

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread tg-php
The idea of creating a phpBB user when a weberdev one is created has merit, but I'm not sure I saw anyone recommend doing the opposite? Since you have a fair idea of how weberdev creates users (since you created it) why not insert some PHP code into phpBB to create a weberdev account when someo

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
LTD [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 10:51 AM To: 'Jeremy Schreckhise'; 'John Nichel'; php-general@lists.php.net Subject: RE: [PHP] PHP Script to open phpBB2 accounts As I said, I could but then I would be bypassing all of the phpBB logic And chances are tha

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Weber Sites LTD
emy Schreckhise -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 9:11 AM To: php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts Weber Sites LTD wrote: > Yes, both sites are on the same server but weberdev was

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread John Nichel
Jeremy Schreckhise wrote: Wasn't trying to steal anyone's thunder. Created the response, went to work, then sent it later. Your response adequate and complete. Sorry to intrude. Guess I should have added a ;) -- John C. Nichel IV Programmer/System Admin (ÜberGeek) Dot Com Holdings of Buff

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
06 9:37 AM Cc: php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts Jeremy Schreckhise wrote: > Why couldn't you use your login (weberdev). I.E. when a user creates > an account you also push this data onto the phpBB2 db. Find where > phpBB is crea

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Weber Sites LTD
l 20, 2006 4:00 PM To: Weber Sites LTD Cc: 'Stut'; php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts OK, so maybe this just seems moot, but... Weber Sites LTD wrote: > Yes, both sites are on the same server but weberdev was built by me > And weberfor

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread John Nichel
Jeremy Schreckhise wrote: Why couldn't you use your login (weberdev). I.E. when a user creates an account you also push this data onto the phpBB2 db. Find where phpBB is creating a user, analyze the encryption method use, modify your login to create both entries. Gee, I wish I would have sai

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 9:11 AM To: php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts Weber Sites LTD wrote: > Yes, both sites are on the same server but weberdev was built by me > And weberforums is phpBB2.

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread John Nichel
Weber Sites LTD wrote: Yes, both sites are on the same server but weberdev was built by me And weberforums is phpBB2. No sense in writing my own forums application. WeberDev is the main site and has it's own user base and phpBB2 is Pretty complex and I didn't have the time to create a single lo

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Wolf
OK, so maybe this just seems moot, but... Weber Sites LTD wrote: > Yes, both sites are on the same server but weberdev was built by me > And weberforums is phpBB2. No sense in writing my own forums application. Same server means you can look at the database > WeberDev is the main site and has it'

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread John Nichel
Weber Sites LTD wrote: Notice that instead of helping, you too, are telling me to go look for a PHP script somewhere else than the PHP mailing list where so many php people that may Have used php to write this script are reading. Why Is that? Actually, saying to go look at the phpBB site/forums

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Weber Sites LTD
mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 3:12 PM To: Weber Sites LTD Cc: php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts Weber Sites LTD wrote: >Not exactly, we are talking about two different sites with two >different Databases. Each site h

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Stut
Weber Sites LTD wrote: Notice that instead of helping, you too, are telling me to go look for a PHP script somewhere else than the PHP mailing list where so many php people that may Have used php to write this script are reading. Why Is that? I can't speak for John, but I pointed you at the

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Weber Sites LTD
-Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 3:08 PM To: php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts Weber Sites LTD wrote: > Google was the 1st place I looked. Maybe the phpBB site/forums would have be

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Stut
Weber Sites LTD wrote: Not exactly, we are talking about two different sites with two different Databases. Each site has it's own userbase and authentication will Still be against the respected DB. I just want the account to be ready For the user if he already opened it. Are both sites on t

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread John Nichel
Weber Sites LTD wrote: Google was the 1st place I looked. Maybe the phpBB site/forums would have been a better choice. I have been on this list since 1998. Looking at some of the answers on this list lately it must be a real disappointment for many people. There are many people that like to

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Weber Sites LTD
; ? Thanks berber -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 2006 2:09 PM To: Weber Sites LTD Cc: [EMAIL PROTECTED]; php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts Weber Sites LTD wrote: >When you go to http://www

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Stut
Weber Sites LTD wrote: When you go to http://www.weberdev.com you need to create an account For some of the options. IF you go to http://www.weberforums.com you Need to create a 2nd account cause there is no connection between The two sites. I'm looking for a script (I found something on phpbb.

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Weber Sites LTD
Sites LTD; php-general@lists.php.net Subject: RE: [PHP] PHP Script to open phpBB2 accounts [snip] I'm looking for a ready made php script that can open phpBB 2.0.20 accounts By sending username, email and password. {/snip] I am looking for a good hearted woman who likes to dance. I used Google.

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Weber Sites LTD
ot Working very well) that will save the users the need to open two Account. Thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 9:41 PM To: php-general@lists.php.net Subject: Re: [PHP] PHP Script to open phpBB2 accounts For the

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-19 Thread Jay Blanchard
[snip] How's it working for you? I'm still waiting on the top 10 to finish the questionnaire... [/snip] It is a little hit and miss, but that is the breaks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-19 Thread Wolf
How's it working for you? I'm still waiting on the top 10 to finish the questionnaire... Jay Blanchard wrote: > [snip] > I'm looking for a ready made php script that can open phpBB 2.0.20 > accounts > By sending username, email and password. > {/snip] > > I am looking for a good hearted woman wh

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-19 Thread tg-php
Stut... how many of those have asked for your credit card number? -TG = = = Original message = = = Jay Blanchard wrote: > [snip] > I'm looking for a ready made php script that can open phpBB 2.0.20 > accounts > By sending username, email and password. > /snip] > > I am looking for a good hearte

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-19 Thread Stut
Jay Blanchard wrote: [snip] I'm looking for a ready made php script that can open phpBB 2.0.20 accounts By sending username, email and password. {/snip] I am looking for a good hearted woman who likes to dance. I used Google. How's that working out for ya? I'm on date 3 of the 3,130,000 result

Re: [PHP] PHP Script to open phpBB2 accounts

2006-04-19 Thread tg-php
For the purpose of creating phpBB accounts? As in, automated creation of mass amounts of phpBB accounts maybe for the purpose of spamming phpBB's? Just curious. Please clarify the need to automate creation of phpBB accounts if that's what you're asking for. -TG = = = Original message = = = I

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-19 Thread Jay Blanchard
[snip] I'm looking for a ready made php script that can open phpBB 2.0.20 accounts By sending username, email and password. {/snip] I am looking for a good hearted woman who likes to dance. I used Google. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/

RE: [PHP] PHP Script not sending email in WinME and PWS

2006-04-19 Thread Jay Blanchard
[snip] ...way too much crud... [/snip] A. I could never find a question. 2. That is way too much stuff to post through a mailing list. No one will go through it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Php Script Stumped!

2006-04-06 Thread Jim Moseby
> Hi. Hi! > doing this script for an assignment, and got it basically working. > the only problems are: > Assignment, eh? Generally, folks on the PHP list will not do your homework for you. But I'll offer some light nudges in the right direction for you. > > 1. wen i load the user form, the

Re: [PHP] Php Script Stumped!

2006-04-06 Thread Brad Bonkoski
1. Look at this: http://javascript.internet.com/forms/form-focus.html 2. See Below 3. Take a look at this function: http://www.php.net/manual/en/function.date.php -B marvin hunkin wrote: Hi. doing this script for an assignment, and got it basically working. the only problems are: 1.

Re: [PHP] php script running as a cgi

2006-01-16 Thread John Nichel
Weber Sites LTD wrote: When running scripts in CGI mode you do not run them via your web server. Why do you expect to find variables that come from the web? I must be missing something. You are. I think you're confusing CGI with CLI. -- John C. Nichel IV Programmer/System Admin (ÜberGeek) Do

RE: [PHP] php script running as a cgi

2006-01-16 Thread Weber Sites LTD
When running scripts in CGI mode you do not run them via your web server. Why do you expect to find variables that come from the web? I must be missing something. Sincerely berber Visit the Weber Sites Today, To see where PHP might take you tomorrow. PHP code examples : http://www.weberde

Re: [PHP] php script running as a cgi

2006-01-16 Thread David Grant
Hi, zedleon wrote: > I am running a php script as a cgi so to be able to run under my user name. > The script seems to be working except for one major problem. > the cgi script is not finding the variables passed by the html form... How are you attempting to access them? David -- David Gran

Re: [PHP] PHP script for removing/forwarding suspected spam from pop3 mailbox

2005-08-12 Thread Stephen Allen
On Thu, Aug 11, 2005 at 02:39:57PM +0100 or thereabouts, I. Gray wrote: > Hi. > > I'd like to find or write a script that I can run every so often (hourly > for example) from cron that will check my pop3 mailboxes for any emails > with SPAM in the subject line and either delete them or f

Re: [PHP] php script calling another one (on different machine), session variables

2005-08-01 Thread James
Thanks Rory: I tried using fopen() and CURL and they both worked like a charm! No need to juggle redirects and session variables. -James At 9:21 PM +0200 8/1/05, Rory Browne wrote: On 8/1/05, Jochem Maas <[EMAIL PROTECTED]> wrote: Rory Browne wrote: > On 8/1/05, James <[EMAIL PROTECTED]

Re: [PHP] php script calling another one (on different machine), session variables

2005-08-01 Thread Jochem Maas
Rory Browne wrote: ... If you don't have admin access to your boxes, then you could write a session handler on one of the systems to dl the necessary sesssion info on demand. For more info see purely out of interest, see what? :-) Sorry - but I thought someone of your experience Jochem wo

Re: [PHP] php script calling another one (on different machine), session variables

2005-08-01 Thread Rory Browne
On 8/1/05, Jochem Maas <[EMAIL PROTECTED]> wrote: > Rory Browne wrote: > > On 8/1/05, James <[EMAIL PROTECTED]> wrote: > > ... > > > > > Do the two machines share a common domain name? are your machines for > > example boxa.commondomain.com and boxb.commondomain.com if so then you > > can have th

  1   2   >