Re: [PHP] http benchmark tools

2003-03-04 Thread Tamas Arpad
Experimenting with it, thanks! Arpi > This is what I use -> > http://www.joedog.org/siege/index.shtml > > Tamas Arpad wrote: > >Hi, > >I'm searching for a good http benchmark tool. Of course I found some, but > >don't know them and don't

Re: [PHP] http benchmark tools

2003-03-04 Thread Tamas Arpad
On Tuesday 04 March 2003 17:43, Jason k Larson wrote: > How about Apache Bench? > > http://httpd.apache.org/docs/programs/ab.html It's really a cool program, but too simple. I need to simlute requests that are normally made by visitors, not just stress one url. For example: main page->click on a c

[PHP] http benchmark tools

2003-03-04 Thread Tamas Arpad
Hi, I'm searching for a good http benchmark tool. Of course I found some, but don't know them and don't know which one to choose. I found JMeter slow, in other aspects it would be perfect. Used httperf before, but I need more complicated test cases. I'd like to simulate visitors who first go to

[PHP] how fast is Vulcan Logic SRM and unix sockets

2003-02-22 Thread Tamas Arpad
Hi, The question is mainly for the developers of SRM, but I'm sure there are others who use it. I'm implementing a caching method where cached data is stored in hashes. Now it works with file storage, files' names are the keys and the values are stored in within the files. I'm considering making

Re: [PHP] Vulvan Logic SRM - does anyone use it?

2003-02-10 Thread Tamas Arpad
On Monday 10 February 2003 16:03, Derick Rethans wrote: > On 10 Feb 2003, Tamas Arpad wrote: > > I'm thinking about using SRM application server for storing cached data. > > But I have to convince my customers that it's stable enough and is ready > > to use in pr

[PHP] Vulvan Logic SRM - does anyone use it?

2003-02-10 Thread Tamas Arpad
Hi, I'm thinking about using SRM application server for storing cached data. But I have to convince my customers that it's stable enough and is ready to use in production environment. Is it considered stable enough to use in such applications? As I see it hasn't been maintained for at least half

Re: [PHP] Re: Persistent global data ?

2003-01-14 Thread Tamas Arpad
> So this is the only way I guess ... > > Do you propose to serialize() the objects in the tree and write that data > into a shared memory block, and then deserialize them at the beginning of > each script that needs the data back into objects ? I would think that that > would impose the same perfo

Re: [PHP] session_destroy problem

2003-01-14 Thread Tamas Arpad
On Monday 13 January 2003 18:09, Scott Fletcher wrote: > It's no problem. We're all very interesting in finding out what can work. > > Maybe I can help with one of this problem. The Gecko browser does have the > option of blocking the opening of hte unrequest window which is maybe why > yours doe

Re: [PHP] session_destroy problem

2003-01-13 Thread Tamas Arpad
On Monday 13 January 2003 15:14, Scott Fletcher wrote: > Let us know how it goes... The unload event had been tried also. The > javascript have been running for a while but the network communication is a > bit tricky, it haven't worked well. Sorry, maybe I missed or forgot the original problem. I

Re: [PHP] session_destroy problem

2003-01-10 Thread Tamas Arpad
On Friday 10 January 2003 17:39, Scott Fletcher wrote: > > Javascript has a function for performing actions on window close > That would work only if the webserver IP address is '127.0.0.1' (local > machine), but not any other IP address. Because of the ACK synchrious > communication that get

Re: [PHP] How to detect a PHP script time-out?

2003-01-09 Thread Tamas Arpad
> Cool! I just tested it out and it works. At lest under PHP 4.3.0 and > Apache 1.3.26. > > But according to the bug report this functionality may change in the > future and a new function apache_register_shutdown() might replace the > current one ... > > The current functionality is *not* what is

Re: [PHP] How to detect a PHP script time-out?

2003-01-08 Thread Tamas Arpad
On Wednesday 08 January 2003 06:42, Jean-Christian Imbeault wrote: > Timothy Hitchens ) wrote: > > Issue... as I said before the register shutdown won't work because: > > > > - output from the shutdown is not visible nor do you have access to some > > variables > > You are right. From the manual: >

Re: [PHP] Keeping "Secrets" in PHP Files

2002-07-01 Thread Tamas Arpad
On Sunday 30 June 2002 09:52, Justin French wrote: > on 29/06/02 3:20 AM, Tamas Arpad ([EMAIL PROTECTED]) wrote: > >> I was thinking if you use 90 character long filenames, assuming you > >> only use the letters of the alphabet and the digits then you would > >>

Re: [PHP] changed behavior of shutdown-registered function in 4.0.x->4.1.x (conn. handling)

2002-06-03 Thread Tamas Arpad
Hi again, Joseph answered this on the dev list (http://lists.php.net/article.php?group=php.dev&article=84800), thanks. Arpi On Monday 03 June 2002 17:57, you wrote: > Hi, > I use register_shutdown_function to regenerate my content-cache's > data after the old page were sent. In 4.0.6 t

[PHP] changed behavior of shutdown-registered function in 4.0.x->4.1.x (conn. handling)

2002-06-03 Thread Tamas Arpad
Hi, I use register_shutdown_function to regenerate my content-cache's data after the old page were sent. In 4.0.6 there was no problem with it, the connection was closed after the normal script is finished, and before the shutdown_registered function is started (which does the real work). So I

Re: [PHP] register_shutdown_function vs require (with pseudocode example)

2002-02-19 Thread Tamas Arpad
Hi again, I read my email back and found a little hard to understand :)), so I thought a code exmplae might help. It's just pseudo code for explaining how my cache works: //simplified "main" code if page is in cache { deliver the old one register_shutdown_function("regenerate")

Re: [PHP] PHP Doesn't Crash but show blank page

2002-01-03 Thread Tamas Arpad
> I'm having issues with my php pages. When I have errors, Instead of > crashing or showing errors, the browser shows a blank page. > PHP does not report the error. > My php.ini is configured as > error_reporting = > E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR|E_USER_ERROR|E_USER_WARNING|E_ >USER_NOTICE

Re: [PHP] RE: nested includes

2002-01-03 Thread Tamas Arpad
On Thursday 03 January 2002 13:36, Tim Ward wrote: > Include will act relative to the path of the script not the > included file that the include is in. > > If you have an include in a file which is itself included and which > isn't always called from files in the same directory you need to > make

Re: [PHP] Including files & variables ...

2002-01-03 Thread Tamas Arpad
On Wednesday 02 January 2002 20:43, you wrote: > What you need to do is simply set the variables before you include > the script. > > When you include a script with include() or require(), they fall > into the same namespace as the include() or require() function that > called them. I read that in

Re: [PHP] redirect

2001-12-13 Thread Tamas Arpad
> I have a small problem i come from a link in html page witch gives > an numbet to php (contact.php?nummer=2) > and in the script i use a redirec to a other php script but i can't > give that number to then next script i do it like this: > $url = sprintf("http://www.test.com/contact1.php?num=%",$

Re: [PHP] Objects and sessions

2001-11-27 Thread Tamas Arpad
On Monday 26 November 2001 23:37, Christopher William Wesley wrote: > On Mon, 26 Nov 2001, Greg Sidelinger wrote: > > Can someone tell me how to store a class in a session var. I > > want to > > There are several things you need to do. > > 1) include the class definition before you do anything >

Re: [PHP] Objects and sessions

2001-11-26 Thread Tamas Arpad
> later on I get errors about the class functions being undefined. > Can anyone please point me in the right direction on how to > register my objects as session vars. Class definition *must* be before any session_start() or sessgion_register() if there are previously stored objects in the se

Re: [PHP] Re: how can I get the post content in php

2001-11-15 Thread Tamas Arpad
I think I saw on this list that there's a $HTTP_RAW_POST_DATA (or similar) varibale. Sorry the net is slow like hell at work, I can't search for more info. But I think if you search for "raw" on the general mailing list's archive you will find it. Arpi > XML file is text file. If I op

Re: [PHP] Re: Login/Security Problem

2001-11-14 Thread Tamas Arpad
On Wednesday 14 November 2001 14:58, you wrote: I think mixing of the web application's and the host's operating system's authantication is not the best thing (if you don't exactly need that) The $isLogged variable that is stored in the session is perfect as long as you check that it is came f

Re: [PHP] Re: Weird caching problem with PHP4/Apache -- THE SAGA CONTINUES

2001-10-31 Thread Tamas Arpad
I look > at these EXACT SAME pages on Fatcow (Linux/Apache, I believe, > PHP4...), the randbg() function executes the first time, then > [seemingly] fails to execute again--it never generates a different, > random bakground. (Or maybe I'm looking at one hell of a > coincidenc

Re: [PHP] Re: Weird caching problem with PHP4/Apache

2001-10-31 Thread Tamas Arpad
On Wednesday 31 October 2001 14:48, René Fournier wrote: > Nope, unfortunately, nothing. It's a really weird problem. It's > like the PHP function I wrote for generating the random image will > only work the first time. I think it is not php that caches it. As I undertsand you wrote a script th

Re: [PHP] Re: Error: Can't redeclare already declared function (PHP 3.0.15)

2001-10-27 Thread Tamas Arpad
> Unfortunately, you can't include FUNCTION() conditionaly (well, you > can, but then you can't use it out of this if():). Why only such > dumn restriction, PHP developers? I think it's only true for php3 I use many many class definitions in php4 that are inluded conditionally in another classes

Re: [PHP] how do i give optional arguments to functions??

2001-10-24 Thread Tamas Arpad
On Wednesday 24 October 2001 19:26, Richard S. Crawford wrote: > Hm, is the default attribute necessary? I've used this sort of > approach without the default attribute just fine in the past. > Though I admit that the default attribute would make me feel more > secure. Not really necessary, but

Re: [PHP] libxml

2001-10-24 Thread Tamas Arpad
On Wednesday 24 October 2001 11:38, php wrote: > Firstly, > I use php 4.0.5 and libxml 2.3.9 on several machines without any problem. Older php and libxml combinations however caused many segmentation faults, especially with not well-formatted xmls. Are you sure that you warning message is rel

Re: [PHP] PHP with XML

2001-10-24 Thread Tamas Arpad
On Tuesday 23 October 2001 21:17, Vinicius Tavares wrote: > What I have to do to make the PHP4 run the DOM XML??? Download the libxml library (the development packages too, if you download the packaged distrib). And compile php with it (--with-dom switch for configure). http://www.xmlsoft.org

Re: [PHP] Enabling php in only certain hosts and directories

2001-10-24 Thread Tamas Arpad
On Wednesday 24 October 2001 08:19, you wrote: > Well, php runs the same as apache, so whatever apache can access, > php can access. > So any files with the db passwords that need to be accessed by php, > can be seen by all users who can upload php scripts to your server. That's not completely tru

Re: [PHP] XML: Expat or DOM?

2001-10-20 Thread Tamas Arpad
On Saturday 20 October 2001 02:35, you wrote: > Hi guys, > > Also, is it really risky to develop in DOM, considering the module > is experimental, and in theory it could change ? We are working with dom for about a year. Our project depends on it, so I hope it won't change much :)) By the way we

Re: [PHP] need help with safe mode and Restrict where PHP is Usable?

2001-10-03 Thread Tamas Arpad
Hi, Both problems can be solved with php directives in httpd.conf or in .htaccess. You can just put php_value safe_mode "off" or php_value engine "off" into definitions in httpd.conf to restrict only for some directories or into for virtual servers. (Of course in htaccsess you can only restr

Re: [PHP] Getting the file size, wtihout download... is this possible ?

2001-09-26 Thread Tamas Arpad
Hi, HTTP has a method called HEAD, that is for example can be used for exmample to get the requested files' size if the other web server/php script supplies it. So all you have to do is to make a connection to the other web server, give a HEAD request (it is almost the same as GET), and parse the

Re: [PHP] Can I rely on session.gc_maxlifetime?

2001-09-25 Thread Tamas Arpad
On Tuesday 25 September 2001 16:19, Johnson, Kirk wrote: > > So, no matter if the user is still working, the session will be > > destroyed. I mean session.gc_maxlifetime isn't > > session.gc_maxIDLEtime? > > Every time the user requests a page in an application using > sessions, the session file's

Re: [PHP] Can I rely on session.gc_maxlifetime?

2001-09-25 Thread Tamas Arpad
On Tuesday 25 September 2001 14:27, Andrey Hristov wrote: > New SESSID will be generated because the old expired and because > all rely on the SESSID which is the "hash key" to the data no > previous data will be available. So, no matter if the user is still working, the session will be destroyed

Re: [PHP] Sessions just don't work on my machine. (Trying this ag ain)

2001-09-25 Thread Tamas Arpad
On Monday 24 September 2001 21:23, Thomas Deliduka wrote: > I just tried this here below. Before trying this I changed any > called to $PHPSESSID to session_id(). > > I turned off cookies > Loaded the page... Created session id and file: > sess_44074d3a54862b480c3407c9eb373f77 > Contents: var1|s:8

Re: [PHP] Sessions just don't work on my machine. (Trying this ag ain)

2001-09-24 Thread Tamas Arpad
On Monday 24 September 2001 18:39, Thomas Deliduka wrote: > On 9/24/2001 12:32 PM this was written: > >> After reloading IE on the PC now the SID constant doesn't > >> echo anything at > >> all. > > > > SID is always defined on the first page request. It is only > > defined on later page requests

Re: [PHP] Sessions just don't work on my machine. (Trying this ag ain)

2001-09-24 Thread Tamas Arpad
On Monday 24 September 2001 18:51, Thomas Deliduka wrote: > I'm finding my script on www.fromtheduke.com/session/ still doesn't > work even with the in the link or passing it along in the > form. Please send us your latest code again, then we can help you, not just guessing what you've might don

Re: [PHP] Sessions just don't work on my machine. (Trying this again)

2001-09-24 Thread Tamas Arpad
On Monday 24 September 2001 18:20, Thomas Deliduka wrote: > On 9/24/2001 12:22 PM this was written: > > Try to use constant SID, maybe that will work, and it is more > > likely that it will work on other intallations with other session > > variable names. > > I just tried using SID in my index.php

Re: [PHP] help: form fields have CR/LF on submit

2001-09-21 Thread Tamas Arpad
On Friday 21 September 2001 17:17, Patrick Sibenaler wrote: > I submit a form with multipart/form-data, where a field 'name' > contains let's say 'john'. On submit, I do get the expected global > $name -variable but the content has a CR/LF or /n character in > front of the actual content, like: Hi

Re: [PHP] help: form variables have CR/LF ?

2001-09-21 Thread Tamas Arpad
On Friday 21 September 2001 16:27, you wrote: > Does anyone know what is going wrong, when all of a sudden, the > content of PHP global variables that are generated from a POSTED > form, have a CR/LF prepended? It happens to me when I'm using Konqueror and multipart/form-data enctype in forms (be

Re: [PHP] parent::mymethod() call $this->mymethod() bug?

2001-09-21 Thread Tamas Arpad
On Friday 21 September 2001 15:15, Jean-Pierre Arneodo wrote: > Hi! > something looks strange for me. > Why the method Fils::x is called? > class Fils extends Pere { > function Fils(){ > echo "Fils::Fils called"; > $this->Pere(); > } > function x(){ >

Re: [PHP] codes in php for going back to previous page

2001-09-21 Thread Tamas Arpad
On Thursday 20 September 2001 21:36, Wee Chua wrote: > Hi all, > I know how to forward a page with PHP, but what if the page I want > to forward is the previous page or last page. In javascript, the > code is like javascript:historygo(-1). The reason why I want to go > back to previous page is bec

Re: [PHP] Modularity--Optimizing Includes and Libs

2001-09-20 Thread Tamas Arpad
Hi, I have the same problem. We have a fairly complex and huge system with many functions/features in it with 1,6Mb of plain php code (without desing). For page generation usually one half (or third maybe) of the code is needed. I found that php parses and complies the code in 0.6secs (withou

Re: [PHP] Getting IP address

2001-09-19 Thread Tamas Arpad
On Wednesday 19 September 2001 13:13, Jon Haworth wrote: > A better version would be: > > if (getenv(HTTP_X_FORWARDED_FOR)) { > > $ip=getenv(HTTP_X_FORWARDED_FOR); > } else { > $ip=getenv(REMOTE_ADDR); > } > > This checks for proxy forwarding as well, if you just use > REMOTE_ADDR you