Re: [PHP] Encoding problems using phpMyAdmin

2005-01-16 Thread Lars B. Jensen
I am just curious why you do not upgrade to the latest stable 2.6.0-pl3? Because, any version in any patch level since 2.5.7-pl1 doesnt display shift-jis (japanese) properly - or anyway on my system. They seem to have broken the support for it, since that specific version. / Lars -- PHP

[PHP] PHP - mail problems - HELP!!! PLEASE

2005-01-15 Thread Kelly
I am having trouble with PHP 5.0.3. I am running Apache 1.3.29. I am running Solaris 9 x86 on an Intel box. I get no errors when I start Apache. I get no errors when I run configtest. My problem is mail() does not work. It does invoke sendmail as there is activity in sendmail log. When I

[PHP] Re: PHP - mail problems - HELP!!! PLEASE

2005-01-15 Thread Manuel Lemos
Hello, on 01/15/2005 12:59 AM Kelly said the following: I am having trouble with PHP 5.0.3. I am running Apache 1.3.29. I am running Solaris 9 x86 on an Intel box. I get no errors when I start Apache. I get no errors when I run configtest. My problem is mail() does not work. It does invoke

Re: [PHP] PHP - mail problems - HELP!!! PLEASE

2005-01-15 Thread John Hicks
Kelly wrote: I am having trouble with PHP 5.0.3. I am running Apache 1.3.29. I am running Solaris 9 x86 on an Intel box. I get no errors when I start Apache. I get no errors when I run configtest. My problem is mail() does not work. It does invoke sendmail as there is activity in sendmail

Re: [PHP] imap_mail problems

2004-12-21 Thread abrea
Subject: [PHP] imap_mail problems Hello, I am having problems with this code below. The system is a FC1 server and it is supposed to send an email collecting some information of a computer. The problem I am having is with the and characters. When the $header variable is created, it does

Re: [PHP] imap_mail problems

2004-12-21 Thread Richard Lynch
Paul Aviles wrote: Hello, I am having problems with this code below. The system is a FC1 server and it is supposed to send an email collecting some information of a computer. The problem I am having is with the and characters. When the $header variable is created, it does not work if you

[PHP] imap_mail problems

2004-12-20 Thread Paul Aviles
Hello, I am having problems with this code below. The system is a FC1 server and it is supposed to send an email collecting some information of a computer. The problem I am having is with the and characters. When the $header variable is created, it does not work if you add the and

Re: [PHP] pspell problems

2004-11-08 Thread Jason Wong
On Monday 08 November 2004 07:03, Noodles wrote: Jason Wong wrote: --with-pspell=/usr is what you want. I tried this and it still didn't help things That *is* what you want -- your problem lies elsewhere. I have: /usr/include/aspell.h /usr/lib/libaspell.so /usr/lib/libaspell.so.15

Re: [PHP] pspell problems

2004-11-08 Thread Noodles
Jason Wong wrote: Anyway, do you have these as well: /usr/include/pspell/ /usr/include/pspell/pspell.h The directory is required for the ./configure command to succeed, and you actually need the header file for the make command to succeed. No, I have no pspell directory or header file, I had

Re: [PHP] pspell problems

2004-11-08 Thread Noodles
Jason Wong wrote: Anyway, do you have these as well: /usr/include/pspell/ /usr/include/pspell/pspell.h As I said in my other email, I don't, but I have found the debian package which has pspell.h in it. It's libpspell-dev So from start to finish, this should install pspell on debian apt-get

Re: [PHP] pspell problems

2004-11-08 Thread Jason Wong
On Monday 08 November 2004 08:36, Noodles wrote: Jason Wong wrote: Anyway, do you have these as well: /usr/include/pspell/ /usr/include/pspell/pspell.h The directory is required for the ./configure command to succeed, and you actually need the header file for the make command to

Re: [PHP] pspell problems

2004-11-08 Thread John Nichel
the latest versions of aspell ( 0.50 I think) contain both...at least when doing a source install. When they first combined this, I had problems getting php to configure with pspell when both pspell and aspell were installed on the system. BTW, what's up with your system clock Jason? ;) -- John C

Re: [PHP] pspell problems

2004-11-08 Thread Jason Wong
On Monday 08 November 2004 14:12, John Nichel wrote: BTW, what's up with your system clock Jason? ;) I'll figure out how to set the clock one of these days. (Stop laughing). -- Jason Wong - Gremlins Associates - www.gremlins.biz Open Source Software Systems Integrators * Web Design Hosting *

[PHP] pspell problems

2004-11-07 Thread Noodles
I've spent the last 6 hours or so trying to get pspell going on my php install, version 4.3.9. I've searched all over the net, but haven't found a solution. I'm using debian so I'm using the packaged version of php4 and apache. I installed aspell using apt-get and then downloaded and compiled

Re: [PHP] pspell problems

2004-11-07 Thread John Nichel
Noodles wrote: I've spent the last 6 hours or so trying to get pspell going on my php install, version 4.3.9. I've searched all over the net, but haven't found a solution. I'm using debian so I'm using the packaged version of php4 and apache. I installed aspell using apt-get and then

Re: [PHP] pspell problems

2004-11-07 Thread Noodles
I tried it with just aspell (including the aspell-en dictionary package) and whenever I tried to configure php to use pspell it couldn't find pspell (./configure --with-pspell) John Nichel wrote: Noodles wrote: I've spent the last 6 hours or so trying to get pspell going on my php install,

Re: [PHP] pspell problems

2004-11-07 Thread John Nichel
Noodles wrote: I tried it with just aspell (including the aspell-en dictionary package) and whenever I tried to configure php to use pspell it couldn't find pspell (./configure --with-pspell) If Debian is like Red Hat, you will also need to install some type of development package for aspell

Re: [PHP] pspell problems

2004-11-07 Thread Noodles
John Nichel wrote: Noodles wrote: I tried it with just aspell (including the aspell-en dictionary package) and whenever I tried to configure php to use pspell it couldn't find pspell (./configure --with-pspell) If Debian is like Red Hat, you will also need to install some type of development

Re: [PHP] pspell problems

2004-11-07 Thread Noodles
John Nichel wrote: If Debian is like Red Hat, you will also need to install some type of development package for aspell (aspell-devel in Red Hat), or install from source so that the headers are present on your system. You may also need to point the php configure script to the location of your

Re: [PHP] pspell problems

2004-11-07 Thread John Nichel
Noodles wrote: John Nichel wrote: If Debian is like Red Hat, you will also need to install some type of development package for aspell (aspell-devel in Red Hat), or install from source so that the headers are present on your system. You may also need to point the php configure script to the

Re: [PHP] pspell problems

2004-11-07 Thread Noodles
John Nichel wrote: Well, the header file is in /usr/include, so try ./configure --with-pspell=/usr Still the same message =/ I tried it with --with-pspell=/usr and then --with-pspell=/usr/include but no luck Nick -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] pspell problems

2004-11-07 Thread Jason Wong
On Monday 08 November 2004 01:19, Noodles wrote: John Nichel wrote: If Debian is like Red Hat, you will also need to install some type of development package for aspell (aspell-devel in Red Hat), or install from source so that the headers are present on your system. You may also need to

Re: [PHP] pspell problems

2004-11-07 Thread Noodles
Jason Wong wrote: --with-pspell=/usr is what you want. I tried this and it still didn't help things Execute: find / -name '*[a|p]spell*' | sort | less and see if 'aspell.h'/'pspell.h' and 'libaspell.so'/'libpspell.so' are in there somewhere. I have: /usr/include/aspell.h

[PHP] Re: Problems with MySql

2004-11-05 Thread Oliver
I have sent am mail to [EMAIL PROTECTED] and the sad to me send the error for this e-mail. ---BeginMessage--- Hi Oliver, Please ask support questions at [EMAIL PROTECTED] Regards, Gabor Hojtsy Oliver írta: *Hello. My name is Oliver. I am from Brazil and I have had some problems. Today I installed

Re: [PHP] Re: Problems with MySql

2004-11-05 Thread - Edwin -
Hi, On Fri, 05 Nov 2004 12:55:17 -0200 Oliver [EMAIL PROTECTED] wrote: Today I installed EasyPHP without any problems, but when I updated the version of php, Mysql stoped.* Okay. So, how did you update it? Assuming you're on linux and using RPMs, [...] / To connect to a MySQL server, PHP

[PHP] mail problems - phpinfo information

2004-10-13 Thread Jed R. Brubaker
I have been having all kinds of problems with the mail() function in PHP. I realize that there are problems inheritly, but I think I am still trying to track down the problem. My latest theory is that PHP isn't set up to work with the right mailing program. I know that our system is supposed

RE: [PHP] mail problems - phpinfo information

2004-10-13 Thread Jay Blanchard
[snip] ... making me wonder if a local sendmail is handling the requests instead. With all of the above refering to sendmail, is there anyway that my mail() can actually be using qmail? [/snip] From http://www.php.net/mail, something you have not read apparently For the Mail functions to

Re: [PHP] mail problems - phpinfo information

2004-10-13 Thread Matthew Sims
I have been having all kinds of problems with the mail() function in PHP. I realize that there are problems inheritly, but I think I am still trying to track down the problem. My latest theory is that PHP isn't set up to work with the right mailing program. I know that our system is

Re: [PHP] mail problems - phpinfo information

2004-10-13 Thread John Nichel
Jed R. Brubaker wrote: I have been having all kinds of problems with the mail() function in PHP. I realize that there are problems inheritly, but I think I am still trying to track down the problem. My latest theory is that PHP isn't set up to work with the right mailing program. I know that

Re: [PHP] mail problems - phpinfo information

2004-10-13 Thread Jed R. Brubaker
So as I am not an administrator, and all I have to go on is phpinfo (unless anyone has some suggestions), should I be seeing some trace of qmail in the phpinfo? That is why I posted. I apologize if I didn't make it clear. I have read all about mail, and even used the fantastic Lemos MIME

Re: [PHP] mail problems - phpinfo information

2004-10-13 Thread John Nichel
Jay Blanchard wrote: From http://www.php.net/mail, something you have not read apparently Pt. Read? Why would I do that? ;) -- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] mail problems - phpinfo information

2004-10-13 Thread John Nichel
Jed R. Brubaker wrote: So as I am not an administrator, and all I have to go on is phpinfo (unless anyone has some suggestions), should I be seeing some trace of qmail in the phpinfo? No. snip Given the paths phpinfo is reporting, is there anyway that the system could somehow still be using

Re: [PHP] mail problems - phpinfo information

2004-10-13 Thread bbonkosk
- Original Message - From: Jed R. Brubaker [EMAIL PROTECTED] Date: Wednesday, October 13, 2004 1:21 pm Subject: Re: [PHP] mail problems - phpinfo information So as I am not an administrator, and all I have to go on is phpinfo (unless anyone has some suggestions), should I be seeing

Re: [PHP] mail problems - phpinfo information

2004-10-13 Thread Matthew Sims
So as I am not an administrator, and all I have to go on is phpinfo (unless anyone has some suggestions), should I be seeing some trace of qmail in the phpinfo? That is why I posted. I apologize if I didn't make it clear. I have read all about mail, and even used the fantastic Lemos MIME

[PHP] hy problems with php 5.01 installation !

2004-10-13 Thread Nicolae Serban
I try to install php 5.01 on Windows 2003 Server with Apache 2.052 ! I try to install as Module and as Cgi !! ( i restart the server if you asking of that :-) ) When i try an test.php ( just phpinfo(); ) in the web page apears just the code of the test.php !!! When i try to install as module i

Re: [PHP] hy problems with php 5.01 installation !

2004-10-13 Thread Greg Donald
On Wed, 13 Oct 2004 23:06:29 +0300, Nicolae Serban [EMAIL PROTECTED] wrote: I try to install php 5.01 on Windows 2003 Server with Apache 2.052 ! I try to install as Module and as Cgi !! ( i restart the server if you asking of that :-) ) When i try an test.php ( just phpinfo(); ) in the web

Re: [PHP] mail problems - phpinfo information

2004-10-13 Thread Jason Wong
On Thursday 14 October 2004 01:10, Matthew Sims wrote: The mail settings in php.ini is for Windows only. When using PHP on Unix/Linux, mail() always defaults to the sendmail binary on localhost. So you can ignore what it says in phpinfo. That's incorrect. The sendmail_path = setting is

Re: [PHP] Upload problems

2004-10-06 Thread Robert Sossomon
With apache, check out the php.conf file located at: /etc/httpd/conf.d and modify it to be: Files *.php SetOutputFilter PHP SetInputFilter PHP LimitRequestBody 838860800 /Files That'll allow a full CD worth of information to be uploaded... :) Robert raditha dissanayake wrote: Dennis

Re: [PHP] Re: [PHP Attachement Problems - MAC ISSUE!!

2004-10-06 Thread PHP Junkie
Ave, Manuel... I saved the new email_message.php class that you sent me replacing the old one. I used the test_attachment_message.php to test the new class. This time it didn't send the email with the corrupted attachments, instead, gave me an error on the screen... This is the error that I

Re: [PHP] Re: [PHP Attachement Problems - MAC ISSUE!!

2004-10-06 Thread PHP Junkie
Ave, One more thing I'd like to point out, which I just discovered. The php code I was using earlier, prior to using Manuel's mail class... Was not able to send any kind of attachment except .txt files. Niether images nor pdf nor anything would go through without being corrupted. However, using

[PHP] Re: [PHP Attachement Problems

2004-10-05 Thread Manuel Lemos
Hello, On 10/04/2004 10:24 AM, Php Junkie wrote: I created a form which can accept 2 file attachments and send an HTML Email... Everything works great... The files even get attached and sent, the ONLY problem is... The PDF file I'm sending attached open up empty! They are all blank.. Like

Re: [PHP] Re: PHP Attachement Problems

2004-10-05 Thread PHP Junkie
Ave, I just tried your php mime class. I tried the test_attachment_message file. It did the same to the pdf attachment. Initially, it tested with a text and an image. The text attachment opened without a problem but the image was giving an error in opening. I left the text file attachment as is

Re: [PHP] Re: PHP Attachement Problems

2004-10-05 Thread Greg Donald
On Tue, 05 Oct 2004 15:04:14 -0400, PHP Junkie [EMAIL PROTECTED] wrote: I just tried your php mime class. I tried the test_attachment_message file. It did the same to the pdf attachment. Have you tried sending other PDFs by chance? Have you tried opening the PDF with other PDF viewers after

Re: [PHP] Re: [PHP Attachement Problems - MAC ISSUE!!

2004-10-05 Thread PHP Junkie
Ave, On a hunch.. I uploaded my original php script AND the php mime class to a normal linux server with Apache web server... And all the scripts are running fine! The PDF attachments go through fine. So I finally found out.. It's a MAC issue! Using my scripts on the MAC server is causing the

Re: [PHP] Re: [PHP Attachement Problems - MAC ISSUE!!

2004-10-05 Thread PHP Junkie
Manuel, Really appreciate your help. I created a new empty php file and put your given code in it. Upon running the test.php in my browser, it prints exactly this in my browser: could not open file I have a PowerMac G5 Machine, with MacOS X. I have PHP 5 installed from entropy.ch and have the

Re: [PHP] Re: [PHP Attachement Problems - MAC ISSUE!!

2004-10-05 Thread PHP Junkie
PROTECTED] wrote: Hello, On 10/05/2004 04:40 PM, PHP Junkie wrote: Really appreciate your help. No problem. Sending mail with PHP is a saga to many users, not just Macs. If there is something that can be done to workaround PHP problems to avoid your problem, I will integrate

[PHP] Upload problems

2004-10-05 Thread Pablo Gosse
Hi, folks. I'm running into a strange upload problem and am not sure if it's a php or apache issue. I can't seem to upload any files bigger than 511k. 511k will upload fine, but 512k returns a Document contains no data error. I've tried this with a text file, adding and removing lines until it

RE: [PHP] Upload problems

2004-10-05 Thread Jay Blanchard
[snip] Hi, folks. I'm running into a strange upload problem and am not sure if it's a php or apache issue. I can't seem to upload any files bigger than 511k. 511k will upload fine, but 512k returns a Document contains no data error. I've tried this with a text file, adding and removing lines

Re: [PHP] Upload problems

2004-10-05 Thread PHP Junkie
Ave, What's the upload_max_filesize set to in your php.ini ? Under File Uploads in the php.ini, you will find this value. Junkie On 10/5/04 4:33 PM, Pablo Gosse [EMAIL PROTECTED] wrote: Hi, folks. I'm running into a strange upload problem and am not sure if it's a php or apache issue.

RE: [PHP] Upload problems

2004-10-05 Thread Pablo Gosse
[snip] What's the upload_max_filesize set to in your php.ini ? Under File Uploads in the php.ini, you will find this value. [/snip] That's not it. That's set to 30M. This domain was just transferred over to a new server, and this problem did not exist on the old one, so while I am pretty

Re: [PHP] Re: [PHP Attachement Problems - MAC ISSUE!!

2004-10-05 Thread Marek Kilimajer
PHP Junkie wrote: Ave, On a hunch.. I uploaded my original php script AND the php mime class to a normal linux server with Apache web server... And all the scripts are running fine! The PDF attachments go through fine. So I finally found out.. It's a MAC issue! Using my scripts on the MAC server

RE: [PHP] Upload problems

2004-10-05 Thread Pablo Gosse
[snip] Look in your php.ini for max_upload_size or something like it. [/snip] 'Twas an apache problem. Thanks the help. Cheers, Pablo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Upload problems

2004-10-05 Thread Dennis Gearon
Would you mind sharing what it was so that it hits the archives and a few 'enquiring minds'? Pablo Gosse [EMAIL PROTECTED] wrote: quote --- [snip] Look in your php.ini for max_upload_size or something like it. [/snip] 'Twas an apache problem.

Re: [PHP] Upload problems

2004-10-05 Thread raditha dissanayake
Dennis Gearon wrote: Would you mind sharing what it was so that it hits the archives and a few 'enquiring minds'? it probably was the LimitRequestBody apache directive which is set to 512 Kb in some 'out of the box' installations. -- Raditha Dissanayake.

[PHP] [PHP Attachement Problems

2004-10-04 Thread PHP Junkie
Ave, I created a form which can accept 2 file attachments and send an HTML Email... Everything works great... The files even get attached and sent, the ONLY problem is... The PDF file I'm sending attached open up empty! They are all blank.. Like everything has been wiped off from them!! Here's

[PHP] ftp_put Problems

2004-09-25 Thread Julian
Hello, I need to use FTP to upload a local file to a server. The uploads must be done through FTP and not HTTP. Unfortunately, the example in the manual is not working for me. If someone has any suggestions I would really appreciate it. Thanks, Julian -- PHP General Mailing List

Re: [PHP] ftp_put Problems

2004-09-25 Thread Marek Kilimajer
Julian wrote: Hello, I need to use FTP to upload a local file to a server. The uploads must be done through FTP and not HTTP. Unfortunately, the example in the manual is not working for me. If someone has any suggestions I would really appreciate it. Not much information. There is not error

Re: [PHP] ftp_put Problems

2004-09-25 Thread Julian
Maybe I should be more specific about what I am trying to do. I may be way off base in my approach. I want to upload using ftp a file from my local c drive (c:\somefile.text) to my server. I have been trying the ftp_put function example in the manual and it is failing. It reports There was a

Re: [PHP] ftp_put Problems

2004-09-25 Thread Jason Wong
On Sunday 26 September 2004 06:38, Julian wrote: Maybe I should be more specific about what I am trying to do. I may be way off base in my approach. I want to upload using ftp a file from my local c drive (c:\somefile.text) to my server. I have been trying the ftp_put function example in the

Re: [PHP] ftp_put Problems

2004-09-25 Thread Julian
i am trying to get a file from my local c drive to my server using something other than a form. thanks, julian Jason Wong [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Sunday 26 September 2004 06:38, Julian wrote: Maybe I should be more specific about what I am trying to do. I

Re: [PHP] ftp_put Problems

2004-09-25 Thread Marek Kilimajer
Julian wrote: i am trying to get a file from my local c drive to my server using something other than a form. Hmm, you can run an ftp server on your local machine and use php script on the server to retrieve the files. http server will work just as well. Is this what you want? thanks, julian

Re: [PHP] ftp_put Problems

2004-09-25 Thread Julian
well, i suspect i am at a dead end. here is the layout of things. we want to put up an internet kiosk at certain thoroughbred auctions to allow people to send ecards as well as contact associates. we have a web cam on the kiosk and a partner came up with the idea of letting them send photos of

Re: [PHP] ftp_put Problems

2004-09-25 Thread Marek Kilimajer
Julian wrote: well, i suspect i am at a dead end. here is the layout of things. we want to put up an internet kiosk at certain thoroughbred auctions to allow people to send ecards as well as contact associates. we have a web cam on the kiosk and a partner came up with the idea of letting them

Re: [PHP] ftp_put Problems

2004-09-25 Thread raditha dissanayake
Julian wrote: i am trying to get a file from my local c drive to my server using something other than a form. This is pretty much an impossible task for server side scripting. You can perhaps use an applet to upload either via FTP or HTTP. but marek's last mail is probably the best solution.

[PHP] Re: problems with different results on count() and select

2004-09-16 Thread Thomas Seifert
On Thu, 16 Sep 2004 10:43:46 +0200, Merlin wrote: Theoreticly the result number of the first select statement should be identical with the count statement, but it is not. Has anybody an idea how to fix that? It can't be the same number as you are using a where clause in the second

[PHP] Re: problems with different results on count() and select

2004-09-16 Thread Merlin
Thomas Seifert wrote: On Thu, 16 Sep 2004 10:43:46 +0200, Merlin wrote: Theoreticly the result number of the first select statement should be identical with the count statement, but it is not. Has anybody an idea how to fix that? It can't be the same number as you are using a where clause in

Re: [PHP] Re: problems with different results on count() and select

2004-09-16 Thread Jason Wong
On Thursday 16 September 2004 17:19, Merlin wrote: the where clause is a replacement for the order by clause in the first statement. Inside this first select statement I am showing 20 results on each page with the limit command as shown here: SELECT u.user_name, FROM usertable

[PHP] Re: problems setting up php5 on apache2 (WinXP Pro)

2004-09-10 Thread Catalin Trifu
Hi, I 2 use winxp pro at home, actually linux + windowoze and i have encountered the same problem with mysql extension. Some extensions, such as iconv, openssl depend on external libraries. btw! it's not a good idea to mess with windows\system32 folder. If you want you can

[PHP] Re: problems setting up php5 on apache2 (WinXP Pro)

2004-09-10 Thread Richard Harb
I have no experience with PHP5 so far but this subject was asked before often enough with PHP4 - so the advice should still be valid... I generally didn't put any files in the %SYSTEMROOT% folder (which usually translates to C:\WINDOWS on a default installed WinXP machine) but instead I put the

Re: [PHP] Sessions Problems

2004-09-04 Thread Octavio Herrera
Hi guys well I've been trying with named sessions, and nothing, then I did a pop up window to show me the $_SESSION content and when I reload that window a ramdom number of times, then the session expires and the $_SESSION array disappears!!! what can be this due to?? Im using PHP 4.3.3 and if

Re: [PHP] Sessions Problems

2004-09-03 Thread raditha dissanayake
Octavio Herrera wrote: Hello, im working in a website and I have this problem with sessions I have an admin page where I use session_start() and I have the user interface page where I also use session start, the problem is that when I open the user page, it overwrites my session I previously

Re: [PHP] Sessions Problems

2004-09-03 Thread Octavio Herrera
No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous session -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sessions Problems

2004-09-03 Thread raditha dissanayake
Octavio Herrera wrote: No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous session hi, again this does not provide enough information,you will need to more clearly state the problem please are you using

Re: [PHP] Sessions Problems

2004-09-03 Thread Mark
--- Octavio Herrera [EMAIL PROTECTED] wrote: No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous session This is because (I believe) you can't open two cookie-based sessions with two browser windows and

Re: [PHP] Sessions Problems

2004-09-03 Thread Jason Davidson
Read up on 'named sessions' I think that may be your solution jason Mark [EMAIL PROTECTED] wrote: --- Octavio Herrera [EMAIL PROTECTED] wrote: No, I do not store two items with the same key, I just open another session in other page and it just overwrite session data of a previous

Re: [PHP] Sessions Problems

2004-09-03 Thread Mark
--- Jason Davidson [EMAIL PROTECTED] wrote: Read up on 'named sessions' I think that may be your solution Interesting... here's a link to php.net. I assume this is what you're talking about... Looks promising. http://us4.php.net/manual/en/function.session-name.php jason Mark [EMAIL

[PHP] Sessions Problems

2004-09-02 Thread Octavio Herrera
Hello, im working in a website and I have this problem with sessions I have an admin page where I use session_start() and I have the user interface page where I also use session start, the problem is that when I open the user page, it overwrites my session I previously opened in the admin page,

[PHP] Re: problems with sessions!!AAH

2004-08-16 Thread Torsten Roehr
Angelo Zanetti [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Im running a win2k with apache and PHP 4.3.4 and I have gone through the installation readme for PHP. I have copied the necessary files to the correct directories. I have also set register_globals= Off (default) I

[PHP] Upload problems

2004-08-15 Thread Rosen
Hi, I try to upload a .zip file via PHP. I change directive upload_max_filesize = 500M. The first file is about 5 MB and no problems with upload. The second file is about 17 MB and script doesn't do nothing - no upload :( Can someone help with this ? Thanks in advance! -- PHP General Mailing

Re: [PHP] Upload problems

2004-08-15 Thread raditha dissanayake
Rosen wrote: Hi, I try to upload a .zip file via PHP. I change directive upload_max_filesize = 500M. The first file is about 5 MB and no problems with upload. The second file is about 17 MB and script doesn't do nothing - no upload :( Can someone help with this ? upload_max_filesize setting

Re: [PHP] Upload problems

2004-08-15 Thread Jason Wong
On Sunday 15 August 2004 23:14, Rosen wrote: I try to upload a .zip file via PHP. I change directive upload_max_filesize = 500M. The first file is about 5 MB and no problems with upload. The second file is about 17 MB and script doesn't do nothing - no upload :( Have you read the chapter

Re: [PHP] Session problems under heavy load???

2004-08-07 Thread Torsten Roehr
solve this problem. Regards, Torsten Roehr -Original Message- From: BOOT [mailto:[EMAIL PROTECTED] Sent: Friday, August 06, 2004 1:26 PM To: [EMAIL PROTECTED] Subject: [PHP] Session problems under heavy load??? My server was under a heavy load (rebuilding software raid 1

[PHP] php fam problems

2004-08-06 Thread Benjamin Adler
hi! I'm trying to use the fam module from cli-php5 with the example code from http://de2.php.net/manual/en/ref.fam.php. It works, but when I copy a big file into an observed folder, I get a FAMCreated for the file, and then, while the copying is still in progress, multiple FAMChanged. I want to

RE: [PHP] php fam problems

2004-08-06 Thread Jay Blanchard
[snip] I'm trying to use the fam module from cli-php5 with the example code from http://de2.php.net/manual/en/ref.fam.php. It works, but when I copy a big file into an observed folder, I get a FAMCreated for the file, and then, while the copying is still in progress, multiple FAMChanged. I want

[PHP] Session problems under heavy load???

2004-08-06 Thread BOOT
My server was under a heavy load (rebuilding software raid 1 array) and my PHP+MySQL site seemed to be all messed up. From what I can makeout session variables were being lost. I would expect simply degraded performance but not the loss of variables. Is this normal? LOL the array is still

RE: [PHP] Session problems under heavy load???

2004-08-06 Thread Ed Lazor
To: [EMAIL PROTECTED] Subject: [PHP] Session problems under heavy load??? My server was under a heavy load (rebuilding software raid 1 array) and my PHP+MySQL site seemed to be all messed up. From what I can makeout session variables were being lost. I would expect simply degraded performance

[PHP] Re: problems linking a DLL to Zend symbols like

2004-07-05 Thread Jason Barnett
Try php.internals -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Combo problems.. Multi Array??

2004-06-16 Thread Ford, Mike [LSS]
On 15 June 2004 00:07, Michael Benbow wrote: Thanks Mike, I have read up a lot on permutation but I'm not completely sure that this will solve my problem. From what I can gather permutation takes a sample (i.e. ABC) and tells you how many different ways it can arrange the letters, with

[PHP] Combo problems.. Multi Array??

2004-06-14 Thread Michael Benbow
Hi, I've got a problem which has left me scratching my head for the better part of a week. What I need to do is take x amount of items on one side, and somehow find all the combinations of y that fit in x. Now I know this doesn't make much sense but it is very hard to explain, so I'm

RE: [PHP] Combo problems.. Multi Array??

2004-06-14 Thread Ford, Mike [LSS]
-Original Message- From: Michael Benbow [mailto:[EMAIL PROTECTED] Sent: 14 June 2004 08:31 To: [EMAIL PROTECTED] Subject: [PHP] Combo problems.. Multi Array?? Hi, I've got a problem which has left me scratching my head for the better part of a week. [...] The outcome

Re: [PHP] Combo problems.. Multi Array??

2004-06-14 Thread Michael Benbow
idea how I can do the above? Thanks so much, Michael. Ford, Mike [LSS] wrote: -Original Message- From: Michael Benbow [mailto:[EMAIL PROTECTED] Sent: 14 June 2004 08:31 To: [EMAIL PROTECTED] Subject: [PHP] Combo problems.. Multi Array?? Hi, I've got a problem which has left me

[PHP] Re: Problems with variable handling !

2004-06-08 Thread php-general
phpinfo reports that register_globals=On

[PHP] Re: Problems with variable handling !

2004-06-08 Thread php-general
- Original Message - From: php-general To: [EMAIL PROTECTED] Sent: Tuesday, June 08, 2004 12:36 PM Subject: Problems with variable handling ! Hi ! I have a Problem with hand over of variables; My Page consists of three files which I have enclosed to demonstrate the

Re: [PHP] Re: Problems with variable handling !

2004-06-08 Thread Jason Wong
On Tuesday 08 June 2004 18:50, php-general wrote: Only pressing the Display concatenated strings-button should output the concatenated string, but this does not work, and I do not understand why. $var3 is not defined. -- Jason Wong - Gremlins Associates - www.gremlins.biz Open Source

[PHP] Re: Problems with variable handling !

2004-06-08 Thread php-general
On Tuesday 08 June 2004 18:50, php-general wrote: Only pressing the Display concatenated strings-button should output the concatenated string, but this does not work, and I do not understand why. $var3 is not defined. -- $var3 is defined as $var3 = $var1$var2; in the body of the if

Re: [PHP] Re: Problems with variable handling !

2004-06-08 Thread Jason Wong
On Tuesday 08 June 2004 19:13, php-general wrote: $var3 is defined as $var3 = $var1$var2; in the body of the if ($button1) statement !? sigh what is button1 supposed to do and what is button2 supposed to do? -- Jason Wong - Gremlins Associates - www.gremlins.biz Open Source Software

[PHP] imagedestroy problems with memory

2004-05-15 Thread Merlin
Hi there, I am having trouble with ram memory. After about a day the system starts to swap. After doing a bit of research I found that a possible reason could be the missing of the imagedestroy() function. There is a question I have on that. Inside a function I add sometimes watermarks to

Re: [PHP] imagedestroy problems with memory

2004-05-15 Thread Marek Kilimajer
Merlin wrote: Hi there, I am having trouble with ram memory. After about a day the system starts to swap. After doing a bit of research I found that a possible reason could be the missing of the imagedestroy() function. There is a question I have on that. Inside a function I add sometimes

Re: [PHP] thumbnail problems

2004-05-10 Thread Marek Kilimajer
Ninti Systems wrote: I've searched the archives on this and, while I have turned up some tips, they don't seem to solve my problem. I an building a website for an indigenous organisation where jpg images are uploaded, resized to a standard format, and thumbnails also generated at the same time (so

RE: [PHP] Re: Problems with very special characters

2004-05-10 Thread Wouter van Vliet
Message- From: Aidan Lister [mailto:[EMAIL PROTECTED] Sent: Sunday, May 09, 2004 04:08 To: [EMAIL PROTECTED] Subject: [PHP] Re: Problems with very special characters Hi, Make sure the charset of your document matches the charset sent by the server - If you tell the browser the charset

<    1   2   3   4   5   6   7   8   9   10   >