[PHP] Whom to report a serious bug in Zend Encoder

2004-03-07 Thread Erdener Gonenc
Do anyone know who should I contact to report that bug? I've already dropped a note to forums at Zend... Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Whom to report a serious bug in Zend Encoder

2004-03-07 Thread Jason Davidson
you can post to the internals list.. they will respond fast. they are good that way. :) Jason Erdener Gonenc [EMAIL PROTECTED] wrote: Do anyone know who should I contact to report that bug? I've already dropped a note to forums at Zend... Thanks -- PHP General Mailing List

Re: [PHP] Whom to report a serious bug in Zend Encoder

2004-03-07 Thread Erdener Gonenc
I just did, Thank you.. you can post to the internals list.. they will respond fast. they are good that way. :) Jason Erdener Gonenc [EMAIL PROTECTED] wrote: Do anyone know who should I contact to report that bug? I've already dropped a note to forums at Zend... Thanks -- PHP General

[PHP] Fw: remote stop/start the applications

2004-03-07 Thread CurlyBraces Technologies \( Pvt \) Ltd
Tell me even , is it possible to do so ?? plz reply asap - Original Message - From: CurlyBraces Technologies ( Pvt ) Ltd To: PHP Sent: Friday, March 05, 2004 6:40 PM Subject: Fw: remote stop/start the applications - Original Message - From: CurlyBraces Technologies

Re: [PHP] preg_split - spliting string

2004-03-07 Thread Bambero
Burhan Khalid wrote: Bambero wrote: Hi I need to split a string by the: , (comma) separator, but when the comma is beetwen it should be skipped. Ex: test ts sasa, assas sasa,asaas dasdas, da = test ts sasa = assas sasa,asaas dasdas = da If this is a CSV file, you can try fgetcsv. From

Re: [PHP] Fw: remote stop/start the applications

2004-03-07 Thread Jason Wong
On Sunday 07 March 2004 20:50, CurlyBraces Technologies \( Pvt \) Ltd wrote: Tell me even , is it possible to do so ?? Yes. -- Jason Wong - Gremlins Associates - www.gremlins.biz Open Source Software Systems Integrators * Web Design Hosting * Internet Intranet Applications Development *

Re: [PHP] PHP and Apache Using up all memory

2004-03-07 Thread Raditha Dissanayake
The RLimit* set of directive can define resource limitations in apache. There is also aSendBufferSize directive but haven't used that so can't comment. According to the situation that you describe perhaps saving the file first isn't the solution either. Juan E Suris wrote: Right now I am

php-general Digest 7 Mar 2004 14:15:48 -0000 Issue 2632

2004-03-07 Thread php-general-digest-help
php-general Digest 7 Mar 2004 14:15:48 - Issue 2632 Topics (messages 179676 through 179696): Need Help in shoppin cart 179676 by: New Session 179677 by: Ryan A 179681 by: John Nichel Re: UK Bank Holidays 2 179678 by: Raditha Dissanayake Re: PHP and Apache

Re: [PHP] Fw: remote stop/start the applications

2004-03-07 Thread Raditha Dissanayake
You can only kill your own processes or you have to rely on a suexec mechanism. What you should be doing is SFTA because this topic has been discussed many times in the past. all the best CurlyBraces Technologies ( Pvt ) Ltd wrote: By using php web page of a certain webserver can i go into

Re: [PHP] Mail fifth parameter

2004-03-07 Thread Raditha Dissanayake
Hi, I am no expert on sendmail configuration but my little knowledge tells me sendmail shouldn't change any headers that are passed to it if it is configured properly. joel boonstra wrote: On Sun, Mar 07, 2004 at 09:51:28AM +0600, Raditha Dissanayake wrote: It's an often overlooked fact

Re: [PHP] Fw: remote stop/start the applications

2004-03-07 Thread CurlyBraces Technologies \( Pvt \) Ltd
By using php web page of a certain webserver can i go into the some other local plase in the same web server ? Because for the special request i want kill some prosess which are runs in the webserver. All Telent and other remote login restricted from the firewall . thanx - Original Message

Re: [PHP] Fw: remote stop/start the applications

2004-03-07 Thread CurlyBraces Technologies \( Pvt \) Ltd
sorry , u didn't get my point ..i will explain it again. 1.web server runs with some php scripts 2.It will show the out put of a certain executable file's result. 3.This file run in the /usr/local/src/./asd.pl 4.I need stop the function of that file , like ctrl+c can u hel me further

RE: [PHP] Let's start a php-advanced list!

2004-03-07 Thread Larry Brown
what do you guys think of using a tag for discussion messages? This way people that don't want to weed out lengthy discussions and attachments etc can filter them out of list messages. A tag such as discussion in the subject line? Just my two cents. Larry -Original Message- From: Marc

[PHP] writing meta information into png

2004-03-07 Thread p80
is there a class or a function that makes it possible to write meta information into a png or jpeg image? any suggestion? thanx in advance -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Image creation

2004-03-07 Thread Kenneth
Dear all, Thanks Kilimajer's help and I can finally build-in the GD library. But when i use the imagecreate function for jpeg, don't know why there are some unknown wordings appears. Sth like the following: 1oACEEEO¡ÑOUUaaceeeno Don't know what's happening, I just use simple

[PHP] Re: extra breaks in sent out emails

2004-03-07 Thread Ben Ramsey
Scott Taylor wrote: What I really don't understand is why there are any line breaks at all, because the trim is supposed to take out all \r \n 's. Is there another type of line break? trim() actually only strips whitespace (including \r and \n) from the beginning and ending of strings. See

[PHP] PHP security

2004-03-07 Thread Martin Nicholls
I know somebody who coded a PHP script that attempts to prevent post flooding and some other potential security 'flaws'. I know quite alot about PHP, some things are still beyond my knowledge. I was wondering if some people could have a look at it to see if it is a viable way of reducing secrity

Re: [PHP] PHP security

2004-03-07 Thread Jason Davidson
request floods and such are not the responsability of the programmer is it? Sounds more like a sys admin problem? i could be wrong. Jason Martin Nicholls [EMAIL PROTECTED] wrote: I know somebody who coded a PHP script that attempts to prevent post flooding and some other potential security

[PHP] Re: extra breaks in sent out emails

2004-03-07 Thread Scott Taylor
Thank you Ben. Using either str_replace(\n, , $string); or str_replace(\r, , $string); solves the problem. My guess is that when I submit the data there is both the \r and the \n in there (for there showed 2 white space characters in between the broken text lines). My guess is that the

[PHP] Re: extra breaks in sent out emails

2004-03-07 Thread Ben Ramsey
I cannot believe that the server converts \r's to \n's. \n does not count as two breaks, either. \r stands for carriage return and \n stands for newline. Even if they are placed side-by-side (e.g. \r\n), they should only count as one line. Unless I knew more about your code or your

Re: [PHP] imagecreatejpeg locks php

2004-03-07 Thread kringla
Is there any debugger i can use too se what is hapening? I found dbg but that seems to only work if php is CGI installed, and I do have serious problem compiling dbg. I also found xdebug http://www.xdebug.org/ but it seems like it's not for php 4.3.4, just 4.3.1. Downloaded the source also so

Re[2]: [PHP] How to write this correctly?

2004-03-07 Thread Tom Rogers
Hi, Sunday, March 7, 2004, 11:20:18 PM, you wrote: L Hi, thanks for a help. but your script doesn't work correctly. L function output($action){ // this is line 64. L $output = ''; //if no file we return an empty string L $fname = 'data/'.$action.'.txt'; L if(file_exists($fname)){ L

[PHP] RFC: Job listings

2004-03-07 Thread Anders Hellström
Hi, I'm one of the volunteers working on PHPCommunity.org. There's been some talk about having a Job Listings section on the site, something along the lines of jobs.perl.org, and We're wondering how much interest there is in such a service. I'm sure all the unemployed PHP developers on the

[PHP] Re: Question of Charset

2004-03-07 Thread Ligaya Turmelle
I don't understand what you are asking. Please explain. Respectfully, Ligaya Turmelle PHPCommunity: Open Source, Open Community For more information or to join the movement www.phpcommunity.org [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Dear All, How to control php (

[PHP] getting message from file

2004-03-07 Thread Kenneth
Dear All, I have a problem on getting content from a data file (data.txt). I have many numbers in the file...all of them are about 2.XXX, and I need them to plot a graph. But I just can't read them out as a integer. I've used C++ program to read them before, but i don't know how to import C++

[PHP] Re: RFC: Job listings

2004-03-07 Thread Ben Ramsey
Anders, I think this really depends on how we get the word out to employers about this service. I, for one, hope to use the new Atlanta PHP (http://www.atlphp.org) group as a resource not only to educate and network PHP developers, but as a way to bring knowledge of PHP to the business world

Re: [PHP] PHP security

2004-03-07 Thread Martin Nicholls
no, but i suppose you have options available to prevent them, and it may be a sysadmins problem, but there is a good chance that it may be your fault, I can see how if you are a freelance devloper, it may look bad if the client wants to hire for another job, and your code was the flaw in an

RE: [PHP] Re: RFC: Job listings

2004-03-07 Thread Larry Brown
I don't see how it could be to anyone's disadvantage. As a matter of fact, I think that it would be great to also have it available as a soap service as well. If people well versed in different open source projects were able to be listed on each projects' sites and provide soap service as well,

[PHP] Do not want Undefined variable message

2004-03-07 Thread Manisha Sathe
I have following code testinclude.php % echo A $color $fruit; // A include 'vars.php'; echo A $color $fruit; // A green apple % vars.php % $color = green; $fruit = Apple; % But when i run the testinclude program I always get Undefined variable errro on very first line. I know it is because vars

Re: [PHP] Re: Question of Charset

2004-03-07 Thread edwardspl
Dear Ligaya Turmelle, For example After enter chinese words ( example ) though program ( Web ) to MS-SQL, then search the data from the DB... But the result of the records is not chinese words ( char ) ! Thank for your help ! Edward. Ligaya Turmelle wrote: I don't understand what you are

RE: [PHP] Re: RFC: Job listings

2004-03-07 Thread Chris Shiflett
--- Larry Brown [EMAIL PROTECTED] wrote: I don't see how it could be to anyone's disadvantage. As a matter of fact, I think that it would be great to also have it available as a soap service as well. I was thinking the same thing after reading Ben's comment. I think people might be more

php-general Digest 8 Mar 2004 02:42:57 -0000 Issue 2633

2004-03-07 Thread php-general-digest-help
php-general Digest 8 Mar 2004 02:42:57 - Issue 2633 Topics (messages 179697 through 179717): Re: remote stop/start the applications 179697 by: Raditha Dissanayake 179698 by: CurlyBraces Technologies \( Pvt \) Ltd Re: Let's start a php-advanced list! 179699 by: Larry

Re: [PHP] Do not want Undefined variable message

2004-03-07 Thread Michal Migurski
But when i run the testinclude program I always get Undefined variable errro on very first line. I know it is because vars are not defined yet, but i remember last time those warnings never used to come. What setting is needed in php.ini file ? Check the manual for error reporting.

[PHP] Re: RFC: Job listings

2004-03-07 Thread Anders Hellström
At 18.42 -0800 2004-03-07, Chris Shiflett wrote: --- Larry Brown [EMAIL PROTECTED] wrote: I don't see how it could be to anyone's disadvantage. As a matter of fact, I think that it would be great to also have it available as a soap service as well. I was thinking the same thing after reading

[PHP] OTP: Programming

2004-03-07 Thread Phil Dowson
Hi, I have been working with PHP for a few years now, and I feel very comfortable with it. I am considering branching out into windows application development, and I was wondering what language people would recommend for someone comfortable with PHP. I have heard that PHP can be used in this

[PHP] Help with PPP Strategies

2004-03-07 Thread Pooya Eslami
Hi, I want to write a php script for handling the username and password of users on my website. What strategies are used for password protected pages? I don't quite know where to start! One strategy that I had in mind was to have a folder for each user and access it via the user name and password

Re: [PHP] OTP: Programming

2004-03-07 Thread Cosmin
On Mon, 2004-03-08 at 05:40, Phil Dowson wrote: Hi, I have been working with PHP for a few years now, and I feel very comfortable with it. I am considering branching out into windows application development, and I was wondering what language people would recommend for someone comfortable

[PHP] Mail Function

2004-03-07 Thread Will
Hello All, I have a question. I installed PHP on a windows XP machine. When I try to send a form it says: Warning: mail(): sendmail_from not set in php.ini or custom From: header. My header are as follows: ? require (admin/inc/setup.php); $subject = FeedBack From Site; $msg = Senders Name:

Re: [PHP] Help with PPP Strategies

2004-03-07 Thread Burhan Khalid
Pooya Eslami wrote: Hi, I want to write a php script for handling the username and password of users on my website. What strategies are used for password protected pages? I don't quite know where to start! One strategy that I had in mind was to have a folder for each user and access it via the

[PHP] MYSQL Image functions

2004-03-07 Thread res0b8b6
I am trying to use any of the image functions with image data from a mysql database. I can get these functions to work from files on the server but for some reason, not out of the database. If any one has gotten this to work, code you shoot me over some sample code, or functions on what to do. --