[PHP] escapeshellarg

2007-05-14 Thread Mohamed CHAARI

Hi all,

I have to execute an external command, with an argument (filename or 
directory name) given by user input (via a form), ie something like this:


exec('ls $_POST[...]')

what do you think about using escapeshellarg() function in this case ? 
can I rely on it to have a secure solution ? or is there a risk ? ...



thank you.


--
---
--Mohamed CHAARI   (mailto : [EMAIL PROTECTED])
STMicroelectronics - Tunis - HPC/STS Division
Phone: (+216) 70 10 52 09 - TINA: 157 5209

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] printing out this nested array

2007-05-14 Thread Don Don
I am having a bit of a confusion printing the values of an array i have. When i 
print_r this array it contains the following:
 
Array ( [ValueA] => ValueA [ValueB] => valueB [TestValue] => TestValue [Errors] 
=> Array ( [0] => Array ( [ErrorId] => AD27JH [ErrorMsg] => OK ) ) )  
  I can get the values of ValueA, ValueB and TestValue but I am a bit confused 
at getting the values of ErrorId and ErrorMsg.
   
  e.g. echo $arrayName['ValueA'];  // will display the value contained there
  
am thinking echo $arrayName['Errors']['ErrorId']; // should display the value 
but it does not
  Anyone wants to shed more light ?
  
Cheers


 
-
8:00? 8:25? 8:40?  Find a flick in no time
 with theYahoo! Search movie showtime shortcut.

Re: [PHP] printing out this nested array

2007-05-14 Thread Crayon Shin Chan
On Monday 14 May 2007 18:41, Don Don wrote:

> am thinking echo $arrayName['Errors']['ErrorId']; // should display the
> value but it does not Anyone wants to shed more light ?

echo $arrayName['Errors'][0]['ErrorId']; // ??

-- 
Crayon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] printing out this nested array

2007-05-14 Thread Richard Davey

Don Don wrote:


I am having a bit of a confusion printing the values of an array i have. When i 
print_r this array it contains the following:
 
Array ( [ValueA] => ValueA [ValueB] => valueB [TestValue] => TestValue [Errors] => Array ( [0] => Array ( [ErrorId] => AD27JH [ErrorMsg] => OK ) ) )  
  I can get the values of ValueA, ValueB and TestValue but I am a bit confused at getting the values of ErrorId and ErrorMsg.
   
  e.g. echo $arrayName['ValueA'];  // will display the value contained there
  
am thinking echo $arrayName['Errors']['ErrorId']; // should display the value but it does not

  Anyone wants to shed more light ?


$arrayName['Errors'][0]['ErrorId']

Cheers,

Rich
--
Zend Certified Engineer
http://www.corephp.co.uk

"Never trust a computer you can't throw out of a window"

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Making code public -- What steps to take? GPL?

2007-05-14 Thread Crayon Shin Chan
On Monday 14 May 2007 07:30, Daniel Brown wrote:

Please don't top post.

> The biggest thing to remember is that a license is like a key
> it's meant to keep an honest man honest, but won't stop someone who is
> intent on taking what they want for a profit.

Sure, but if you don't make your intentions clear from the start then 
there's no use complaining afterwards. Not quite an accurate analogy but 
here goes:

"If you leave valuables around your house and leave the doors and windows 
unlocked you're not going to get much sympathy from the police (or the 
insurance company for that matter) when you get burgled."

So, if you don't use a suitable license then you don't have a stick to 
beat someone with should it ever come to it.

-- 
Crayon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] printing out this nested array

2007-05-14 Thread Don Don
oops ! [0] 
   
  cheers

Richard Davey <[EMAIL PROTECTED]> wrote:
  Don Don wrote:

> I am having a bit of a confusion printing the values of an array i have. When 
> i print_r this array it contains the following:
> 
> Array ( [ValueA] => ValueA [ValueB] => valueB [TestValue] => TestValue 
> [Errors] => Array ( [0] => Array ( [ErrorId] => AD27JH [ErrorMsg] => OK ) ) ) 
> I can get the values of ValueA, ValueB and TestValue but I am a bit confused 
> at getting the values of ErrorId and ErrorMsg.
> 
> e.g. echo $arrayName['ValueA']; // will display the value contained there
> 
> am thinking echo $arrayName['Errors']['ErrorId']; // should display the value 
> but it does not
> Anyone wants to shed more light ?

$arrayName['Errors'][0]['ErrorId']

Cheers,

Rich
-- 
Zend Certified Engineer
http://www.corephp.co.uk

"Never trust a computer you can't throw out of a window"

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



   
-
Luggage? GPS? Comic books? 
Check out fitting  gifts for grads at Yahoo! Search.

RE: [PHP] escapeshellarg

2007-05-14 Thread Brad Fuller
Mohamed CHAARI wrote:
> Hi all,
> 
> I have to execute an external command, with an argument
> (filename or directory name) given by user input (via a
> form), ie something like this:
> 
> exec('ls $_POST[...]')
> 
> what do you think about using escapeshellarg() function in
> this case ?
> can I rely on it to have a secure solution ? or is there a risk ? ...
> 
> 
> thank you.

In addition to using escapeshellarg(), I would first determine if the input
file or directory exists before executing the command.  This adds another
layer of protection.



-B

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] printing out this nested array

2007-05-14 Thread Brad Fuller
Don Don wrote:
> I am having a bit of a confusion printing the values of an
> array i have. When i print_r this array it contains the following:
> 
> Array ( [ValueA] => ValueA [ValueB] => valueB [TestValue] =>
> TestValue [Errors] => Array ( [0] => Array ( [ErrorId] =>
> AD27JH [ErrorMsg] => OK ) ) )
>   I can get the values of ValueA, ValueB and TestValue but I
> am a bit confused at getting the values of ErrorId and ErrorMsg.
> 
>   e.g. echo $arrayName['ValueA'];  // will display the value
> contained there 
> 
> am thinking echo $arrayName['Errors']['ErrorId']; // should
> display the value but it does not
>   Anyone wants to shed more light ?
> 
> Cheers

echo $arrayName['Errors'][0]['ErrorId'];

-B

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] printing out this nested array

2007-05-14 Thread Jim Lucas

Don Don wrote:

I am having a bit of a confusion printing the values of an array i have. When i 
print_r this array it contains the following:
 
Array ( [ValueA] => ValueA [ValueB] => valueB [TestValue] => TestValue [Errors] => Array ( [0] => Array ( [ErrorId] => AD27JH [ErrorMsg] => OK ) ) )  
  I can get the values of ValueA, ValueB and TestValue but I am a bit confused at getting the values of ErrorId and ErrorMsg.
   
  e.g. echo $arrayName['ValueA'];  // will display the value contained there
  
am thinking echo $arrayName['Errors']['ErrorId']; // should display the value but it does not

  Anyone wants to shed more light ?
  
Cheers



 
-

8:00? 8:25? 8:40?  Find a flick in no time
 with theYahoo! Search movie showtime shortcut.
suggestion for next time.  echo a  or  tag out before you echo your array next time 
and you will then see the nesting of the arrays


Doing that would have made the answer to this question very obvious

--
Jim Lucas

   "Some men are born to greatness, some achieve greatness,
   and some have greatness thrust upon them."

Unknown

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] printing out this nested array

2007-05-14 Thread Myron Turner
Jim Lucas wrote:-- 



   "Some men are born to greatness, some achieve greatness,
   and some have greatness thrust upon them."

Unknown



Malvolio,12th Night, III.iv

--

_
Myron Turner
http://www.room535.org
http://www.bstatzero.org
http://www.mturner.org/XML_PullParser/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] printing out this nested array

2007-05-14 Thread Richard Davey

Jim Lucas wrote:

suggestion for next time.  echo a  or  tag out before 
you echo your array next time and you will then see the nesting of the 
arrays


Doing that would have made the answer to this question very obvious


You could also benefit from installing this very handy little bit of 
code into your PHP project:


http://krumo.sourceforge.net/

Cheers,

Rich
--
Zend Certified Engineer
http://www.corephp.co.uk

"Never trust a computer you can't throw out of a window"

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Reading & Writing XML Documents...

2007-05-14 Thread Anthony J. Maske
Can anyone point me to some good online reference/examples of
reading/writing XML documents?


Thanks,

Anthony



RE: [PHP] Reading & Writing XML Documents...

2007-05-14 Thread Jim Moseby
> 
> Can anyone point me to some good online reference/examples of
> reading/writing XML documents?
> 

With regards to PHP?  Sure!  http://us2.php.net/xml

JM

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Reading & Writing XML Documents...

2007-05-14 Thread WeberSites LTD
http://www.php-code-search.com/?q=xml

Check out the Articles section

berber 

-Original Message-
From: Anthony J. Maske [mailto:[EMAIL PROTECTED] 
Sent: Monday, May 14, 2007 9:44 PM
To: PHP General
Subject: [PHP] Reading & Writing XML Documents...

Can anyone point me to some good online reference/examples of
reading/writing XML documents?


Thanks,

Anthony

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] SESSION LOST!

2007-05-14 Thread Yannick Warnier
Le jeudi 10 mai 2007 à 15:24 +0200, Oliver Block a écrit :
> Am Donnerstag, 10. Mai 2007 08:59 schrieb Sascha Braun:
> > but after a little
> > time, the session is just lost.
> 
> That doesn't say anything to me. Could you be more verbose on what you mean 
> by 
> "the sessin is lost"?

:-)

I get that too and it's the best description I could give in one
sentence. Basically, the session array $_SESSION is emptied. Without
notice, warning or error. Just emptied.

I tried to track it down with xdebug as well but it's really just
loosing it.

I will try to work on this problem this week, and basically looking at
the last hundreds of posts about sessions in this list, I would narrow
it down to the following possible problems and solutions:

1) Unsynched:
It is possible that client and server do not share the same notion of
time, which is stored in the session cookies, so the session would be
expired sooner than expected. A way to test if this is the problem is to
set the cookie lifetime to one year or more, and see if it improves
anything. However, if this was the problem, timeouts would tend to
happen after a definite period of time, not after a random period like I
have and like Sascha seems to have as well

2) Mutex 1:
The problem might be due to concurrent (or almost) uses of the session,
either with AJAX code or with frames, which might mean that the sessions
are not complete when accessed, or access is prevented by a blocking
write operation on the session file. This should only happen in the
context of concurrent requests, and the only possible improvement might
be to use session_write_close() as soon as a session use is finished, or
to use mutex-aware session handler functions.
I wonder if, in this case, the session should really be lost and
emptied... maybe a write still allows a read to work...

3) Mutex 2:
When using alternative session handlers, these session handlers might
not be mutex-aware, so a concurrent access prevents data from being
written before it is read. Make sure your session handling code is
mutex-aware (apparently there is some code documented in the user
comments of the PHP online doc).

I hope this helps. I'll try to come back and report if any of these
solutions has worked for me.

Yannick

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Resources for plugin based frameworks

2007-05-14 Thread Guillaume Theoret

Hi,

I'm about to start a project and I'm still in the architectural design
phase. It's going to be a content management system but for several
unrelated things such as website management, employee management or
project management.

I plan on building a module based system where each part can be
developed as an individual plugin and then just added into the
portal/main page.

Does anyone know of any php-specific resources (either online or paper
format, both are fine) that would be helpful?

Thank you,
Guillaume

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Resources for plugin based frameworks

2007-05-14 Thread Greg Donald

On 5/14/07, Guillaume Theoret <[EMAIL PROTECTED]> wrote:

I'm about to start a project and I'm still in the architectural design
phase. It's going to be a content management system but for several
unrelated things such as website management, employee management or
project management.

I plan on building a module based system where each part can be
developed as an individual plugin and then just added into the
portal/main page.

Does anyone know of any php-specific resources (either online or paper
format, both are fine) that would be helpful?



If PHP is required I would suggest Drupal.  It's a really good CMS
with a solid plugin/module architecture.  The API is very well
documented.



--
Greg Donald
http://destiney.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Bounty, NOW!

2007-05-14 Thread Brad Sumrall
My good friend dropped the ball!

Here is the gig, and less than 48 to get it done.
For those whom know phpbb and php, this should be a cake walk!
Easy cash.

  http://www.123yachtdayworkers.com

ftp user = onetwou9

ftp pass = garvitos

accessing the mysql is through cpanel at  
http://www.bluehosting.com ? maybe?

Using ftp password and domain name?

Use my servers mysql if needed

  http://www.boatcrafts.net

brads

andreasd



This guy is going to have a lot of stuff for us. We are slightly over
budget, but he is very happy thus far.

When I walk into this one, he had a basic page and going crazy trying to
write a basic DB query.

I hooked him up with phpbb and some how to get it don instruction and now he
needs this piece of customer code.



Concept:

Joe worker logs in and says I am available on yaddy yah days (calendar mod
is kind of works?) along with his description etc.



Joe Captain pays 10 buck to select 5 workers over the course of a month or
has to pay more.

He views (without last name, email, or phone number) Joe worker, selects
days he is need based on available days on calendar.

Email is sent to Joe Captain with all of worker contact info and Joe
receives email notice as well.



Record of transaction is keep in a DB table, a count >=5 should be stored in
a table in case Joe Captain does not use his 5 picks up to 30 days.

Hence Flowchart:

Collect Calendar dates and user id variable for FORM data

On SUBMIT, POST

Db 1 for count Captain Email Worker email DB record



Goal:

If I provide a basic submit button which emails Joe Worker and Joe Captain
with user profile info and a record in the database. i.e grab the variable
from a selected profile and submit = 2 emails and count >= 5 or error. We
are golden!

If you have any tricks with the calendar. People will be very happy.



Re: [PHP] Bounty, NOW!

2007-05-14 Thread Robert Cummings
Maybe you know what you're doing, more than likely you don't. Posting
logins and passwords to your server on a public mailing list is usually
tantamount to idiocy.

Cheers,
Rob.


On Tue, 2007-05-15 at 01:20 -0400, Brad Sumrall wrote:
> My good friend dropped the ball!
> 
> Here is the gig, and less than 48 to get it done.
> For those whom know phpbb and php, this should be a cake walk!
> Easy cash.

-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Bounty, NOW!

2007-05-14 Thread Auto-Deppe, C. Haensel

Brad,

I am pretty new to this mailing list thing, but even I would NEVER do stuff 
like that. Even though I would bet my behind that at least 90% of us 
PHP-Coders are men and women of honour, you should never post username & 
pass like that... Oh wait... maybe your root pass for the server :oP


Seriously mate, don't do that, or you might get visitors you don't like (the 
other 10% of readers on this list).


Be aware of the dogs ;o)


From rainy germany, my name is

Chris

Back to you, Becky Anderson!

- Original Message - 
From: "Robert Cummings" <[EMAIL PROTECTED]>

To: "Brad Sumrall" <[EMAIL PROTECTED]>
Cc: 
Sent: Tuesday, May 15, 2007 7:27 AM
Subject: Re: [PHP] Bounty, NOW!



Maybe you know what you're doing, more than likely you don't. Posting
logins and passwords to your server on a public mailing list is usually
tantamount to idiocy.

Cheers,
Rob.


On Tue, 2007-05-15 at 01:20 -0400, Brad Sumrall wrote:

My good friend dropped the ball!

Here is the gig, and less than 48 to get it done.
For those whom know phpbb and php, this should be a cake walk!
Easy cash.


--
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] RE: Bounty

2007-05-14 Thread Brad Sumrall
Knuckle heads don't even know they are going though a proxy!!!

 

Hehehehe



[PHP] RE: Bounty

2007-05-14 Thread Brad Sumrall
Does anyone want to answer the ad, or am I just going to be chasing knuckle
heads?

 

Brad



Re: [PHP] RE: Bounty

2007-05-14 Thread Auto-Deppe, C. Haensel

Yes, you are.

Better get some sleep and drink less coffee ;o)

Chris

- Original Message - 
From: "Brad Sumrall" <[EMAIL PROTECTED]>

To: 
Sent: Tuesday, May 15, 2007 7:39 AM
Subject: [PHP] RE: Bounty


Does anyone want to answer the ad, or am I just going to be chasing 
knuckle

heads?



Brad




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Bounty, NOW!

2007-05-14 Thread Andrew Wilson
Lol, Either he has

1) Changed the pass
2) Got hacked
3) Supplied with wrong pass.

Very funny thread either way.

Regards,
Andrew

-Original Message-
From: Robert Cummings [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 3:27 PM
To: Brad Sumrall
Cc: php-general@lists.php.net
Subject: Re: [PHP] Bounty, NOW!

Maybe you know what you're doing, more than likely you don't. Posting logins
and passwords to your server on a public mailing list is usually tantamount
to idiocy.

Cheers,
Rob.


On Tue, 2007-05-15 at 01:20 -0400, Brad Sumrall wrote:
> My good friend dropped the ball!
> 
> Here is the gig, and less than 48 to get it done.
> For those whom know phpbb and php, this should be a cake walk!
> Easy cash.

--
...
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  | a 
| powerful, scalable system for accessing system services  | such as 
| forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Bounty, NOW!

2007-05-14 Thread Brad Sumrall
I got 5 IP breaking Federal Regulations.
Hehehehe
Do you think you are not being logged?

Hehehehehe

This is funny!

-Original Message-
From: Andrew Wilson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 1:38 AM
To: 'Robert Cummings'; 'Brad Sumrall'
Cc: php-general@lists.php.net
Subject: RE: [PHP] Bounty, NOW!

Lol, Either he has

1) Changed the pass
2) Got hacked
3) Supplied with wrong pass.

Very funny thread either way.

Regards,
Andrew

-Original Message-
From: Robert Cummings [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 3:27 PM
To: Brad Sumrall
Cc: php-general@lists.php.net
Subject: Re: [PHP] Bounty, NOW!

Maybe you know what you're doing, more than likely you don't. Posting logins
and passwords to your server on a public mailing list is usually tantamount
to idiocy.

Cheers,
Rob.


On Tue, 2007-05-15 at 01:20 -0400, Brad Sumrall wrote:
> My good friend dropped the ball!
> 
> Here is the gig, and less than 48 to get it done.
> For those whom know phpbb and php, this should be a cake walk!
> Easy cash.

--
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  | a 
| powerful, scalable system for accessing system services  | such as 
| forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Bounty, NOW!

2007-05-14 Thread Paul Scott

On Tue, 2007-05-15 at 01:46 -0400, Brad Sumrall wrote:
> I got 5 IP breaking Federal Regulations.
> Hehehehe
> Do you think you are not being logged?
> 

*YAWN* Anything better to talk about? This is very l33t-ish and is now
grossly off topic.

--Paul

All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: Bounty

2007-05-14 Thread Brad Sumrall
Oh, come on.

You guys quit trying

 

Wuzzies!



[PHP] RE: Bounty

2007-05-14 Thread Brad Sumrall
The bounty still applies

 

Need a sharp php programmer on the fly.

 

No joke!



Re: [PHP] Bounty, NOW!

2007-05-14 Thread heavyccasey

HAHA! Nice one ;)

On 5/14/07, Paul Scott <[EMAIL PROTECTED]> wrote:


On Tue, 2007-05-15 at 01:46 -0400, Brad Sumrall wrote:
> I got 5 IP breaking Federal Regulations.
> Hehehehe
> Do you think you are not being logged?
>

*YAWN* Anything better to talk about? This is very l33t-ish and is now
grossly off topic.

--Paul


All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Bounty, NOW!

2007-05-14 Thread Andrew Wilson
 
Lol, just trying to protect you from yourself but seems like you have that
under control ;) Nice fool on us.
Goodluck finding a coder. 

Regards,
Andrew

-Original Message-
From: Brad Sumrall [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 3:46 PM
To: 'Andrew Wilson'
Cc: php-general@lists.php.net
Subject: RE: [PHP] Bounty, NOW!

I got 5 IP breaking Federal Regulations.
Hehehehe
Do you think you are not being logged?

Hehehehehe

This is funny!

-Original Message-
From: Andrew Wilson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 15, 2007 1:38 AM
To: 'Robert Cummings'; 'Brad Sumrall'
Cc: php-general@lists.php.net
Subject: RE: [PHP] Bounty, NOW!

Lol, Either he has

1) Changed the pass
2) Got hacked
3) Supplied with wrong pass.

Very funny thread either way.

Regards,
Andrew

-Original Message-
From: Robert Cummings [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 15, 2007 3:27 PM
To: Brad Sumrall
Cc: php-general@lists.php.net
Subject: Re: [PHP] Bounty, NOW!

Maybe you know what you're doing, more than likely you don't. Posting logins
and passwords to your server on a public mailing list is usually tantamount
to idiocy.

Cheers,
Rob.


On Tue, 2007-05-15 at 01:20 -0400, Brad Sumrall wrote:
> My good friend dropped the ball!
> 
> Here is the gig, and less than 48 to get it done.
> For those whom know phpbb and php, this should be a cake walk!
> Easy cash.

--
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  | a 
| powerful, scalable system for accessing system services  | such as 
| forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Bounty, NOW!

2007-05-14 Thread heavyccasey

Oh, and 530 Authentication Failed.

On 5/14/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

HAHA! Nice one ;)

On 5/14/07, Paul Scott <[EMAIL PROTECTED]> wrote:
>
> On Tue, 2007-05-15 at 01:46 -0400, Brad Sumrall wrote:
> > I got 5 IP breaking Federal Regulations.
> > Hehehehe
> > Do you think you are not being logged?
> >
>
> *YAWN* Anything better to talk about? This is very l33t-ish and is now
> grossly off topic.
>
> --Paul
>
>
> All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Enough games, password changed, need a php "make it happen person"

2007-05-14 Thread heavyccasey

Okay, but the password doesn't work!

On 5/14/07, Brad Sumrall <[EMAIL PROTECTED]> wrote:

Same as earlier posting.

Had some fun with my over sight on the password posting, but snort took care
of that.



But seriously folk!



Who can "poop" a program on a bounty!



Brad




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] RE: Bounty

2007-05-14 Thread Chris

Brad Sumrall wrote:

The bounty still applies

 


Need a sharp php programmer on the fly.

 


No joke!


I think you've pretty much pissed off the whole list so good luck.

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] RE: Bounty

2007-05-14 Thread Brad Sumrall
I was honestly surprised by the number of knuckle heads who would try there
luck!



-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 2:08 AM
To: Brad Sumrall
Cc: php-general@lists.php.net
Subject: Re: [PHP] RE: Bounty

Brad Sumrall wrote:
> The bounty still applies
> 
>  
> 
> Need a sharp php programmer on the fly.
> 
>  
> 
> No joke!

I think you've pretty much pissed off the whole list so good luck.

-- 
Postgresql & php tutorials
http://www.designmagick.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] RE: Bounty

2007-05-14 Thread Auto-Deppe, C. Haensel
I am honestly surprised by your lack of understanding. Trying to get a 
freelancer by pissing them off may not really be the smartest thing to do. 
;o)



- Original Message - 
From: "Brad Sumrall" <[EMAIL PROTECTED]>

To: "'Chris'" <[EMAIL PROTECTED]>
Cc: 
Sent: Tuesday, May 15, 2007 8:16 AM
Subject: RE: [PHP] RE: Bounty



I was honestly surprised by the number of knuckle heads who would try there
luck!



-Original Message-
From: Chris [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 15, 2007 2:08 AM
To: Brad Sumrall
Cc: php-general@lists.php.net
Subject: Re: [PHP] RE: Bounty

Brad Sumrall wrote:

The bounty still applies



Need a sharp php programmer on the fly.



No joke!


I think you've pretty much pissed off the whole list so good luck.

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] RE: Bounty

2007-05-14 Thread heavyccasey

One problem: the PASSWORD DOES NOT WORK!

On 5/14/07, Brad Sumrall <[EMAIL PROTECTED]> wrote:

As a person who has come here in the recent past asking free lancer help and
received nothing but near-useless references even though I was asking
specific php coding related questions. Now I com to the list offering legit
funding to my supposed php friends for their expertise and received nothing
but low end hacker repossesses.



What would you think?



I am simply trying to support the list, and all I get is hate.



I cannot help it if I am properly guarded.



Attack me, and I have proper defensives.



Respond professionally and I bare rewards..



Sincerely,






--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Bounty, NOW!

2007-05-14 Thread Brad Sumrall
Yes, I do still need legit help. But obviously I needed to make a point to
all the script kiddies out there that you are playing with fire if you even
attempt to miss use an admin password or access a server that does not
belong to you.
As a prior USMC Network Admin and DoD network security specialist.
Back off Big brother is watching!

I come to the list as a legit person seeking intelligent minds.
Not games.

So yes, respond to me as a professional or an up and coming and let's talk
business!

Brad

-Original Message-
From: Tom Ray [Lists] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 3:32 AM
To: Brad Sumrall
Subject: Re: [PHP] Bounty, NOW!

If you still need serious help with this, get in touch with me. I can 
help you with this I believe.

Brad Sumrall wrote:
> My good friend dropped the ball!
>
> Here is the gig, and less than 48 to get it done.
> For those whom know phpbb and php, this should be a cake walk!
> Easy cash.
>
>   http://www.123yachtdayworkers.com
>
> ftp user = onetwou9
>
> ftp pass = garvitos
>
> accessing the mysql is through cpanel at  
> http://www.bluehosting.com ? maybe?
>
> Using ftp password and domain name?
>
> Use my servers mysql if needed
>
>   http://www.boatcrafts.net
>
> brads
>
> andreasd
>
>
>
> This guy is going to have a lot of stuff for us. We are slightly over
> budget, but he is very happy thus far.
>
> When I walk into this one, he had a basic page and going crazy trying to
> write a basic DB query.
>
> I hooked him up with phpbb and some how to get it don instruction and now
he
> needs this piece of customer code.
>
>
>
> Concept:
>
> Joe worker logs in and says I am available on yaddy yah days (calendar mod
> is kind of works?) along with his description etc.
>
>
>
> Joe Captain pays 10 buck to select 5 workers over the course of a month or
> has to pay more.
>
> He views (without last name, email, or phone number) Joe worker, selects
> days he is need based on available days on calendar.
>
> Email is sent to Joe Captain with all of worker contact info and Joe
> receives email notice as well.
>
>
>
> Record of transaction is keep in a DB table, a count >=5 should be stored
in
> a table in case Joe Captain does not use his 5 picks up to 30 days.
>
> Hence Flowchart:
>
> Collect Calendar dates and user id variable for FORM data
>
> On SUBMIT, POST
>
> Db 1 for count Captain Email Worker email DB record
>
>
>
> Goal:
>
> If I provide a basic submit button which emails Joe Worker and Joe Captain
> with user profile info and a record in the database. i.e grab the variable
> from a selected profile and submit = 2 emails and count >= 5 or error. We
> are golden!
>
> If you have any tricks with the calendar. People will be very happy.
>
>
>   

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] RE: Bounty

2007-05-14 Thread Brad Sumrall
Yeah, knuckle heads spoiled the fun!


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 15, 2007 2:38 AM
To: Brad Sumrall
Cc: php-general@lists.php.net
Subject: Re: [PHP] RE: Bounty

One problem: the PASSWORD DOES NOT WORK!

On 5/14/07, Brad Sumrall <[EMAIL PROTECTED]> wrote:
> As a person who has come here in the recent past asking free lancer help
and
> received nothing but near-useless references even though I was asking
> specific php coding related questions. Now I com to the list offering
legit
> funding to my supposed php friends for their expertise and received
nothing
> but low end hacker repossesses.
>
>
>
> What would you think?
>
>
>
> I am simply trying to support the list, and all I get is hate.
>
>
>
> I cannot help it if I am properly guarded.
>
>
>
> Attack me, and I have proper defensives.
>
>
>
> Respond professionally and I bare rewards..
>
>
>
> Sincerely,
>
>
>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] RE: Bounty FYI

2007-05-14 Thread Brad Sumrall
Food for thought!

Respect the freedom.

Respect the Internet!

We all benefit!

Never abuse!