[PHP] A simple question

2004-11-13 Thread Chuck PUP Payne
Hey, I have just upgrade my box and my forms are no longer passing information into the database. I did a simple echo test and sure enough nothing. I was using Apache 1.3 with php 4.1 I am now using Apache 2 with php 4.3.4, I thinking there is something that needs to be turn on in my php.ini that

Re: [PHP] A simple question

2004-11-13 Thread Chuck PUP Payne
about global variables...) - Original Message - From: Chuck PUP Payne [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, November 13, 2004 9:02 PM Subject: [PHP] A simple question Hey, I have just upgrade my box and my forms are no longer passing information

Re: [PHP] A simple question

2004-11-13 Thread Chuck PUP Payne
this: http://us2.php.net/manual/en/security.globals.php Janet Chuck PUP Payne wrote: If I was still on 4.1 I would understand, but I am on 4.3.4 now I will read it but I think it will there is something that turn on in the php.ini. Payne On 11/13/04 9:13 PM, Brad Bonkoski

[PHP] Problem with RAND()

2003-10-23 Thread Chuck PUP Payne
Hi, I am trying to understand how RAND (), because I've had this problem before with other langs., I am using with this with MySQL statement that is in my php script, but it's only put the first files. I only have three files, do I need more files in my database? Is RAND() or RAND (), please

[PHP] Php and Fortune

2003-10-22 Thread Chuck PUP Payne
Hi, Is there a way I can get php to call the program fortune then print that a web page. Thanks. Payne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Php and Fortune

2003-10-22 Thread Chuck PUP Payne
Thanks Everyone. This is so cool!!! :) On 10/22/03 11:15 PM, Mykroft Holmes IV [EMAIL PROTECTED] wrote: Mykroft Holmes IV wrote: Chuck PUP Payne wrote: Hi, Is there a way I can get php to call the program fortune then print that a web page. Thanks. Payne echo 'pre

[PHP] Wanting to better understand

2002-10-01 Thread Chuck \PUP\ Payne
Hey, I am trying to better understand something, I learned a couple weeks ago that if I do this... If ($field == value1) { $field = change to new value; Now I have use this to change -00-00 to nbsp;. And the following. If ($days 30) { $days strongfont color='ff' . $days .

Re: [PHP] Wanting to better understand

2002-10-01 Thread Chuck PUP Payne
probably want to use a different variable name for the string. Happy hacking. Chris Chuck \PUP\ Payne wrote: If ($days 30) { $days strongfont color='ff' . $days . /font/strong; } Want I want to do was add a second line this below to change the another value to change to change

[PHP] Include...

2002-09-28 Thread Chuck \PUP\ Payne
Hi, I am trying to start using inc files. But I am this this error Warning: Failed opening '/local/htdocs/movies/style.inc' for inclusion (include_path='.:/usr/share/php') in /local/htdocs/movies/lmenu.php on line 3 I have this in my lmenu.php Include (/local/htdocs/movies/style.inc); So

[PHP] Include...

2002-09-28 Thread Chuck PUP Payne
Hi, I am trying to start using inc files. But I am this this error Warning: Failed opening '/local/htdocs/movies/style.inc' for inclusion (include_path='.:/usr/share/php') in /local/htdocs/movies/lmenu.php on line 3 I have this in my lmenu.php Include (/local/htdocs/movies/style.inc); So

[PHP] Include Part 2

2002-09-28 Thread Chuck PUP Payne
Ok, I am trying to make my design a lot easier. I want to know if I can do this... I want to set up in my php page this... $rows; Under my db_info.inc I want to store this so that I can add delete from it. $row = $title = myrow[title]; $format = myrow[format]; $category = myrow[category];

Re: [PHP] Include Part 2

2002-09-28 Thread Chuck PUP Payne
, or an included file of code... in your case, sounds like a function is required, but I may not fully understand... Regards, Justin on 29/09/02 3:29 PM, Chuck PUP Payne ([EMAIL PROTECTED]) wrote: Ok, I am trying to make my design a lot easier. I want to know if I can do this... I want

Re: [PHP] Include Part 2

2002-09-28 Thread Chuck PUP Payne
for this is about 50 pages and I am getting tried of change each one I like to be able to change just one file. You know make it easier. Better design. Sorry it 2:30am and Jolt cola is not working and I am LD. So sorry if this is not clear. Chuck Payne On 9/29/02 2:06 AM, Chuck PUP Payne [EMAIL PROTECTED

[PHP] Maybe a stupid question but can it be done?

2002-09-23 Thread Chuck \PUP\ Payne
Ok, Let's try this again, for some reason this didn't post from early today. I have db that has two tables that I am needing to post the same information into both tables, I can't use ID. So I am want to see if there is a sql statement that will let me or how I can do with a php page. I am

[PHP] Maybe a stupid question but can it be done?

2002-09-23 Thread Chuck PUP Payne
Ok, Let's try this again, for some reason this didn't post from early today. I have db that has two tables that I am needing to post the same information into both tables, I can't use ID. So I am want to see if there is a sql statement that will let me or how I can do with a php page. I am

[PHP] Help with mail...

2002-09-22 Thread Chuck \PUP\ Payne
Hi, Well after read php.net and my copy php 4 bible. I am lost with mail. I can get it to work if I do this... Mail ('[EMAIL PROTECTED]', 'Data Added', $fname, $lname .); But I can't get this to work...I know someone going to call me stupid but I am really having people with mail(), Is

Re: [PHP] Help with mail...

2002-09-22 Thread Chuck PUP Payne
Ok, that work. Why does the ' (quote) not make it work is it because it's an array? Any thanks John that got it work. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Design question.

2002-09-21 Thread Chuck PUP Payne
Hi, I have a question. I been working a personal project that I am want to make a like simpler. I have several pages have in which I have place the information to connect to my database, whick is getting old. What I am wanting to do is create file like most do, a config, but I want to know

Re: [PHP] Design question.

2002-09-21 Thread Chuck PUP Payne
Thanks guys. That really helpful. Chuck Payne On 9/21/02 10:16 PM, Chris Shiflett [EMAIL PROTECTED] wrote: This explanation from Justin is worth saving. I also like to call all of my included modules *.inc, and I prefer to store them outside of document root. However, if you want to

[PHP] How to pass null as value?

2002-09-11 Thread Chuck PUP Payne
I know this may have been asked a thousand times but how do you pass null on to a page as a value. Let say in a field where you have a yes and no. Null needs to equal no. Is this more mysql? Can it be done in php? Chuck Payne Magi Design and Support -- PHP General Mailing List

[PHP] Thanks...

2002-09-10 Thread Chuck \PUP\ Payne
Many thanks. That was the trick. :) Chuck Payne Magi Design and Support -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] E-mail a submit

2002-09-09 Thread Chuck \PUP\ Payne
Hi, Is there a way that when someone add a submit or edits a record that I can have my php page e-mail that record? And is hard to do? Chuck Payne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Count in PHP

2002-09-09 Thread Chuck \PUP\ Payne
I am wanting to do a count in PHP. I want to be able to count the number of records from a given database and display this count on the page. Can this be done using PHP or is the sql thing? Chuck Payne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] How to print a mysql result

2002-09-07 Thread Chuck PUP Payne
Hi, I am having a problem with menu options being pass on to my database. Is there a way that I can see what is sql statement that is passing on to the database? Say maybe print $sql or something like that? Chuck Payne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] How to do pass on information...

2002-09-07 Thread Chuck PUP Payne
Hi, I would like to know if there is a way that I can pass on an information from a pull down menu into a sql query. Right now I have to right a PHP page for each piece I am wanting to pass on. Example I have a movie database and now if I want to see what is in my Anime Category that starts with

[PHP] Lost, need help debuggin....

2002-06-24 Thread Chuck \PUP\ Payne
Hi, I am trying to debugging this script. But, I can see what the issue is, it not listing errors on any of the mysql stuff but this what I see when I view source

Re: [PHP] Lost, need help debuggin....

2002-06-24 Thread Chuck \PUP\ Payne
Not sure I am on my laptop, an iBook running php/apache. So I am not sure where php.ini is. Chuck On 6/24/02 3:29 PM, 1LT John W. Holmes [EMAIL PROTECTED] wrote: Do you have display_errors ON in your php.ini ?? ---John Holmes... - Original Message - From: Chuck PUP Payne [EMAIL

Re: [PHP] Lost, need help debuggin....

2002-06-24 Thread Chuck \PUP\ Payne
Look, I am glad that we are clear on php.ini, but I post my message in hopes that someone could look at it and say there your problem and go away, I've turn on error part no help. Same things. So somewhere there is a sytax error that is stopping it. PLEASE HELP! Chuck Payne On 6/24/02 3:54 PM,

Re: [PHP] Problem with MySQL

2002-06-14 Thread Chuck \PUP\ Payne
Ok. Go to this link... http://www.magidesign.com/movielist.php and select 12 Monkeys You will see that only picked one actor... It should have pick four mysql SELECT concat_ws( , fname, lname) as actor FROM actormovie WHERE title = 12 Monkeys ORDER BY lname; +-+ | actor

[PHP] Are we getting spammed?

2002-06-03 Thread Chuck \PUP\ Payne
I just got something call ise-news, and the bottom it saying it mail from -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Are getting spammed? Or it this for real? This is from the e-mail. --=_f74fc4c7192d1983b9f144709175f8eb

Re: [PHP] Re: BBS system

2002-04-27 Thread Chuck \PUP\ Payne
The I like I have try three now is phpnuke it so easy to set up you can have it up and running in 5 mins. YBBSE is another that is good. http://www.phpnuke.org http://www.yabbse.org | Chuck Payne | | Magi Design and Support | | www.magidesign.com

[PHP] ASP to PHP

2002-04-23 Thread Chuck PUP Payne
I got a strange request from a client. He wants to be able to take his ASP pages and move them over to PHP so that he can run them on apache on his linux server. I saw a tool yesterday ASP2PHP, but I am wanting to know does it work, how much is lost, is it easy to use? Is there another way to

[PHP] Not A PHP question but I need help in a big way...

2002-04-22 Thread Chuck PUP Payne
Hi, I just got finish will a meeting from HELL, I need to ask can some one tell me is there an Apache Mailing List like this. I have to ask if I can do ASP page on Apache, I know I know please don't flame me, I kept trying to get them to switch to PHP, but I been told to shut my mouth and just

[PHP] Wanting a better understanding of classes in PHP...

2002-04-12 Thread Chuck \PUP\ Payne
Hi, I was up on freshmeat and I saw a TON of php classes. I like to know how can I use them? And is a class a bit of code that you are always using? If so, how can I create my own classes. Chuck PUP Payne Sr. System Administrator GDI Engineering, Inc. 2075-E West Park Place Blvd. Stone Mountain

[PHP] Wanting a better understanding of classes in PHP...

2002-04-12 Thread Chuck \PUP\ Payne
Hi, I was up on freshmeat and I saw a TON of php classes. I like to know how can I use them? And is a class a bit of code that you are always using? If so, how can I create my own classes. Chuck PUP Payne Sr. System Administrator GDI Engineering, Inc. 2075-E West Park Place Blvd. Stone Mountain

[PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
I have done something stupid and not PHP won't work. Everytime you click on a link that is .php it wants you to download the file. What have I done and how can I fix it. Chuck Payne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
SuSE 7.3(linux) Apache. on 4/9/02 2:43 AM, Martin Towell at [EMAIL PROTECTED] wrote: um - pray which OS and web server are you running? -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 4:33 PM To: PHP General Subject: [PHP] Help

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
then.. Later, Bob Chuck Pup Payne [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... SuSE 7.3(linux) Apache. on 4/9/02 2:43 AM, Martin Towell at [EMAIL PROTECTED] wrote: um - pray which OS and web server are you running? -Original Message- From: C

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
No, I have reinstall. So much I about to throw my box. PHP just wont load now everything I have work now it lost. Chuck on 4/9/02 3:28 AM, Mika Tuupola at [EMAIL PROTECTED] wrote: On Tue, 9 Apr 2002, Chuck PUP Payne wrote: I have done something stupid and not PHP won't work. Everytime you

Re: [PHP] Help I killed PHP on mysever...

2002-04-09 Thread Chuck \PUP\ Payne
://www.amazon.co.uk/exec/obidos/wishlist/23IVGHQ61RJGO/ -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 8:31 AM To: Mika Tuupola Cc: PHP General Subject: Re: [PHP] Help I killed PHP on mysever... No, I have reinstall. So much I about

[PHP] Thanks away...

2002-04-09 Thread Chuck \PUP\ Payne
I want to thanks all those that help at 2~4am this morning (EST). I got it fixed, but I had to reinstall Apache and PHP, lucky it easy with SuSE Linux. But I still have no clue to why it wasn't working, but I wanted to thank any everyone that has help me on this sleepless night. It's great to

[PHP] PHP Clock

2002-04-05 Thread Chuck \PUP\ Payne
Does anyone know where I can get a script to all a clock done in PHP or will I have to do it with Java script. Chuck Payne Magi Design and Support -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Help with e-mail...

2002-04-03 Thread Chuck \PUP\ Payne
I have just install a program called Web Calendar. It suppose to be able to send reminders via e-mail but I am not sure if PHP is set up to send e-mail or what is happening. I have turned on debugging and it is showing that there are remembers but it not sending anything. Is there a simple test

Re: [PHP] Help with e-mail...

2002-04-03 Thread Chuck \PUP\ Payne
]\n) ? -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 3:26 PM To: PHP General Subject: [PHP] Help with e-mail... I have just install a program called Web Calendar. It suppose to be able to send reminders via e-mail but I am

Re: [PHP] Re: Help with e-mail...

2002-04-03 Thread Chuck \PUP\ Payne
your little example help me and that's want I wanted. Chuck On 4/3/02 4:45 PM, Javier [EMAIL PROTECTED] wrote: So you tried to send a mail to yourself and worked. What do you want to do then? On Wed, Apr 03, 2002 at 04:40:25PM -0500, Chuck PUP Payne wrote: Mail works, I am wanting to see PHP

[PHP] Can you use null?

2002-03-27 Thread Chuck \PUP\ Payne
I am wanting to know if I can use null to call up an image? I am writing a page that talks to calls to a database for cars. There a field where calls on photo names, but if someone doesn't have a photo. Mysql puts null, I want to be able to use that null to call an image.

[PHP] Where is php.ini on Mac OS X?

2002-03-26 Thread Chuck \PUP\ Payne
Can some one please tell me where php.ini is located on Mac OS X? Thanks, Chuck Payne Magi Design and Support -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Where is php.ini on Mac OS X?

2002-03-26 Thread Chuck \PUP\ Payne
Can some one please tell me where php.ini is located on Mac OS X? Thanks, Chuck Payne Magi Design and Support -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Cookies

2002-03-25 Thread Chuck \PUP\ Payne
Can someone point me to a webset that example how to do cookies? I try to do what the mannual said but, when I go to my temp dir, there no cookie file. I know it working because my file would print a phrasing error. Thanks, | Chuck Payne | | Magi

[PHP] Phpfx, what is it?

2002-03-20 Thread Chuck \PUP\ Payne
Hi, I was sourgeforge.net looking at the PHP stuff, I saw something call phpfx, but it not clear what it is or what it does. Has anyone mess with it? Also I am looking for a php program that was written so that you can do a BBS, I wanted to use Ultimate Bulletin Board, but they no longer

Re: [PHP] Phpfx, what is it?

2002-03-20 Thread Chuck \PUP\ Payne
. Thanks guys for the help, now I have to choose which program is best. on 3/20/02 8:26 PM, Ilia A. at [EMAIL PROTECTED] wrote: You can also try FUDforum (http://fud.prohost.org/forum/) Ilia On March 20, 2002 07:11 pm, Chuck \PUP\ Payne wrote: Hi, I was sourgeforge.net looking

[PHP] Mac Classic and PHP...Part 2 The Wintel Nightmare.

2002-03-19 Thread Chuck PUP Payne
Ok, I am back. My client has gone bought Wintel box, running XP. I have downloaded and install Apache, Mysql, and PHP 4. But because 4 is a zip, I have read the install.txt and have set up the httpd.conf but when I got to check if php is working, I can see the inside of the file ? PHPINFO(); ?

Re: [PHP] Mac Classic and PHP...Part 2 The Wintel Nightmare.

2002-03-19 Thread Chuck PUP Payne
for you. - Original Message - From: Chuck PUP Payne [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 1:12 PM Subject: [PHP] Mac Classic and PHP...Part 2 The Wintel Nightmare. Ok, I am back. My client has gone bought Wintel box, running XP. I have downloaded

Re: [PHP] Mac Classic and PHP...Part 2 The Wintel Nightmare.

2002-03-19 Thread Chuck \PUP\ Payne
download -- you have to register first) It puts Apache, MySQL, php and perl all in the right places for you. - Original Message - From: Chuck PUP Payne [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 19, 2002 1:12 PM Subject: [PHP] Mac Classic and PHP...Part 2

Re: [PHP] Website STATISTICS

2002-03-18 Thread Chuck \PUP\ Payne
Where can you find that one? On 3/18/02 3:49 PM, Dan Vande More [EMAIL PROTECTED] wrote: I think awstats has everything your asking for. -Original Message- From: karthikeyan [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 12:31 PM To: [EMAIL PROTECTED] Subject: [PHP]

[PHP] Mac Classic and PHP...

2002-03-18 Thread Chuck \PUP\ Payne
Does anyone know a good web server beside WebStar for the Mac Classic OS, that will allow you to run PHP with it? I have a client that is looking for such an animal. I recommended WebStar because I know it will let you run cg, but I am not sure about PHP. WebStar is the only professional web

Re: [PHP] Mac Classic and PHP...

2002-03-18 Thread Chuck \PUP\ Payne
for MacOS 9 so there is no option there. The only option is to switch to MacOSX (which I highly recommend) or migrate to XP (which is a mess but works). -Kevin -Original Message- From: Chuck PUP Payne [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 2:22 PM To: [EMAIL

Re: [PHP] Mac Classic and PHP...

2002-03-18 Thread Chuck \PUP\ Payne
:16 PM, Chuck PUP Payne wrote: Thanks, I am pushing them to go to OS X, but they are PPC 8500, which can only go to Mac OS 8.6, maybe 9. They don't want to buy a new computer, I personal have a G4 and Snowflake iBook and am running 10.1.3 with Apache, PHP, and MySQL. I told the I search

[PHP] Brain Dead...

2002-03-17 Thread Chuck \PUP\ Payne
I am trying to get a form to work with pull down menu. But I am so brain dead I forgot how to get the input from the pull down menu. Where do I put input to pass on to php? Chuck Payne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] phpMyAdmin

2002-03-11 Thread Chuck \PUP\ Payne
I have a client that has install phpMyAdmin but can't get into he gets this error; Error MySQL said: Access denied for user: 'root@localhost' (Using password: NO) Is there a way to get into if he knows the password? Chuck PUP Payne Sr. System Administrator GDI Engineering, Inc. -- PHP

Re: [PHP] Re: A stupid question...

2002-03-11 Thread Chuck \PUP\ Payne
alphabetically. Hope that's of some help. James Chuck Pup Payne [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I want to sort by a letter in a colomn. Let say I want to sort the colomn last_name. I can do order by but I can do just the A's.

RE: [PHP] Re: A stupid question...

2002-03-11 Thread Chuck \PUP\ Payne
$result =mysql_query(SELECT * FROM emply_info WHERE Lname ORDER BY Lname, Fname DESC LIKE'%$letter',$db); $letter=a That's what I tried. Chuck -Original Message- From: Rick Emery [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 5:25 PM To: 'Chuck PUP Payne'; liljim Cc: PHP

[PHP] A stupid question...

2002-03-10 Thread Chuck \PUP\ Payne
Hi, I not a newie but I am not a pro at mysql either. I want to do a query by letter(a, b, c..ect.). Is there a simple way to do it. I am writing in PHP. So can someone please so me the how. | Chuck Payne | | Magi Design and Support | |

Re: [PHP] Re: A stupid question...

2002-03-10 Thread Chuck \PUP\ Payne
like the example above. Chuck Payne Magi Design and Support on 3/10/02 9:42 PM, Cary at [EMAIL PROTECTED] wrote: At 08:24 PM 3/10/02, Chuck \PUP\ Payne wrote: Hi, I not a newie but I am not a pro at mysql either. I want to do a query by letter(a, b, c..ect.). Is there a simple way to do

Re: [PHP] Re: A stupid question...

2002-03-10 Thread Chuck \PUP\ Payne
so a sort like the example above. Chuck Payne Magi Design and Support on 3/10/02 9:42 PM, Cary at [EMAIL PROTECTED] wrote: At 08:24 PM 3/10/02, Chuck \PUP\ Payne wrote: Hi, I not a newie but I am not a pro at mysql either. I want to do a query by letter(a, b, c..ect.). Is there a simple

[PHP] Homesite 5.0 and PHP

2002-03-09 Thread Chuck \PUP\ Payne
I am wanting to know is there any add-ons for Macromedia Homesite 5.0. I see it set up for ASP and JSP and a couple others but not PHP. Chuck -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: Deleting a Record

2002-03-06 Thread Chuck \PUP\ Payne
To: Chuck PUP Payne; [EMAIL PROTECTED] Cc: PHP General Subject: Re: Deleting a Record At 7:46 -0500 3/6/02, Chuck \PUP\ Payne wrote: Hi, I a seting up a php page that will let me delete a record from my mysql database, but I want it be able to match to fields before it will let a user delete

Re: [PHP] BBEdit - URL Check

2002-02-28 Thread Chuck \PUP\ Payne
Dreamweaver does this but it cost. I am sure there are some shareware or freeware programs. Check versiontracker.com this is the best site to find MacOSX software. Chuck Payne Magi Design and Support on 2/28/02 10:37 AM, Josiah Wallingford at [EMAIL PROTECTED] wrote: Right now I am on a Mac

[PHP] Uploading Files with PHP

2002-02-21 Thread Chuck \PUP\ Payne
Hi, I am trying to set a small script that would let my clients upload file with a Explorer or Netscape, but the problem is it would let me upload any file that is great than a 1MB. We get an error that the file none could not be read. I have set the upload_tmp_dir=/tempupload is has been chmod