Re: [PHP] Reading class variable value always returns NULL

2012-08-15 Thread Philipp Gysin
As a little clarification: The Apache server in question is configured as a MPM prefork. On Wed, Aug 15, 2012 at 4:28 PM, Reto Kaiser wrote: > So here's some new observations on the instance variables being NULL. > As far as we found out this is the sequence of events: > > 1. Apache (MPM) recei

[PHP] Help: PHP version not up to date after "apt-get install php5-dev"

2009-06-17 Thread Philipp Schaffner
very much for your brief info about this confusion! Philipp Schaffner, Switzerland -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Video question

2006-12-20 Thread Philipp Schwarz
using complicated AJAX structures, but if someone tracks the AJAX-traffic it will be easy to start the video. In fakt there is no way to prevent videos from downloading. If the browser can play the video, than there is a way to get it. MfG Philipp John Messam schrieb: How do I display video

Re: [PHP] Which PHP-script crashes my server?

2006-12-19 Thread Philipp Schwarz
Linux, of course. :-) It is a Gentoo server with Confixx Pro on it. The PHP safe mode is disabled for some accounts, so it is clear that problems like this happen. But I can not enable it because of several scripts. Thats all I know. I dit not setup the server. If you need some special inform

[PHP] Which PHP-script crashes my server?

2006-12-19 Thread Philipp Schwarz
Hi guys, I have a problem with my webserver. It is a server for me and some web projekts of my friends. And there is one PHP script which kills the whole server, but I do not know which one it is. When the server is going down one apache process uses 99% CPU and memory. In this case I can onl

Re: [PHP] If array()

2006-10-10 Thread Philipp Schwarz
Try this: if (is_array($array) && count($array)) { ... } John Taylor-Johnston schrieb: How can I use "if" to see an array contains something? if ($array()) does not work, of course. John -- Mit freundlichen Grüße

Re: [PHP] test

2006-10-04 Thread Philipp Schwarz
Stupid? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Php function to Set focus On A form Field

2006-04-26 Thread Philipp Kopf
remarked that http://www.google.com is using this function to automatically set the focus on the search field. regards Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Error when I try to display 20 records per page

2004-11-16 Thread Philipp Lutz
Scott McWhite wrote: $row = mysql_fetch_array($result); //get a row from our result set a bit farther down... while($row = mysql_fetch_array($result)){ Dude ! You're like pulling the same results from the same query/resultset twice (..and stuff). You can't do that, man. You have to redo the query

[PHP] Re: Auth class----MySQL user

2004-09-08 Thread Philipp Wendisch
m_pahlevanzadeh at yahoo dot com My website is: http://webnegar.net simple answer: read the manual about Auth, and you will notice the warning: You can change all the HTML formatting in the function, but you cannot change the names of the input boxes in the form. They have to be username and password. after changing the names, you will see, that it works ;-) greets Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] question about GD and colors

2003-01-28 Thread Philipp
Hi, question was answered yesterday on the list. there is a new function imagecreatetruecolor(). use this instead of imagecreate(). Regard, Philipp - Original Message - From: "nospam" <[EMAIL PROTECTED]> To: "'Jean-François Marseaut'" <[EMAIL

Re: [PHP] question about GD and colors

2003-01-27 Thread Philipp
Hi Adrian, thank you very much, that solved my problem. Regards, Philipp - Original Message - From: "adrian [EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: "Philipp" <[EMAIL PROTECTED]>; "Jean-François Marseaut" <[EMAIL PROTECTED]>; <[EM

Re: [PHP] question about GD and colors

2003-01-27 Thread Philipp
Hi experienced the same problem with the new bundled version of GD. regards, philipp - Original Message - From: "Jean-François Marseaut" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 27, 2003 5:15 PM Subject: [PHP] question about GD and color

[PHP] problems getting GD to wrok properly

2003-01-24 Thread Philipp
=../apache-1.3.27 --with-mysql=/usr/local/mysql --with-zlib its hexed ! it always tells me: CreateImageFromJpeg in -lgd: no ! Perhaps someone can give me a brief installed if i did something wrong and perhaps a little recipe what he/she did to get it work. thanks alot, philipp -- PHP General

[PHP] 4.3.0 cpu load raise

2003-01-20 Thread Philipp
evaluate my atsar logs to verify my assumption, but i like to know if others experienced similar behavior on their webservers. Thank you very much, Philipp

Re: [PHP] dynamic variables in a while loop?

2003-01-15 Thread Philipp Hartmann
Thanks everyone! Works great! Phil - Original Message - From: "Rick Emery" <[EMAIL PROTECTED]> To: "Philipp Hartmann" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, January 15, 2003 2:03 PM Subject: Re: [PHP] dynamic variables in a

[PHP] dynamic variables in a while loop?

2003-01-15 Thread Philipp Hartmann
="yes"){ // this line produces an error... $counterYes += counterYes; } } [/CODE] Do I have to initialize all variables before I can use them in php? Thank you very, very much for your time and your help!! Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] flash and php (using the varibles)

2003-01-09 Thread Philipp Hartmann
I didnt test this, but something along the line should work [ActionScript] onEnterFrame = function{ i = dataYougetFromMySQL; if (i < max){ this._width = this._width * (i*factor) // factor can slow down or accelerate your animation } } [/ActionScript] hth, Philipp "- [ Paul Ferrie ] -&

[PHP] HTML email that generates "!"s - any ideas?

2003-01-08 Thread Philipp Hartmann
uld be really gratefull as I have to finish this but am stuck! :( Thans again, Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to echo the end marker '?>'

2002-11-08 Thread Philipp Bolliger
Hi everyone, subject's allready my question ! I want to echo something like : " \" >" so that the action becomes !! But I can't figure out how to escape ?> so that the interpreter doesn't take it as the end of the script ! Any idea ? cheers, phibo -- PHP General Mailing List (http://www.php.

Re: [PHP] join() , can do that fast?

2002-10-07 Thread Philipp Lutz
Read closely ! There are extra apostrophes inside the quotes !! Phil "Lallous" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > John, what you said would simply produce: >var x = ['str1,str2,str3'] > and not as I want: > var x = ['str1','str2','str3'

Re: [PHP] need help for a where clause

2002-10-07 Thread Philipp Lutz
If you are using MySQL you may want to look at the CASE statement in the "Control flow functions for use with SELECT Statements" it would look like SELECT CASE A.Afn WHEN 1 THEN B.Bfn1 WHEN 2 THEN B.Bfn2 WHEN 3 THEN B.Bfn3 FROM A,B IN MySQL Hope That Helps.. Phil "Alex S

[PHP] Linux DBG-GUI

2002-06-14 Thread Philipp Melab
I'm using SuSE 8.0 and i need a free GUI to use with DBG. yours Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Editor

2002-06-13 Thread Philipp Melab
I love emacs with php-mode.el. He's small, reliable, customizable and if you've ever worked with Komodo or Zend IDE you'll find out that he's damn fast. yours Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: php-speed

2002-06-13 Thread Philipp Melab
World!"; echo ""; echo ""; ?> funny, isn't it? yours, Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: php-speed

2002-06-13 Thread Philipp Melab
Yes Leon Mergen wrote: > > "Philipp Melab" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... >> - embedding PHP in HTML >> - or printing HTML via PHP > > With embedding PHP in HTML, do you mean using ser

[PHP] php-speed

2002-06-13 Thread Philipp Melab
I have a simple newbie question... Whats better (faster?): - embedding PHP in HTML - or printing HTML via PHP ...? yours Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] dbugging via DBG

2002-06-11 Thread Philipp Melab
Das anybody know a good tutorial which tells me how to install and use the DBG php-debugger? yours Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mysql_fetch_object in a class

2002-05-29 Thread Philipp Melab
array_push($this->children, $child); } } } } It seems like '$CHILDPOINT' was empty, because the new point is 'born' but all the vars in it are empty... yours Philipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] W98se, PWS 4.0, IE 5.5 php wird nicht interpretiert

2001-01-21 Thread Philipp Althaus
d:\windows\wwwroot doc_root = d:\windows\wwwroot user_dir = d:\programme\php extension_dir = d:\programme\php\extensions enable_dl = On [browscap] ;browscap = extra/browscap.ini browscap = d:\windows\system\inetsrv\browscap.ini wer weiss was falsch ist ? Danke für eine kurze Nachricht. freundlich grüsst Philipp