[PHP] inserting utf8 from PHP to MySQL makes text unreadable

2005-01-31 Thread Dave
PHP General, The Situation: I am creating a form for users to enter text into a MySQL 3.23 database. The text is often in Japanese, encoded in utf-8 format. The Problem: When the utf-8 encoded text is inserted into the database, it becomes random ASCII gibberish. What I've Tried

Re: [PHP] upload file size limit

2005-01-31 Thread badlya badlu
thanks bobert. I have done it. thanks... --- Robert Sossomon <[EMAIL PROTECTED]> wrote: > Look in /etc/httpd/conf.d/php.conf > > For a buddy with a file upload need I set it to > this: > > > SetOutputFilter PHP > SetInputFilter PHP > LimitRequestBody 760217600 > > > > You wi

Re: [PHP] Autoflush

2005-01-31 Thread Wudi
Sorry, I still don't know how to attain it. Could you give a sample? PS: See http://wudicgi.spymac.net/pt/pt_autoflush.gif -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SSH system command problem

2005-01-31 Thread Curt Zirzow
* Thus wrote Linn Fagerberg: > Hi, > > I am trying to use a php system command to run a script and access files > from another server using SSH. This does not seem to work in PHP or else I > am doing it wrong because I keep on getting the system return value=255 when > I do > > > > system("/u

[PHP] best flow for this project

2005-01-31 Thread Dustin Krysak
ok, i have a project where: -a user adds their email address, name, etc to a database. -a responder sends an email to them to confirm their email address (within 72 hrs). -upon confirmation of their email address, a script will generate a store coupon with a random coupon id # in the browser (whi

Re: [PHP] simple question

2005-01-31 Thread Robert Cummings
On Mon, 2005-01-31 at 20:41, Pagongski wrote: > I have this function: > > function supscript($texto) > { >print("".$texto.""); > } > > But when i do: > > print "2".supscript("3"); > > I get the "3" before the "2", how is that posible? > > And: > > print(supscript("3")."2

Re: [PHP] simple question

2005-01-31 Thread John Holmes
Pagongski wrote: I have this function: function supscript($texto) { print("".$texto.""); } But when i do: print "2".supscript("3"); I get the "3" before the "2", how is that posible? Your function should return the value, not print it. The way you have it now, the function must be ran

Re: [PHP] Displaying a html line as html

2005-01-31 Thread Jeffery Fernandez
Todd Cary wrote: I have the following: $p = http://209.204.172.137/casesearch/php/home.php";>Home However, when I have print($p); or echo $p; the result page does not display as a link; just as the text above. What have I missed? Todd try: http://209.204.172.137/casesearch/php/home.php";>Home'; ech

Re: [PHP] Displaying a html line as html

2005-01-31 Thread Justin French
On 01/02/2005, at 1:05 PM, Todd Cary wrote: I have the following: $p = http://209.204.172.137/casesearch/php/home.php";>Home try $p = 'http://209.204.172.137/casesearch/php/home.php";>Home'; echo $p; --- Justin French, Indent.com.au [EMAIL PROTECTED] Web Application Development & Graphic Design --

Re: [PHP] simple question

2005-01-31 Thread Pagongski
Thank you so much, it was really stupid of me, basic mistake. I solved it differently, although your solution is miles away better than mine. Heres what i did: function supscript($texto) { global $supa; $supa = "".$texto.""; } supscript("3"); print ("2".$supa);

Re: [PHP] simple question

2005-01-31 Thread Jason Wong
On Tuesday 01 February 2005 09:41, Pagongski wrote: Please use a *descriptive* subject. > I have this function: > > function supscript($texto) > { >print("".$texto.""); > } > > But when i do: > > print "2".supscript("3"); > > I get the "3" before the "2", how is that posible? > > And: > >

Re: [PHP] simple question

2005-01-31 Thread Robby Russell
On Tue, 2005-02-01 at 01:41 +, Pagongski wrote: > I have this function: > > function supscript($texto) > { >print("".$texto.""); > } > > But when i do: > > print "2".supscript("3"); > > I get the "3" before the "2", how is that posible? > > And: > > print(supscript("

[PHP] simple question

2005-01-31 Thread Pagongski
I have this function: function supscript($texto) { print("".$texto.""); } But when i do: print "2".supscript("3"); I get the "3" before the "2", how is that posible? And: print(supscript("3")."2"); makes the 2 appear before the 3. I am confused!

AW: [PHP] Uploaded File by Form is mysteriously away.

2005-01-31 Thread Mirco Blitz
Oh sorry, that move_uploaded_file is surely used with FILE["formfile"]['tmp_name'] That was an error in Mail Typing. Problem still exists. Mirco Blitz -Ursprüngliche Nachricht- Von: Marek Kilimajer [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 1. Februar 2005 00:12 An: Mirco Blitz Cc:

Re: [PHP] Uploaded File by Form is mysteriously away.

2005-01-31 Thread Marek Kilimajer
Mirco Blitz wrote: Hi, I'm trying to upload a pic file by form (Using QuickForm, but this here also happens in manually generates Forms). Everything seems to work fine. The $_FILES["formfile"] shows everything about the file what is needed to know. For example: Array ( [formfile] => Array ( [name

[PHP] Uploaded File by Form is mysteriously away.

2005-01-31 Thread Mirco Blitz
Hi, I'm trying to upload a pic file by form (Using QuickForm, but this here also happens in manually generates Forms). Everything seems to work fine. The $_FILES["formfile"] shows everything about the file what is needed to know. For example: Array ( [formfile] => Array ( [name] => lindworm.jp

Re: [PHP] file upload error

2005-01-31 Thread Marek Kilimajer
Tom wrote: Hi I have a very simple file upload form and script to handle it (copied verbatim from the php manual, except for the file target location and the script name). However, it always fails, with an error code in the _FILE array or 6. Does anyone know what this error is or what I am likely

RE: [PHP] PHP Security Consortium

2005-01-31 Thread Chris W. Parker
Chris Shiflett on Sunday, January 30, 2005 10:19 PM said: > The PHP Security Consortium has officially launched. The following is > the press release: Oooh cool! This looks to be a great resource. Keep up the good work Chris. Another, Chris. -- PHP General Maili

RE: [PHP] Looking for ideas on scheduling

2005-01-31 Thread Chris W. Parker
Marek Kilimajer on Saturday, January 29, 2005 12:05 PM said: > What about option 3: > > Use at command to execute php script when the next event should be > executed. This php script will execute this task and then set itself > to execute at the time of the next eve

Re: [PHP] upload file size limit

2005-01-31 Thread Robert Sossomon
Look in /etc/httpd/conf.d/php.conf For a buddy with a file upload need I set it to this: SetOutputFilter PHP SetInputFilter PHP LimitRequestBody 760217600 You will need to set your upload limit higher in this file for it to work correctly. Robert -- Robert Sossomon, Business and Tech

Re: [PHP] fopen, fsockopen on my virtual host

2005-01-31 Thread Richard Lynch
Al wrote: > Richard Lynch wrote: >> Al wrote: >> >>>I've got a script that fetches a stream from a file on our virtual host. >>>Its >>>been working fine; but, yesterday they changed something and it no >>> longer >>>works. >> >> Can you define "no longer works" a bit more clearly... >> >> Error mes

Re: [PHP] PHP 5 Compile error

2005-01-31 Thread Brian V Bonini
On Mon, 2005-01-31 at 12:56, Richard Lynch wrote: > Brian V Bonini wrote: > > %cat config.txt | tr -s "\n" " " > > --enable-versioning --enable-memory-limit --with-layout=GNU > > --with-zlib-dir=/usr --with-imap=/usr/local --disable-all > > --with-regex=php --disable-cli --enable-ctype --with-gd >

Re: [PHP] fopen, fsockopen on my virtual host

2005-01-31 Thread Jochem Maas
Al wrote: Richard Lynch wrote: ... $str= file_get_contents(localhost?page=processqueue&login=Pmin&password=x) $str = file_get_contents('http://localhost/?page=processqueue&login=Pmin&password=x'); > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.n

Re: [PHP] Re: Hello

2005-01-31 Thread ztuni ztuni
On Mon, 31 Jan 2005 18:58:04 -, Mikey <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] > > Sent: 30 January 2005 23:30 > > To: php-general@lists.php.net > > Subject: [PHP] Re: Hello > > > > Please answer quickly! > > OK. No! :-

[PHP] cancel <41FE83F4.2020207@ridersite.org>

2005-01-31 Thread news
This message was cancelled from within Mozilla. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Question about Safe Mode

2005-01-31 Thread Marek Kilimajer
Rick Root wrote: I have a little home made CMS that writes files... on the server I've recently installed this CMS on, those files get written as apache:apache ... that file uses include to include other files that are not owned by "apache", and this doesn't work. Warning: main(): SAFE MODE Restr

Re: [PHP] fopen, fsockopen on my virtual host

2005-01-31 Thread Al
Richard Lynch wrote: Al wrote: I've got a script that fetches a stream from a file on our virtual host. Its been working fine; but, yesterday they changed something and it no longer works. Can you define "no longer works" a bit more clearly... Error messages? Just times out? What? $fp= fsockopen(

RE: [PHP] Re: Hello

2005-01-31 Thread Mikey
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: 30 January 2005 23:30 > To: php-general@lists.php.net > Subject: [PHP] Re: Hello > > Please answer quickly! OK. No! :-) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://ww

Re: [PHP] Access

2005-01-31 Thread Richard Lynch
Robert Sossomon wrote: > Anyone know of any classes or files for a way to write an Access readable > file > from PHP and MySQL? http://php.net/fputcsv As a special bonus, virtually EVERY database/spreadsheet program on the planet will be able to read/import a file created with this with NO hassle

Re: [PHP] fopen, fsockopen on my virtual host

2005-01-31 Thread Al
Richard Lynch wrote: Al wrote: I've got a script that fetches a stream from a file on our virtual host. Its been working fine; but, yesterday they changed something and it no longer works. Can you define "no longer works" a bit more clearly... Error messages? Just times out? What? $fp= fsockopen(

Re: [PHP] Credit card storing, for processing

2005-01-31 Thread Richard Lynch
Angelo Zanetti wrote: > this might be slightly OT but I know that the list has quite a > knowledgable crowd =) So here is my situation: > > I have a client who I have developed a site for in PHP it provides > various models for shares forecasts, the way it works is that people > register for free (

Re: [PHP] SSH system command problem

2005-01-31 Thread Richard Lynch
Linn Fagerberg wrote: > I am trying to use a php system command to run a script and access files > from another server using SSH. This does not seem to work in PHP or else I > am doing it wrong because I keep on getting the system return value=255 > when > I do > > system("/usr/bin/ssh 10.0.0.1", $

Re: [PHP] fopen, fsockopen on my virtual host

2005-01-31 Thread Richard Lynch
Al wrote: > I've got a script that fetches a stream from a file on our virtual host. > Its > been working fine; but, yesterday they changed something and it no longer > works. Can you define "no longer works" a bit more clearly... Error messages? Just times out? What? > $fp= fsockopen("www.our

Re: [PHP] Access

2005-01-31 Thread Chris Wanstrath
> Anyone know of any classes or files for a way to write > an Access readable file from PHP and MySQL? Google produced http://www.phpfreaks.com/tutorials/61/0.php on a search for "Microsoft Access" php. Haven't read it. Looks like what you need. - Chris -- PHP General Mailing List (http://ww

Re: [PHP] upload file size limit

2005-01-31 Thread Richard Lynch
badlya badlu wrote: > I have created one php file for uploading the file. i > also made changes in /etc/php.ini for size limit. but > i can not upload the files greater than 5mb. Is there > any modification which has to be done in other > configuration file. Check your POST size limit in, errr, ph

Re: [PHP] Sessions memory allocation problem

2005-01-31 Thread Richard Lynch
adrian zaharia wrote: >>> while (!feof($oFp)) { >>> echo fread ($oFp, $iReadBufferSize); Try http://php.net/flush right here. >>> } >>> fclose ($oFp); >>> exit; >>> > See this: > http://bugs.php.net/bug.php?id=31763&edit=2 > > Is not a bug but they under some configurations they cache th

Re: [PHP] Some questions about if and isset.

2005-01-31 Thread Richard Lynch
Geir Anders Berge wrote: > I'm sure that this code can be written more efficient, please tell me how, > but that's not my problem. The problem is that when i run this script all > lines are executed. I'm sure I'm doing something wrong, but can't find out > just what. Okay, it's REALLY hard to see

[PHP] Access

2005-01-31 Thread Robert Sossomon
Anyone know of any classes or files for a way to write an Access readable file from PHP and MySQL? Thanks! Robert -- Robert Sossomon, Business and Technology Application Technician 4-H Youth Development Department 200 Ricks Hall, Campus Box 7606 N.C. State University Raleigh NC 27695-7606 Phone:

[PHP] Re: Hello

2005-01-31 Thread louka . andrea
Please answer quickly! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5 Compile error

2005-01-31 Thread Richard Lynch
Brian V Bonini wrote: > %cat config.txt | tr -s "\n" " " > --enable-versioning --enable-memory-limit --with-layout=GNU > --with-zlib-dir=/usr --with-imap=/usr/local --disable-all > --with-regex=php --disable-cli --enable-ctype --with-gd > --enable-gd-native-ttf --with-freetype-dir=/usr/local > --wi

[PHP] PHP alternative to share point portal

2005-01-31 Thread Daniel Baughman
My company is considering spending lots of dough on a share point portal and I am trying to find an alternative (as well as an excuse to get a linux server in here). Anyone have any good luck with anything or have any recommendations for any apps out there? Regards, Dan Baughman -- PHP Gen

Re: [PHP] Autoflush

2005-01-31 Thread Jason Barnett
Robin Vickery wrote: On Mon, 31 Jan 2005 18:37:15 +0800, Wudi <[EMAIL PROTECTED]> wrote: Can PHP attain autoflush? (See attachments.) Yes PHP can be set to automatically flush - see http://de.php.net/outcontrol#ini.implicit-flush No, we can't see attachments. -robin And don't even bother *sendin

[PHP] PHP 5 Compile error

2005-01-31 Thread Brian V Bonini
%cat config.txt | tr -s "\n" " " --enable-versioning --enable-memory-limit --with-layout=GNU --with-zlib-dir=/usr --with-imap=/usr/local --disable-all --with-regex=php --disable-cli --enable-ctype --with-gd --enable-gd-native-ttf --with-freetype-dir=/usr/local --with-jpeg-dir=/usr/local --with-png-

[PHP] fopen, fsockopen on my virtual host

2005-01-31 Thread Al
I've got a script that fetches a stream from a file on our virtual host. Its been working fine; but, yesterday they changed something and it no longer works. $fp= fsockopen("www.oursite.org", 80, $errno, $errstr, 30); I can use any remote site and fscockopen works fine. Anyone have a suggestion a

Re: [PHP] Autoflush

2005-01-31 Thread Robin Vickery
On Mon, 31 Jan 2005 18:37:15 +0800, Wudi <[EMAIL PROTECTED]> wrote: > Can PHP attain autoflush? > (See attachments.) Yes PHP can be set to automatically flush - see http://de.php.net/outcontrol#ini.implicit-flush No, we can't see attachments. -robin -- PHP General Mailing List (http://www.ph

[PHP] Re: PHP5 + SPL - Creating an object as an array.

2005-01-31 Thread Jason Barnett
Yotam Ofek wrote: I would like to create an object like this: class TestClass { private $some_array; public $just; public $some; public $public; public $vars; } ?> Is it possible, through SPL, to make the class accessible as "$testclass['array_key']", which will return the val

Re: [PHP] General question: packaging in PHP

2005-01-31 Thread Jason Barnett
Vivian Steller wrote: ... Thanks for metioning this issue! This is another point where I think OO is done the half way in PHP: Why do we need some implicit type check, like public method(Type $type) if we then loose the optional parameter advantage? I don't know *the* answer. So far as I c

Re: [PHP] best way to handle user authentication, PHP vs. apache

2005-01-31 Thread Chris Shiflett
--- Jochem Maas <[EMAIL PROTECTED]> wrote: > > There may not be a lot of stuff in terms of the number of resources, > > but the PHP Security Guide is a lot by itself: > > > > http://phpsec.org/projects/guide/ > > I did say 'AFAICS' - I should have mentioned that I took only the very > quickest of

Re: [PHP] best way to handle user authentication, PHP vs. apache

2005-01-31 Thread Jochem Maas
Chris Shiflett wrote: --- Jochem Maas <[EMAIL PROTECTED]> wrote: http://phpsec.org/ which has just gone live - not that much info there yet AFAICS but will probably become a good resource There may not be a lot of stuff in terms of the number of resources, but the PHP Security Guide is a lot by it

[PHP] file upload error

2005-01-31 Thread Tom
Hi I have a very simple file upload form and script to handle it (copied verbatim from the php manual, except for the file target location and the script name). However, it always fails, with an error code in the _FILE array or 6. Does anyone know what this error is or what I am likely to have se

Re: [PHP] best way to handle user authentication, PHP vs. apache

2005-01-31 Thread Chris Shiflett
--- Jochem Maas <[EMAIL PROTECTED]> wrote: > http://phpsec.org/ > > which has just gone live - not that much info there yet AFAICS but > will probably become a good resource There may not be a lot of stuff in terms of the number of resources, but the PHP Security Guide is a lot by itself: http:/

Re: [PHP] Permissions on uploaded image don't allow for over writing

2005-01-31 Thread Dave
Jason, Hugh, John, Thanks for all your help. And thanks Hugh for sending me your FTP script. It turns out that the chmod() command was the magic bullet I was looking for. By placing chmod ($imageName, 0777) ... into the script right after it places the uploaded file in it's destinati

Re: [PHP] best way to handle user authentication, PHP vs. apache

2005-01-31 Thread Jochem Maas
Raymond Still wrote: On Sun, 30 Jan 2005 18:49:41 -0800 (PST), "Richard Lynch" wrote: Raymond Still wrote: ... You've got a long way to go before you properly understand all the security issues you've jumbled together -- Took me forever, too. :-) not to mention the fact that security is a moving t

Re: [PHP] FW: [NEWBIE GUIDE] For the benefit of new members

2005-01-31 Thread Jason Wong
On Monday 31 January 2005 21:30, Jay Blanchard wrote: > = > Please feel free to add more points and send to the list. > = How about: When replying to the list use standard quoting, ie

Re: [PHP] Image Creation and Saving

2005-01-31 Thread Jochem Maas
NathanielGuy#21 wrote: Yes, I was mainly wanting to know if I needed to call it at all with what I was doing. not unless you want to create a new image (and add some part of another image to it, add some text etc) and output that. also IIRC its only available in GDlib 2.0.x and up. On Sun, 30 Jan

RE: [PHP] Some questions about if and isset.

2005-01-31 Thread Robinson, Matthew
Can we see some sample data? An example of what $variable and $constant are would help. A quick glance at the code I'd have: if (isset($variable) { if ($variable < $contstant) { stuff } elseif ($variable > $constant) { more s

RE: [PHP] Some questions about if and isset.

2005-01-31 Thread Jay Blanchard
[snip] $constant) { Execute this code if $variable is more than $constant } elseif ($variable == $constant) { Execute this code if $variable and $constant are equal } } else { Execute this code if $variable is not set } ?> -- PHP General Mai

[PHP] Some questions about if and isset.

2005-01-31 Thread Geir Anders Berge
I'm sure that this code can be written more efficient, please tell me how, but that's not my problem. The problem is that when i run this script all lines are executed. I'm sure I'm doing something wrong, but can't find out just what. $constant) { Execute this code if $varia

[PHP] Re: PHP4/Apache2 Content-Length stripped?

2005-01-31 Thread Stoian Ivanov
Stoian Ivanov wrote: > Hi all, > I'm writing a wap download script involving dynamic image resizing and so > on. I've notice that some phones are quitting in the mids of http > transfer. After looking further I found out that headers() is sometimes > ignored or stripped. I've googled around and

RE: [PHP] Question about Safe Mode

2005-01-31 Thread Jay Blanchard
[snip] So... how do I work around this? Can I get php to write the files so they aren't owned by "apache" but rather thwn owner of the php script that creates them? [/snip] PHP scripts run by the HTTP server are run as the web server. The web server runs as 'Apache', so Apache needs permissions

[PHP] FW: [NEWBIE GUIDE] For the benefit of new members

2005-01-31 Thread Jay Blanchard
= Please feel free to add more points and send to the list. = 1. If you have any queries/problems about PHP try http://www.php.net/manual/en first. You can download a copy and use it of

Re: [PHP] Re: Troublesome Code.

2005-01-31 Thread Chris Knipe
Had a fault in some globally included mysql structures... I don't know how this happened, but my mysql_select_db seemed to have dissapeared. Thus there was no database initialised, and hence all the queries actually did not complete. I sorted it out - it's all working now :) Thanks for the su

[PHP] Question about Safe Mode

2005-01-31 Thread Rick Root
I have a little home made CMS that writes files... on the server I've recently installed this CMS on, those files get written as apache:apache ... that file uses include to include other files that are not owned by "apache", and this doesn't work. Warning: main(): SAFE MODE Restriction in effect. T

RE: [PHP] Re: Troublesome Code.

2005-01-31 Thread Mikey
> If (mysql_num_rows ($sth) == 1) Gr. Mean't to be "if", but Outlook is insisting that it knows english better than I. Pah! Mikey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Troublesome Code.

2005-01-31 Thread Mikey
> >if (mysql_num_rows($SQL) == 1) { Err, this is just the query string variable right? So you need to do: $sth = mysql_query ($SQL); If (mysql_num_rows ($sth) == 1) Then you will be checking the result set and not just the query string. HTH, Mikey -- PHP General Mailing List (http://www.

[PHP] Re: Troublesome Code.

2005-01-31 Thread M. Sokolewicz
Chris Knipe wrote: Lo everyone, Can someone please perhaps just indicate to me what is wrong with the below code? I am getting SQL Result errors, but all the queries executes successfully. Errors in browser: Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in

[PHP] Troublesome Code.

2005-01-31 Thread Chris Knipe
Lo everyone, Can someone please perhaps just indicate to me what is wrong with the below code? I am getting SQL Result errors, but all the queries executes successfully. Errors in browser: Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /usr/local/www/v-we

Re: [PHP] upload file size limit

2005-01-31 Thread badlya badlu
yes httpd-2.0.49-4 Should i upgrade it? --- Thomas Seifert <[EMAIL PROTECTED]> wrote: > On Mon, 31 Jan 2005 03:15:00 -0800, Badlya Badlu > wrote: > > > the path is /etc/php.ini > > also > > upload_max_filesize 50M 50M > > > > Waiting for reply. > > it also depends on your webserver. I gue

Re: [PHP] upload file size limit

2005-01-31 Thread Thomas Seifert
On Mon, 31 Jan 2005 03:15:00 -0800, Badlya Badlu wrote: > the path is /etc/php.ini > also > upload_max_filesize 50M 50M > > Waiting for reply. it also depends on your webserver. I guess you are running apache2? thomas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] Sessions memory allocation problem

2005-01-31 Thread adrian zaharia
Richard Lynch wrote: > adrian zaharia wrote: >> Hi, >> >> I am testing the following code that pushes a file to the browser >> (Apache 1.3 + PHP 4.3.8 but tested also under several other configs) >> >> Try it with a BIG test1.zip (e.g. 100M in size) >> >> > ignore_user_abort(); >> set_time_limit(0

Re: [PHP] upload file size limit

2005-01-31 Thread badlya badlu
the path is /etc/php.ini also upload_max_filesize 50M 50M Waiting for reply. --- Wudi <[EMAIL PROTECTED]> wrote: > Run phpinfo() to see the Configuration File > (php.ini) Path. > > __ Do you Yahoo!? Yahoo! Mail - Easier than ever wit

Re: [PHP] upload file size limit

2005-01-31 Thread Wudi
Run phpinfo() to see the Configuration File (php.ini) Path. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Autoflush

2005-01-31 Thread Wudi
Can PHP attain autoflush? (See attachments.) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] upload file size limit

2005-01-31 Thread badlya badlu
Hi, I have created one php file for uploading the file. i also made changes in /etc/php.ini for size limit. but i can not upload the files greater than 5mb. Is there any modification which has to be done in other configuration file. thanks in advance santosh _

Re: [PHP] SSH system command problem

2005-01-31 Thread Jason Wong
On Monday 31 January 2005 16:44, Linn Fagerberg wrote: > I am trying to use a php system command to run a script and access files > from another server using SSH. This does not seem to work in PHP or else I > am doing it wrong because I keep on getting the system return value=255 > when I do > > >

[PHP] SSH system command problem

2005-01-31 Thread Linn Fagerberg
Hi, I am trying to use a php system command to run a script and access files from another server using SSH. This does not seem to work in PHP or else I am doing it wrong because I keep on getting the system return value=255 when I do system("/usr/bin/ssh 10.0.0.1", $value) I tried to do a