, 2003 3:27 PM
Subject: Re: [PHP] Need some help in "exec"-attack
> On Monday 13 January 2003 21:13, Alex Ciurea wrote:
> > Hi,
> >
> > I think I've solved the problem
> >
> > group owner of the dest_dir must be apache !!!
>
> NB if mysql is
On Monday 13 January 2003 21:13, Alex Ciurea wrote:
> Hi,
>
> I think I've solved the problem
>
> group owner of the dest_dir must be apache !!!
NB if mysql is running whilst you're copying the files then you could end up
with incorrect backups.
--
Jason Wong -> Gremlins Associates -> www.greml
ty
reasons.
- Original Message -
From: "Jason Wong" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 13, 2003 3:08 PM
Subject: Re: [PHP] Need some help in "exec"-attack
> On Monday 13 January 2003 19:53, Alex Ciurea wrote:
> > Hi all,
>
Hi,
I think I've solved the problem
group owner of the dest_dir must be apache !!!
- Original Message -
From: "Alex Ciurea" <[EMAIL PROTECTED]>
To: "php mailing" <[EMAIL PROTECTED]>
Sent: Monday, January 13, 2003 1:53 PM
Subject: [PHP] Need some help in "exec"-attack
> Hi all,
>
>
On Monday 13 January 2003 19:53, Alex Ciurea wrote:
> Hi all,
>
> this is my situation:
> I want to execute some comands using 'shell_exec':
>
> $command=shell_exec("ls -la /usr/dest_dir;cp -R /usr/source_dir/1.php
> /usr/dest_dir;cd /usr/dest_dir;ls -la");
> echo "$command";
>
> Actually, these co
With my limited knowledge (i.e none, lol) i was wondering if you are able to
give me the code you use to do it. i will then play around with it t get
Canberra, is that ok? doesn't matter if not.
--
Cheers
-
Simon Angell
Canberra ACT
www.canb
> Thats a Nice feaure you have, How do you do that?
I have a cron event on my server that grabs the relevant page from the
web site soon after it is updated (around 20 past each hour) using "lynx
-dump url" which then pipes the resulting page dump through grep to grab
just the line of data that
Thats a Nice feaure you have, How do you do that?
I have spoken to guy who made the php file and he will look into the bugs
for me, also i will keep playing around with it.
--
Cheers
-
Simon Angell
Canberra ACT
www.canberra-wx.com
-
> I am having trouble with a PHP script. I am not the one who
> made this and my knowledge on php is very little.
> I came across this php script
> www.canberra-wx.com/bomonster/bomonster01.php
Tried loading this and had too many page errors to figure out what you
are doing.
> www.canber
?
Thanks
Will
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: 13 September 2002 08:41 AM
> To: [EMAIL PROTECTED]
> Cc: timo stamm; Will Steffen
> Subject: Re: [PHP] Need some help with array sorting
>
>
> Hi Will,
>
>
>
In you php.ini, change the SMTP to the Solaris mail
server.
Hope this help,
Harry
--- "Ryan F. Bayhonan" <[EMAIL PROTECTED]> wrote:
> Good day to all.
>
> Just want to ask some help from you guys.
>
> I'h vaving problem with mail function. I'm currently
> making a PHP
> application that would
$query="INSERT INTO news VALUES($newsid,'$title','$author',$posted,'$body'
)";
-Original Message-
From: menezesd [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 02, 2002 12:03 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Need some help please
Hello Friends.
I know I am asking for too much.
On Tue, 2 Apr 2002, Ryan F. Bayhonan wrote:
> I'h vaving problem with mail function. I'm currently making a PHP
> application that would be able to send mails to my co-employee. My webserver
> where my application reside runs on linux without a sendmail appliation.
> That is why the mail function
Hi. A quick hack to figure out your problem is
to change:
IF (mysql_query($query)){
print "Row added to table";
} else {
print "error adding row";
}
To:
if (!$result = mysql_query($query)) {
print 'Query Error: ' . mysql_error();
exit;
} else {
print 'Success! Row added.';
}
In sh
Did you restart mysql ?
could you see your entrances when using mysql on console
with master/masterpassword?
Oliver
At 28.03.2002 10:37, you wrote:
>Hello all,
>I am using php and mysql with phpmyadmin. I am trying to set up a username
>and password in mysql so that when I use
>if(!$db_conn = my
Did you flush the privileges? Using either flush privileges or mysqladmin
reload? And besides, you really should be using a GRANT query to do this.
-Rasmus
On Thu, 28 Mar 2002, hamish wrote:
> Hello all,
> I am using php and mysql with phpmyadmin. I am trying to set up a username
> and passwo
you bring up something I've been wondering about, can I fetch just a single
row to output?
chris
- Original Message -
From: Remo Pini <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 24, 2001 11:13 AM
Subject: RE: [PHP] Need some help with this idea!
select * from whatnot order by timestampcolumn desc limit 1
if the "limit 1" doesn't work with your db, just fetch the first result
only...
greets,
remo
> -Original Message-
> From: Chris Cocuzzo [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 24, 2001 8:28 AM
> To: [EMAIL PROTECTED]
>
On 24-Jul-2001 Chris Cocuzzo wrote:
> hey-
>
> I want to select the oldest show from a database to display on my main page,
> since the oldest show is also the show happening closest to any current
> time(if that makes sense...). I included a timestamp field in my table of
> shows in anticipatio
On Tue, 24 Jul 2001 15:57, Chris Cocuzzo wrote:
> hey-
>
> I want to select the oldest show from a database to display on my main
> page, since the oldest show is also the show happening closest to any
> current time(if that makes sense...). I included a timestamp field in
> my table of shows in a
ndmark [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 15, 2001 4:54 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [PHP] need some help..
>
>
> At 14.03.2001 00:44, you wrote:
> >Why, Don't you use the ftp functions to ftp everything over, instead of
> >reading
At 14.03.2001 00:44, you wrote:
>Why, Don't you use the ftp functions to ftp everything over, instead of
>reading in all the files. If you can get telnet access you could ftp them
>straight from your telnet connection.
>
>
>At 06:31 PM 3/13/01 -0500, [EMAIL PROTECTED] wrote:
> >Im moving servers
56 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] need some help..
Do you have a friend with FTP and DSL??... pull out your drive an go to
their place.
Rick
At 06:31 PM 3/13/01 -0500, [EMAIL PROTECTED] wrote:
>Im moving servers within the week.. and I got about 600mbs worth of stuff
on
>th
Do you have a friend with FTP and DSL??... pull out your drive an go to
their place.
Rick
At 06:31 PM 3/13/01 -0500, [EMAIL PROTECTED] wrote:
>Im moving servers within the week.. and I got about 600mbs worth of stuff on
>there, and me being on 56K its nearly an impossible tasks.
>
>I thought
Hi,
what's up Mick?!
Okay, what have you written in your script?! You never
wrote it! try include ('./domain.php') instead of
include ('domain.php') maybe it helps you! I tested
that on my FreeBSD 4.2+apache/php but it seems that
include ('domain.php') is also OK. Just give it a try or
add the d
Mick -
M> Warning: Failed opening '/usr/local/apache/htdocs/mick/domain.php' for
M> inclusion (include_path='') in Unknown on line 0
if you get this error it probably means you don't have permissions set
up correctly.
Check the owner of your apache process and set owner/permission for
your php fi
> Basically in a nutshell... i made a new row in post signature int(1)
And you have a new column (you said row, you meant column) in members
signature text?...
Where are you storing the actual text and how is it related to 1 or 2 or is
it always just 1?...
If I'm confusing you, draw it out on pa
27 matches
Mail list logo