Re: [PHP] I need some help And the people at the Bug section pointed me to you

2004-04-13 Thread David T-G
Hi! ...and then [EMAIL PROTECTED] said... % % Im a collage student Now that's an interesting one... ... % on the make install is where I got the error ... % % Reproduce code: % --- ... % chmod 755 /www/modules/libphp5.so % chmod: failed to get attributes of `/www/modules/libphp5.

[PHP] I need some help And the people at the Bug section pointed me to you

2004-04-12 Thread Jbard888
Im a collage student And im trying to set up snort as a class project I downloaded all needed files according to the instructions Everything was going fine untill I got to the PHP installation. I typed ./configure --prefix=/www/php --with-apxs2=/www/bin/apxs --with-config-file-path=/www/php --ena

[PHP] I need some help

2003-03-11 Thread Novell
I have read many documents on how to install PHP4.3.1 on apache. I have installed PHP before but for some unknown reason I have been unsucessfull this time. When I run apachectl start on my FreeBSD server it tells that It there is an error or misspelling in line 206, which pions out to the LoadModu

Re: [PHP] I need some help: PHP portal site/creating email accounts through form submission

2002-07-31 Thread Kevin Myrick
Thanks man Kevin Myrick www.ultimatealchemy.com --- Nick Wilson <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > * and then Kevin Myrick declared > > So my specific problem is this: How do I create a > new > > user account on a *NIX system to have permissio

Re: [PHP] I need some help: PHP portal site/creating email accounts through form submission

2002-07-31 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Kevin Myrick declared > So my specific problem is this: How do I create a new > user account on a *NIX system to have permissions to > send and receive email, for a web based email system. I think you'd need to take a look at the exec

Fw: [PHP] I need some help: PHP portal site/creating email accounts through form submission

2002-07-31 Thread Nathan Cook
> So my specific problem is this: How do I create a new > user account on a *NIX system to have permissions to > send and receive email, for a web based email system. In theory, and in my case, I couldn't have PHP do this because PHP is running on apache with the user status of nobody. So here i

Re: [PHP] I need some help: PHP portal site/creating email accounts through form submission

2002-07-31 Thread Kevin Myrick
Specific problems? Ok, I think I can do something about that... I am not sure how many emails he can handle, but I am pretty sure he can create as many as he wants. Basically unlimited accounts. I am pretty sure that the permissions would be aimacable to do that, as in 755 permissions on his serv

Re: [PHP] I need some help: PHP portal site/creating email accounts through form submission

2002-07-31 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Kevin Myrick declared > I also want to do a signup form for his site so when > people join the "community" forum, they will > automatically be given an email username and password > for his site. > > Any help would be very greatful.

[PHP] I need some help: PHP portal site/creating email accounts through form submission

2002-07-31 Thread Kevin Myrick
Ok, I admit, I am relatively new to PHP. But I have some good ideas of what I want to do, and I have a client who wants to have a portal for his LANParty Site, and I am working on that, somewhat successfully. I am trying to use PHP-Nuke, but it won't load on his FreeBSD server. Any ideas? I also

[PHP] I need some help with this code

2001-08-26 Thread Javi - NeoDigit
I'm using copy() and the final owner is "nobody", I'm opening a socket connection with fsockopen() so I have a validate user. I want the validated user to be the owner of the new file That`s de code: - open the socket - validate user - change dir chmod so we can write - write the file (with "nobod

Re: [PHP] i need some help with extracting data from mysql

2001-05-10 Thread Steve Werby
"Sandeep Hundal" <[EMAIL PROTECTED]> wrote: > > my query is "SELECT group, name FROM $tablename WHERE approved='yes' > > GROUP BY folder ORDER BY folder; > > Sorry, substitute folder for Group. I just wrote that by mistake. > > Data is such: > 1 | friends | name1 | yes > 2 | misc| name2 | yes

RE: [PHP] i need some help with extracting data from mysql

2001-05-10 Thread Sandeep Hundal
-Original Message- From: Steve Werby [mailto:[EMAIL PROTECTED]] Sent: 10 May 2001 17:04 To: Sandeep Hundal; php Subject: Re: [PHP] i need some help with extracting data from mysql "Sandeep Hundal" <[EMAIL PROTECTED]> wrote: > i've got a simple problem, yet it

Re: [PHP] i need some help with extracting data from mysql

2001-05-10 Thread Steve Werby
"Sandeep Hundal" <[EMAIL PROTECTED]> wrote: > i've got a simple problem, yet it doesn't work, so i hope someone can > help me out here. > > i've got a table with id, group, and name. each group has many names > ofcourse. Are these *all* of the field names? > now i need to output the data like :

RE: [PHP] i need some help with extracting data from mysql desperately!!

2001-05-10 Thread Sandeep Hundal
age- From: bill [mailto:[EMAIL PROTECTED]] Sent: 10 May 2001 14:58 To: [EMAIL PROTECTED] Subject: Re: [PHP] i need some help with extracting data from mysql Sandeep, Try: $sql="SELECT group, name FROM $tablename WHERE approved='yes' ORDER BY group, name"; Don't know wh

[PHP] i need some help with extracting data from mysql desperately!!

2001-05-10 Thread Sandeep Hundal
>name1 >name2 >name3 >group2 >name4 >name5 thanks for any help, i'm sure this is something really straightforward, but i can't put my finger to it tia! /sunny -Original Message- From: bill [mailto:[EMAIL PROTECTED]] Sent: 10 May 20

Re: [PHP] i need some help with extracting data from mysql

2001-05-10 Thread bill
Sandeep, Try: $sql="SELECT group, name FROM $tablename WHERE approved='yes' ORDER BY group, name"; Don't know what fieldname "folder" is in your original SQL. You said that the table had only id, group, & name. But I note that you must also have a fieldname called "approved". In any case, as

[PHP] i need some help with extracting data from mysql

2001-05-10 Thread Sandeep Hundal
hi all, i've got a simple problem, yet it doesn't work, so i hope someone can help me out here. i've got a table with id, group, and name. each group has many names ofcourse. now i need to output the data like : > group1 >name1 >name2 >name3 >group2 >name4 >name5 >group3 >n