Re: [PHP] Upload files problems

2006-05-26 Thread chris smith
On 5/27/06, Ing. Tomás Liendo <[EMAIL PROTECTED]> wrote: My host uses safe mode... What other thing can I do? Some other method exists to send files besides POST method? ftp? You haven't solved your problem which actually has nothing to do with file uploading (460k is nothing and should upload

Re: [PHP] how include works?

2006-05-30 Thread chris smith
On 5/30/06, Arno Kuhl <[EMAIL PROTECTED]> wrote: -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: 30 May 2006 06:11 To: Mindaugas L Cc: php-general@lists.php.net Subject: Re: [PHP] how include works? On Tue, May 23, 2006 6:19 pm, Mindaugas L wrote: > can anybody ex

Re: [PHP] $_FILES doesn't work but $_POST works

2006-05-31 Thread chris smith
On 5/31/06, kartikay malhotra <[EMAIL PROTECTED]> wrote: Thanks for your replies. 1. Did you put the enctype="multipart/form-data" into the FORM tag? Ans: I do not have a form! I'm using a gateway utility to upload files From documentation of Mbuni MMS gateway: post-url Response content is obt

Re: [PHP] mail function in 4.2.2

2006-06-01 Thread chris smith
On 6/1/06, Aaron Todd <[EMAIL PROTECTED]> wrote: I am working with a server that has version 4.2.2 on it. I know...I know...its old. Its my ISPs server so I don't have too much control over it. Anyway, I am seeing a problem where when I use the mail function to send out an email only some of

Re: [PHP] Re: Retrieving Content

2006-06-03 Thread chris smith
On 6/3/06, Adam Zey <[EMAIL PROTECTED]> wrote: Rodrigo de Oliveira Costa wrote: > I just discovered the problem I have to retrieve the output of the > site and not the url since its dynamic. Ca I do it like retrieve the > output of this url: > > www.tryout.com/1/2/ > > And of course store it on a

Re: [PHP] ADODB store session to database

2006-06-07 Thread chris smith
On 6/7/06, weetat <[EMAIL PROTECTED]> wrote: Hi all , I am having problem in store session in the database . Below is the example code from code. Ask the adodb guys. http://adodb.sourceforge.net/#mail -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP General Mailing List

Re: [PHP] better way to create custom text file from query results?

2006-06-07 Thread chris smith
On 6/7/06, Ben Liu <[EMAIL PROTECTED]> wrote: Hello All, It seems that there has to be a better way of doing this. Can the $_POST superglobal be manipulated in this way: foreach ($_POST as $fieldname) ? Yes, that will work. If in doubt give something a try. :) -- Postgresql & php tutori

Re: [PHP] Restrict uploaded scripts

2006-06-08 Thread chris smith
On 6/8/06, Mathias Bundgaard Svesson <[EMAIL PROTECTED]> wrote: Hi! I'm trying to create a CMS where it should be posible to upload script modules. Those modules should mostly be made by myself, but it is posible for others to create scripts too. My question is, is it posible to restrict the modu

Re: [PHP] Session puzzle... / why no new session?

2006-06-09 Thread chris smith
On 6/10/06, Ryan A <[EMAIL PROTECTED]> wrote: Hi, I am working on a very simple script, basically adding features to an older script, I'll write down the main parts: and for logout.php I have: - ini_set('session.name', 'COSTREAM_SESSION'); session_start(); unset($_SESSION['user']); sessi

Re: [PHP] Tables vs. databases

2006-06-09 Thread chris smith
On 6/10/06, Antonio Bassinger <[EMAIL PROTECTED]> wrote: Hi gang, Situation: I've a HTTP server. I intend to run a file upload service. There could be up to 1 subscribers. Each saving files up to 10 MB. I made a proof-of-concept service using PHP & MySQL, where there is a single database,

Re: [PHP] Need to recompile php 4.3.4

2006-06-16 Thread chris smith
On 6/17/06, Mauricio Pellegrini <[EMAIL PROTECTED]> wrote: Hi , In order to enable bcmath I need to recompile php 4.3.4 on suse 8.2. but , I would like to preserve the actual installation just in case anything goes wrong ( as this is my production server) What files should I backup / restore i

Re: [PHP] Stream download problem

2006-06-21 Thread chris smith
On 6/21/06, Michael Satterwhite <[EMAIL PROTECTED]> wrote: Jochem Maas wrote: > Michael Satterwhite wrote: > >>Prathaban Mookiah wrote: >> >>>Micheal, >>> >>>I ran into this problem too. A easy workaround is to right click and >>>choose 'save as' which worked for me. >> >>I wish that would work.

Re: [PHP] GD problems

2006-06-23 Thread chris smith
On 6/24/06, Beauford <[EMAIL PROTECTED]> wrote: Here's something else I just noticed. When I run the script below in Windows it works fine, in Linux I get this error: Fatal error: Call to undefined function bcmod() in /usr/local/apache/htdocs/home/cap.php on line 62 David told you about this

Re: [PHP] Extracting XMP tags from pictures

2006-06-23 Thread chris smith
On 6/24/06, Dotan Cohen <[EMAIL PROTECTED]> wrote: I have successfully extracted IPTC tags from jpegs, but now that I've switched to F-spot I need to extract XMP data. I have found this: http://www.ozhiker.com/electronics/pjmt/library/documentation/ But I have been so far unable to extract the t

Re: [PHP] GD problems

2006-06-23 Thread chris smith
On 6/24/06, Beauford <[EMAIL PROTECTED]> wrote: Honestly, I've never seen anything so ridiculous. How is one to know that in order to get one program to work you have to install 28 others. I'm not trying to be a smart ass here, but seriously - No where in any documentation I've read does it say I

Re: [PHP] MYSQL insert problems

2008-10-17 Thread chris smith
On Sat, Oct 18, 2008 at 3:22 AM, Frank Stanovcak <[EMAIL PROTECTED]> wrote: > I'm using the following code to try and do a simple insert query. However > it won't insert the data into the table, and I get no error messages. What > have I done wrong this time? You will be getting an error. echo

[PHP] pcntl functions and database

2006-01-28 Thread chris smith
Hi all, I'm trying to work out threaded apps and I'm trying to use the pcntl functions. I can get it working ok without using a database but when I plug the database in I get 'lost connection during query' errors. Does anyone have any suggestions or a working example ? Thanks! My code:

Re: [PHP] questions regarding PHP and Forms

2006-01-28 Thread chris smith
Hi, I missed the start of the thread but it may be because you have a space in "rowing machine" for the option. Try "rowing_machine" or "rowingmachine" and see what happens. (check your javascript console - in firefox type 'javascript:' in the address bar without the quotes). On 1/29/06, Miles

Re: [PHP] pcntl functions and database

2006-01-28 Thread chris smith
Hi Kevin, Thanks for testing it. I got the same when I was using postgresql for the database so I thought I was doing something wrong. On 1/29/06, Kevin Kinsey <[EMAIL PROTECTED]> wrote: > > chris smith wrote: > > >Hi all, > > > >I'm trying to work out t

<    1   2   3