Hello list,
I have a php program which executes a heavy mysql query upon request.
Normally, it should not be requested too often, but I am afraid
malicious user trying to massively call this program. I am considering
to use $HTTP_REFERER to restrict the connection source, but is it worth
trustin
Justin French wrote:
>A simple looks around at phpbuilder.com will result in an article on browser
>detection & CSS... the browser detection function he writes can be used for
>many things, including what you want.
>
>Justin French
>
>
>on 16/05/02 12:09 AM, Diana Castillo ([EMAIL PROTECTED])
>wr
This is a basic question but I'm a basic fellow. If I have an array
$timespread = array("12am-01am"=>0);
$timespread["01am-02am"]=0;
$timespread["02am-03am"]=0; etc
Using $time which is a number, I want to add 1 to the value of
$timespread[$time] without changing the key so if $time =1
I want t
> I have a php program which executes a heavy mysql query upon request.
> Normally, it should not be requested too often, but I am afraid
> malicious user trying to massively call this program. I am considering
> to use $HTTP_REFERER to restrict the connection source, but is it worth
> trusting?
> Is it possible for a hacker to make an identical $HTT_REFERER
> in the header? I have no idea how $HTTP_REFERER is made, is it made
> from the http client and put in the http header?
Thats exactly how its done. The user agent (browser) takes the URL it was
on when a link was clicked / form subm
Jon Yates wrote:
> People, hope you can help. The below IF statement is getting a PARSE error.
> Can anyone spot why?
>
> if (($this->checkReferralCB($this->benefitRef, $this->benefitNo,
> $this->childDOB))
> && (!$this->checkLocation($this->post, "W")) && (!empty($this->childDOB)))
> || (
FYI...
I'm using sessions successfully using PHP v4.1.0 on Windows NT.
Neil
Edward Marczak wrote:
>
>
>*
> This Message Was Virus Checked With : SAVI 3.57 May 2002 Last Updated 13th May
> Craig Vincent wrote:
> The best thing you can do is temporarily record the
> IPs of connections to your script, and then block IPs that connect to
> the script too often directly from your routing table. It doesn't
> necessarily stop those using proxies but definately is more reliable
> than an
Robert Rothe wrote:
> Thanks. So the next() and prev() functions just traverse an array
> some type of linked list? This is what precludes direct access to
> specific elements?
Yup, there is an internal position pointer in every array which are
used by most array_ functions.
--
PHP Gene
Evan Nemerson wrote:
> I need to generate every possible combination of the the values in an array.
> For example, if...
>
> $array = Array("A", "B", "C");
> I really have no idea where to begin. The best lead I can think of is that
> there are going to be n! elements in the output array, where
Josh Edwards wrote:
> This is a basic question but I'm a basic fellow. If I have an array
>
> $timespread = array("12am-01am"=>0);
> $timespread["01am-02am"]=0;
> $timespread["02am-03am"]=0; etc
>
> Using $time which is a number, I want to add 1 to the value of
> $timespread[$time] without chan
>> This is a basic question but I'm a basic fellow. If I have an array
>>
>> $timespread = array("12am-01am"=>0);
>> $timespread["01am-02am"]=0;
>> $timespread["02am-03am"]=0; etc
>>
>> Using $time which is a number, I want to add 1 to the value of
>> $timespread[$time] without changing the key s
I have a query
"select cust_fnn, cust_name, agroup_access.group_access_cust from cust,
agroup_access where
agroup_access.group_access_group='$id' &&
cust.cust_fnn!=agroup_access.group_access_cust order by cust.cust_name"
The 2 tables are as follows
agroup_access
agroup_access_id
Hello "Dan Hardiker" <[EMAIL PROTECTED]>,
Then, it is not safe to do IP-based blocking, right? Any alternative?
On Thu, 16 May 2002 10:10:44 +0100 (BST)
"Dan Hardiker" <[EMAIL PROTECTED]> wrote:
> > Craig Vincent wrote:
> > The best thing you can do is temporarily record the
> > IPs of connect
Hi all,
I want to select some records with e.g. ID's 1,3,7 and 8
How can this be done best?
is it: SELECT * FROM myTable WHERE ID=1,3,7,8 ??
thx. Wilbert
-
Pas de Deux
Van Mierisstraat 25
2526 NM Den Haag
tel 070 4450855
fax 070 4450852
http://www.pdd.nl
[EMAIL PROTE
> Then, it is not safe to do IP-based blocking, right? Any alternative?
As I mentioned in an earlier post (my original reply to you):
> If I can't trust $HTTP_REFERER, how can I deny malicious attack like
> that?
The best way is authentication... that is asking the user for a username
and passw
Nothing to do with PHP...
SELECT * FROM myTable WHERE ID IN (1,3,7,9);
If you're using MySQL, read the manual:
http://www.mysql.com/documentation/mysql/bychapter/
---John Holmes...
> -Original Message-
> From: Wilbert Enserink [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 16, 2002
On Thursday 16 May 2002 19:19, Wilbert Enserink wrote:
> Hi all,
>
>
> I want to select some records with e.g. ID's 1,3,7 and 8
> How can this be done best?
>
> is it: SELECT * FROM myTable WHERE ID=1,3,7,8 ??
Is this a PHP question?
--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
O
[snip]
"select cust_fnn, cust_name, agroup_access.group_access_cust from cust,
agroup_access where
agroup_access.group_access_group='$id' &&
cust.cust_fnn!=agroup_access.group_access_cust order by cust.cust_name"
[/snip]
try this (note syntactical differences);
"select cust_fnn, cust_name, agroup
php-general Digest 16 May 2002 11:53:17 - Issue 1348
Topics (messages 97840 through 97895):
phpmysqladmin ? still viable?
97840 by: Erik Gilchrist
97842 by: Jason Murray
97843 by: Damian Harouff
97844 by: Danny Shepherd
97845 by: Erik Gilchrist
Hi Jon,
Your brackets are just a bit out of sync:
Here is a version that parses. You will have to make sure that my change
does not affect your intended logic.
if (
($this->checkReferralCB($this->benefitRef,
$this->benefitNo,$this->childDOB)) &&
(!$this->checkLocation($this->
My program is no longer giving a parse error, but my database is not being
updated (as far as the stock numbers are concerned). Any ideas???
I made the changes below per a few people on the list:
Quantity of books:
1
2
3
4
5
6
7
8
9
10
The book you are ordering:
Additional Mes
> mysql_select_db( $db, $link )
>
> or die ( "Couldn't open the $db: ".mysql_error() );
>
>
> if ($submit){
>
> if( $booktitle AND "quantity" ){
>
> $sql = "UPDATE Book2 SET stock ='$stock-quantity' WHERE
> booktitle='$booktitle' AND quantity=quantity";
>
> }
Easy enough =) You're not running t
Missed a spot =)
> if( $booktitle AND "quantity" ){
I'm not certain if this if statement is accurate. I've never used a
statement like this but from the looks of it the AND "quantity" part would
always be true (assuming it parses it). This could be adding to your
problem as well. I think you
(25) - Here's a virtual quarter, call someone who cares.
Original Message-
From: Phil Schwarzmann [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 15, 2002 5:03 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Done w/ PHP - VB or C# ?
I know I'll get mauled big-time on this mailing list
Hi,
Also try www.uklinux.net
They have php and perl cgi (with a mysql or postgres backend)
-Original Message-
From: Salman Ahmed [mailto:[EMAIL PROTECTED]]
Sent: 16 May 2002 03:05
To: PHP List
Subject: [PHP] Plz dont hate me for this
Hi,
I am also PHP lover plz dont hate me for this bu
All,
How would you implement 4 drop down lists
Data in list 2 dependant on list 1, list 3 dependant on list 2 and list
4 dependant on list 3? Using an ODBC source.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Has anyone gotten this working with the newest version of PHP? We have an app
that uses this, and can't seem to get it to compile. Bug 15177 is marked as
critical, but nothing has been done. Any idea when it'll be fixed?
Mike.
--
##
# Mike Baranski
Hello,
I have installed php 4.1.2 and ucd 4.2.4 both from tarballs on a linux
box, and compiled php both as an apache module and standalone (same
options, except for the --with-apxs). Now, when I use snmpwalk or whatever
other function from within apache, it works (almost) correctly:
snmp_set_q
You may wanna search the archives for this, as its been discussed quite a
few times before.
Basically it comes down to either using some sort of client scripting
language (Javascript, VB script etc...), or refreshing the page everytime
someone makes a choice in the list box and then populating
Dear All,
Firstly, I am a newbie to php so please be gentle.
I'm having problems with carriage returns placed in a file on a Linux based
server. When this file is download to a WindowsXP machine the carriage
returns are quite frankly useless. I just get "[]" (where "[]" represents an
undisplayab
I am using fsockopen to test several of our SQL and WEB servers at our
office. Testing ports 80, 1433 and 8080 work fine, but I would like to
set something up to test ports on our mainframe. These are printers
listening on 9100 and when I test it fails. I don't see anything in the
online do
I'm confused!
Did you want to make a new post for this comment or a reply to another post.
Or does it in some way relate to my question. On my newsgroup browser it
appears as if this post is in the wrong place! In answer to my post on
"Newlines in fputs"
Thanks for responding anyway.
Henry
"Sc
Hi there,
I am wondering what the equivalent to php.ini is on linux. There is no such
file on linux. Is there a different name?
I would like to set up the max execution time
Thanx,
Andy
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
It is called php.ini. A php.ini-dist sample file comes with the
distribution. phpinfo() will tell you where it is supposed to live. Just
copy php.ini-dist to that_location/php.ini and edit it appropriately.
-Rasmus
On Thu, 16 May 2002, andy wrote:
> Hi there,
>
> I am wondering what the equi
there is, is is called... php.ini :)
It should reside in /etc, if there is none, create it and add whatever
options you need in it. In the source tree you will find two files -
php.ini-dist and php.ini-recommended which might be of help.
On Thu, 16 May 2002, andy wrote:
> Hi there,
>
> I am won
Greetings friends, pals, nymphos, programmers, geeks and others, of gods
chosen people!
Here goes,
I have a program that uploads any file and allows the person to see whats in
a particular directory without any problems,
not bad for a newbie eh? stand up and clap!!!
what i want to do is make
I did copy the php.ini-recommended into /etc/php.info, rename it to php.ini
put the max execution time to 6 and restarted apache (php as module)
But I do still get a max execution time 30s reached.
Do you have an idea what's wrong?
Thanx,
Andy
"Rasmus Lerdorf" <[EMAIL PROTECTED]> schrieb im
[snip]
I did copy the php.ini-recommended into /etc/php.info, rename it to php.ini
put the max execution time to 6 and restarted apache (php as module)
But I do still get a max execution time 30s reached.
Do you have an idea what's wrong?
[/snip]
Did you restart your HTTP server? If not the
On Friday 17 May 2002 10:40, r wrote:
> Greetings friends, pals, nymphos, programmers, geeks and others, of gods
> chosen people!
>
> Here goes,
> I have a program that uploads any file and allows the person to see whats
> in a particular directory without any problems,
> not bad for a newbie
On Thursday 16 May 2002 22:09, andy wrote:
> I did copy the php.ini-recommended into /etc/php.info, rename it to php.ini
> put the max execution time to 6 and restarted apache (php as module)
> But I do still get a max execution time 30s reached.
>
> Do you have an idea what's wrong?
Run phpi
On Thursday 16 May 2002 21:31, Henry Grech-Cini wrote:
> I'm confused!
>
> Did you want to make a new post for this comment or a reply to another
> post. Or does it in some way relate to my question. On my newsgroup browser
> it appears as if this post is in the wrong place! In answer to my post o
Two related questions:
1) Is there any work being done to support the retrieval of the LDAP
schema in PHP (similar to Perl's Net::LDAP::Schema)? Is there any other
good way to get this information into PHP?
2) Is there any way to change the search scope of an LDAP search in
PHP? Specifically,
On Thu, May 16, 2002 at 02:14:13PM +0100, Henry Grech-Cini wrote:
>
> I'm having problems with carriage returns placed in a file on a Linux based
> server. When this file is download to a WindowsXP machine the carriage
> returns are quite frankly useless.
Unix type machines separate lines with a
Hey guys I recently join this list and this is my first real post to it so
if I f**k something up please do beat me to death. :)
I have a simple mailer script that was mailing POSTed form information to a
client, this script was running on a Debian box w/Apache. This server is
having hardware is
Hi,
I am doing some validation on files that are being upload. I only wish
to allow users to upload files that are in *plain text* format (not
neccessarily with a .txt extension). I have the following piece of code,
which works fine in IE, but in Netscape Navigator:
if ($file_type != "text/p
The uploaded mime type is set by the browser, not by PHP. So I guess in
your Netscape case it isn't sending the right type.
Perhaps have a look at the 'file' UNIX-level command and use that.
-Rasmus
On Thu, 16 May 2002, Lee P Reilly wrote:
> Hi,
>
> I am doing some validation on files that ar
My question will probably expose my woeful lack understanding of security
breaches, but perhaps someone can enlighten me.
On my site, registered members will be allowed to upload jpg/jpeg
pictures. I'm concerned about possible security problems. First, is there a
way to ensure that a picture (
show the contents of 'try_param.php' please.
Jim Lucas
- Original Message -
From: "Maciej Przybycien" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 15, 2002 10:38 AM
Subject: [PHP] tag img and php
>
> Hi,
> I included php file as html img:
> height="240" >
> and Ne
Are you afraid of someone embedding PHP in a .jpg file? That's not really
an issue as your web server is probably configured to only serve up PHP as
.php files. Likewise, your web server config is likely such that any .jpg
file is served up as content-type image/jpeg and as such it really doesn'
I use:
print('');
print('document.write("Code Name: "+navigator.appCodeName+"
");');
print('');
How is possible to keep this info to a MySQL database with PHP?
I think is not possible becouse PHP runs first.
Also how is possible to get with PHP info like this (browser type ecc)
and user's IP
Hi All
I am trying to write something similar to a server console display, is it a
good idea to use PHP?
Wondering how things like
1. server clock (similar to a clock applet)
2. server status
can be displayed with PHP code?
Note: I need to display the above two in a continuous fashion on the st
Thank you for responding to my email. I am still stuck with my problem.
I am using additionally jpgraph-1.6.1. Here is the content of my try.php
file:
SetScale("textlin");
$graph->img->SetMargin(30,30,50,50);
$graph->xaxis->SetFont(FF_FONT1,FS_BOLD);
$graph->title->Set("SMT HISTOGRAMS");
// A n
Hi,
I was wondering if someone knows how to save the image from the given url
http://domain.com/image.gif into a file on a local machine
Any suggestion will be greatly appreciated.
Thank you in advance
Victor Polyushko
Not sure how to resolve this, looked at php.net for the headers available
and this is the error I am recieving:
Warning: Cannot add header information - headers already sent by (output
started at /path/to/connection/script/db.php:6) in /path/to/login/checking
file/auth_done.php on line 13
Here i
What is on line 6 of the db.php file? Do you have a stray carriage return
at the end of this file?
On Thu, 16 May 2002, Jas wrote:
> Not sure how to resolve this, looked at php.net for the headers available
> and this is the error I am recieving:
>
> Warning: Cannot add header information - hea
Hi Jas,
I normally output can output a JaveScript
document.location.href="XXX.XXX"; command
Plan B is to do your processing before there is any output and then
decide whether or not to do a redirect using the header() function.
Best Regards,
Patrick Lynch.
Optip Ltd, Internet & Mobile Developm
The user's IP address is stored in the PHP global, $REMOTE_ADDR. Browser
information can be extracted from the get_browser()
function. http://www.php.net/manual/en/function.get-browser.php
-Kevin
- Original Message -
From: "savaidis" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Th
As fas as I know, the only way to do this is to give somebody
instructions to right click on the file and so "Save As".
Plan B is to put the GIF in a ZIP file and let it be downloaded like
that.
Best Regards,
Patrick Lynch.
Optip Ltd, Internet & Mobile Development
Co. Clare, Ireland.
http://www
That worked, I had about 3 blank lines trailing my ?>. Thanks a ton!
Jas
"Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> What is on line 6 of the db.php file? Do you have a stray carriage return
> at the end of this file?
>
> On Thu, 16 May 2
Rasmus Lerdorf <[EMAIL PROTECTED]> wrote:
> Are you afraid of someone embedding PHP in a .jpg file? That's not really
> an issue as your web server is probably configured to only serve up PHP as
> .php files. Likewise, your web server config is likely such that any .jpg
> file is served up as co
Don't feel bad about this. This is something that messes a lot of people
up. The browser knows where your headers end and where content begins by
adding blank line between the headers and the rest of the page. ALL headers
must come before any content is printed to the page. PHP will give you t
DOH! I retract that statement about Line 11.. I saw it and immediately
thought you were printing out that line, clearly you're not. But the rest
of my point is still valid, and Rasmus pointed out the true location of the
error. Anyway glad to hear you got the problem solved so quickly.
- O
On 5/16/02 5:17 AM, "Neil Freeman" <[EMAIL PROTECTED]> wrote:
> FYI...
>
> I'm using sessions successfully using PHP v4.1.0 on Windows NT.
Hurmph. Well, the upgrade to 4.2.x did it for me under 98. I just need to
check the rest of my code, though. For now, seems pretty harmless. Thanks,
tho
Hi everyone,
I've recently (for once in my life!) succesfully compiled PHP4.2.0 using
the following configure command-line:
'./configure' '--prefix=/usr' '--with-config-file-path=/etc'
'--disable-debug' '--enable-pic' '--enable-inline-optimization'
'--with-apxs=/usr/sbin/apxs' '--with-exec-dir
What are some benefits to using output buffering versus just letting it
generate as it goes?
-Original Message-
From: Kevin Stone [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 1:24 PM
To: PHP-general
Subject: Fw: [PHP] uh, oh errors?
Don't feel bad about this. This is someth
one REALLY notable advantage is:
if you us ob_*() functions, instead of writing HTML pages with php tags
inserted, you can write XML pages with PHP tags inserted. then after you're
done, you can pass the contents of the output buffer to an XSLT processer
like sablotron, THEN outputting an HTM
[EMAIL PROTECTED] wrote:
>
> What are some benefits to using output buffering versus just letting it
> generate as it goes?
Pros:
- headers can be added at any time
- buffer content can be post processed (gz compression) (xslt)
- if an error occurs can avoid serving half a document
Cons:
- tr
Thanks Rasmus,
I thought there had to be function out there that could examine the actual
contents.
Now the question remains, would an ereg/eregi check for html/code/commands
work on a "jpg/jpeg" type file? From a brief examination of one, I note that
it's not text, but code. I tried writing
I have some ideas on how this should be done, but I'm at work and can't
really test them, so I was thinking maybe I could run it by you all and
maybe get some feedback and/or new ideas.
I have a PHP/MySQL-generated page that displays image thumbnails.
Currently, I have a loop that makes a tabl
Thanks to all who helped out with the eregi(mail)
stuff. I got my problem solved, and on top of that,
there were some bugs that I found in the code. Thanks
again to everyone.
__
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yah
On Thu, May 16, 2002 at 09:34:16AM -0500, D Canfield wrote:
> Two related questions:
>
> 1) Is there any work being done to support the retrieval of the LDAP
> schema in PHP (similar to Perl's Net::LDAP::Schema)? Is there any other
> good way to get this information into PHP?
>
> 2) Is there an
$query = "SELECT * FROM mytable LIMIT $i, 20";
Where 20 is the number of rows to retrieve and $i is the starting row.
By incrementing $i + 20 you can do next, prev buttons, or parse the total
number of rows into page links (prev - 1, 2, 3, 4, 5, 6.. 10.. 20 - next).
Search www.mysql.com for mor
PHP and Web Servers probably make a bad choice for what is essentially a
real time application. PHP and web servers expect to serve up a page of
essentially HTML(and Javascript, or Java Applets), then close the connection
to a browser so that it can handle the requests of others, and not deal wit
Hi,
all is possible. I suggest taking a look at
http://gtk.php.net/ and
http://www.php.net/manual/en/features.commandline.php for a
start.
- Markus
On Fri, May 17, 2002 at 12:12:20AM +0800, DoL wrote :
> Hi All
>
> I am trying to write something similar to a server con
Vinod Palan wrote:
> hi ,
> Do any one have date functions like that we have in asp 1) Dateadd()
> 2) Datediff()
> etc?
There are some classes in PEAR that may do what you want, take a look at
Date & Date::Calc.
baba
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: ht
Great! I think that's the SQL function I needed.
Now for the PHP part - I'm a bit fo a newbie at writing code, so bear
with me here. My query string is currently something like:
$sql = mysql_query("SELECT * FROM mytable WHERE color=$color");
So I would modify that to read:
$sql = mysql_query(
Hi,
I have another quick question (still on the topic of validating uploaded
files). I have upload_max_filesize = 4194304 in my php.ini file. When I
upload the file, the script that processes does the following:
1-Sets up the session info
2-Starts the HTML header template
3-Displays user login i
One way to get it started would be to work strictly within the links. Don't
initilize $i unless it is not set (which logically would mean your visitng
the page for the first time). So..
if (!isset($_GET['i']))
$i = 0;
else
$i += 20;
Another way would be to extract the number of total r
> - Is there anyway to prevent the error message from being displayed on
> screen, and perhaps set a flag so we know that the problem has occured?
I know that if I set display_errors = Off in php.ini I can stop the message
from being displayed, but can I set a flag to say the upload_max_filesize
Do a google search for ADODB. It's a PHP database abstraction layer. It has
built in 'pagination' methods (Previous X, next X) along with an example of
how to use them.
=C=
*
* Cal Evans
* Journeyman Programmer
* Techno-Mage
* http://www.calevans.com
*
-Original Message-
From: Jason So
You should also add an ORDER BY clause in there, as the SQL standard doesn't
guarantee the order that rows are retrieved in. There's a chance that
you'll get, say, 20 rows on the first page, go to the second page and get
some of the rows you've already seen on the first page. If you use an ORD
This might be a little bit JS and a little bit PHP. I'm wondering if
there's an easy way to refresh a PHP page on an "onClick" and change one
parameter (say someone wants to redraw the graph, but with the points). I
don't want to pay attention to any of the other parameters that could have
chang
"Leotta, Natalie (NCI/IMS)" wrote:
>
> This might be a little bit JS and a little bit PHP. I'm wondering if
> there's an easy way to refresh a PHP page on an "onClick" and change one
> parameter (say someone wants to redraw the graph, but with the points). I
> don't want to pay attention to any
I'm not certain I understand your situation. If you're trying to keep state
between each new input then I would recommend PHP sessions to store your
variables. Could you elaborate more what you're trying to do?
-Kevin
- Original Message -
From: "Leotta, Natalie (NCI/IMS)" <[EMAIL PROTECT
It's all in a password protected site because the data's all confidential at
this point in time, but I can give you a mental picture.
There are a bunch of dropdowns - State, Cancer, Sex, Race, Age. We're
drawing a graph of best fit lines - up to 5 allowed on the graph, then we
start over repla
"Leotta, Natalie (NCI/IMS)" wrote:
>
> It's all in a password protected site because the data's all confidential at
> this point in time, but I can give you a mental picture.
>
> There are a bunch of dropdowns - State, Cancer, Sex, Race, Age. We're
> drawing a graph of best fit lines - up to 5
Hello,
I'm trying to generate this list of letters A..Z, using this
for ($l='A'; $l<='Z'; $l++)
echo $l."-";
And it doesn't work. It generates the output included at the end of
this message (I used to be shorter)
But this works
for ($l='A'; $l<='Y'; $l++)
echo $l."-";
ge
This sounds like it might work. Thanks for your help!! I knew there had to
be a better way than what my coworkers came up with :-)
-Natalie
-Original Message-
From: Robert Cummings [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 4:09 PM
To: Leotta, Natalie (NCI/IMS)
Cc: [EMAIL
I posted a fix on the bug report form, but don't know how to implement it in
the configure script. Someone should add it that knows what they're doing.
http://bugs.php.net/bug.php?id=15177
Mike B.
--
##
# Mike Baranski #
# Security Manage
On Thu, 16 May 2002, Scott St. John wrote:
> I am using fsockopen to test several of our SQL and WEB servers at our
> office. Testing ports 80, 1433 and 8080 work fine, but I would like to
> set something up to test ports on our mainframe. These are printers
> listening on 9100 and when I tes
Miguel Cruz wrote:
>
> all the power of DOS batchfiles. Every single thing you want to do - even
> basic filesystem operations like working with directories and file
> permissions!!! - requires purchasing expensive and buggy .COM components
> from nasty little companies with horrible documenta
On Thu, 16 May 2002, r wrote:
> Here goes,
> I have a program that uploads any file and allows the person to see whats in
> a particular directory without any problems,
> not bad for a newbie eh? stand up and clap!!!
>
> what i want to do is make sure that whatever the person uploads cannot "
On Thu, 16 May 2002, Michael Kimsal wrote:
> Miguel Cruz wrote:
>> all the power of DOS batchfiles. Every single thing you want to do - even
>> basic filesystem operations like working with directories and file
>> permissions!!! - requires purchasing expensive and buggy .COM components
>> from nas
On Thu, 16 May 2002, Victor Polyushko wrote:
> I was wondering if someone knows how to save the image from the given
> url http://domain.com/image.gif into a file on a local machine
lynx -source -dump http://domain.com/image.gif > image.gif
miguel
--
PHP General Mailing List (http://www.php.n
Miguel Cruz wrote:
>
> Public denigration of what I don't understand is how I strike out at a
> callous world that's denied me my just deserts: fame, millions, and a
> torrid love affair with Nancy Reagan. Either address the fundamental
> injustice here or cut me some slack.
Couldn't have said i
Miguel Cruz wrote:
>
> On Thu, 16 May 2002, Victor Polyushko wrote:
> > I was wondering if someone knows how to save the image from the given
> > url http://domain.com/image.gif into a file on a local machine
>
> lynx -source -dump > image.gif
If there were actually an image I'd use:
wget
All right I've seen in done in jsp and asp, but I'd like to know if I can do it in PHP
as well.
I've got an applet, which is in the page replay.php, with these parameters that I need
to fill from a URL.
I need to pass 2 parameter in the URL from a
Hi Guys,
Thank you fo your input. I am sorry I am new to the list so + English is not
my first language :-( anyhow., I shoudl 've made my question more clear.
I am trying to save the image from the given URL
(http://domain.com/image.gif) running a PHP script on the page. I have tried
fread() and
Miguel Cruz wrote:
>>As much as I'm not a fan of ASP (2 or 2.5, not worked with 3 much),
>>I'd have to say that you could definitely at least read a directory's
>>contents without having to purchase external libraries. Please don't
>>go overboard.
>
>
> It's been a while, but I remember that
1 - 100 of 144 matches
Mail list logo