Re: [PHP] list of countries

2006-11-07 Thread rouvas
On Tuesday 07 November 2006 19:58, Robert Cummings wrote: > On Tue, 2006-11-07 at 12:40 -0500, James Tu wrote: > > Does anyone have a list of countries in a handy format for importing > > into MySQL? I just really need a list. Wikipedia has a nice list, > > but it's muddled by HTML tags. Goto: h

Re: [PHP] PHP suddenly stops working on FreeBSD

2006-05-10 Thread rouvas
On Wednesday 10 May 2006 16:58, Paul Waring wrote: > I restarted Apache this morning in order to allow some new virtual > hosts to be recognised, and now I've got a problem whereby all of my > PHP scripts are being served up as source code instead of being > executed by the web server. I don't know

Re: [PHP] problem with greek language

2006-04-04 Thread rouvas
lem is thath I can't put directly into code the greek text > with copy/paste from the .doc file in the PHP editor. I chahged the > encoding for the editor to greek charset, but when I paste it, the > result is "??? " ( questiomarks ) . > > rouvas wrote: > &g

Re: [PHP] problem with greek language

2006-04-04 Thread rouvas
Hi Rosen, either use ISO-8859-7 for the encoding or UTF-8. If you use ISO-8859-7 your site will not need any modifications (either than replacing the "&tau, ..., etc" symbols with the actual characters). If you use UTF-8 you will of course have to modify your strings to make them UTF-8 compatib

Re: [PHP] Perl style

2005-10-26 Thread rouvas
Simpler(?) approach: $element5 = current(array_splice(split(',',$csvstring),5,1)); This is fun! -Stathis On Wednesday 26 October 2005 17:08, Jochem Maas wrote: > Sψren Schimkat wrote: > > Hi guys > > > > I would like to convert this .. > > > > > > $tmparray = split(',', $csvstring); > > don't u

Re: [PHP] exec command fails in php, works in the command line

2005-09-21 Thread rouvas
I am assuming that you get hold of the file through uploading it, correct? So, when it fails maybe another upload (i.e. script invocation) is happening and the previous file gets lost/corrupted/whatever. Try to move the file to another dir (maybe /tmp) with a random name and see what happens. An

Re: [PHP] Question about apache-php concurrent process control

2005-07-16 Thread rouvas
Hi Liang, trying to get conclusive results with browsers is futile. Use a command-line tool (like curl) to invoke the web pages and get the results. Or you can use PHP's own function to query the web server and do your own timing with microtime() function or another suitable for your purposes.

Re: [PHP] XSL:FO + PHP

2005-05-05 Thread rouvas
On Wednesday 04 May 2005 22:30, Dan Rossi wrote: > On 05/05/2005, at 1:47 AM, Kristen G. Thorson wrote: > > Dan, > > > > I have done this before, but it was only a proof-of concept excercise > > for me, so my procedure may not work for you. My test was against an > > Amazon web service and generat

Re: [PHP] Delivering large files via PHP (>300MB)

2004-12-13 Thread rouvas
On Tuesday 14 December 2004 15:53, Richard Davey wrote: > Hello rouvas, > > Tuesday, December 14, 2004, 1:33:07 PM, you wrote: > > r> Why don't you take the PHP out of the loop entirely? > r> Make a dir into the Apache area with a custom .htaccess > r> (with us

Re: [PHP] Delivering large files via PHP (>300MB)

2004-12-13 Thread rouvas
[...snip...] > RL> always see when you install software. > > That would lock us into a platform specific environment too :) You > don't run an Install Shield web delivery system by executing the setup > file on a Mac just because you're at work and can burn it to CD :) I > was more interested in c

Re: [PHP] html parser tutorial

2004-12-07 Thread rouvas
On Tuesday 07 December 2004 19:09, Ahmed Abdel-Aliem wrote: > Doesn anyone plz knows a good tutorial for parsing html files ? > i have a html page and i want to parse information from it to insert > it into mysql. Check out: http://0x00.org/php/phpHTMLparse/index.php -Stathis -- PHP General Mai

Re: [PHP] mail() issue...

2004-11-19 Thread rouvas
Start sendmail with appropriate params to queue messages and not send them immediately. That way, sendmail will immediately accept the message and your script will be freed. sendmail will process the message shortly without delaying you. -Stathis On Thursday 18 November 2004 21:34, Scott Fletc

Re: [PHP] what PHP really needs

2004-01-25 Thread rouvas
On Friday 23 January 2004 22:33, John W. Holmes wrote: > From: "Chris Boget" <[EMAIL PROTECTED]> > > > >>[snip] > > >> > > >>[/snip] > > > > > >Learn and use C++ > > > > Or sessions. > > Along with serialize() and deserialize(), all are your friends in this > > case. > > He's talking about the

Re: [PHP] Outlinin block of code

2003-11-26 Thread rouvas
On Wednesday 26 November 2003 20:23, Burhan Khalid wrote: > Uros wrote: > > Hello! > > > > Anybody know any good PHP ide with support of code outlining like Visual > > .NET. vim 6.xx can do it -Stathis > > > > On the left side where are usualy line numbers is "+" and you can group > > functions,

Re: [PHP] Re: Using register_globals

2003-06-05 Thread Rouvas Stathis
Armand Turpel wrote: > > > On Wed, 4 Jun 2003, Jay Blanchard wrote: > > > [snip] > > > Have register globals set to ON is one way of leaving your script open > > > to being exploitable. > > > [/snip] > > > > > > Please explain this, how does it make it more exploitable? I think that > > > this is

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Rouvas Stathis
rding this issue? > > ---John Holmes... > > ----- Original Message - > From: "Rouvas Stathis" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: "1LT John W. Holmes" <[EMAIL PROTECTED]> > Sent: Monday, October 07, 2002 2:00 PM >

Re: [PHP] File download doesn't work with SSL

2002-10-07 Thread Rouvas Stathis
are just regular HTML tables. If there is a > > export2=excel in the URL, then these two additional headers will be sent. > > The dialog to save/open the file pops up, but when you try to open/save the > > file, IE says it cannot be found. If I put in a echo before these two > > headers (or comment them out), the page is shown correctly as HTML, so the > > code is correct. > > > > > > > > Are there any special headers I have to send to enable this file > > download while under SSL, or is it something else I'm overlooking? > > > > > > > > Thanks for any help. > > > > > > > > ---John Holmes... > > > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- Rouvas Stathis [EMAIL PROTECTED] http://www.di.uoa.gr/~rouvas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Need a Linux Guru!

2002-09-08 Thread Rouvas Stathis
nikationsplattform im Internet. > http://www.gmx.net > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php -- Rouvas Stathis [EMAIL PROTECTED] http://www.di.uoa.gr/~rouvas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP Security Advisory: Vulnerability in PHP versions 4.2.0 and 4.2.1

2002-07-22 Thread Rouvas Stathis
Hi all, Just wanting to notify everyone that the link for the PHP.4.2.2 download is broken. -Stathis. -- Rouvas Stathis [EMAIL PROTECTED] http://www.di.uoa.gr/~rouvas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] base64_encode

2002-06-27 Thread Rouvas Stathis
t; >>-- > >>Gerard Samuel > >>http://www.trini0.org:81/ > >>http://dev.trini0.org:81/ > >> > >> > >> > >>-- > >>PHP General Mailing List (http://www.php.net/) > >>To unsubscribe, visit: http://www.php.net/unsub.php > >>

Re: [PHP] Re: SQL question, getting error and not sure why

2002-05-30 Thread Rouvas Stathis
gestion on a different way of doing what I want to do? > Should be easy but i;m starting to get a headache from this (6-7 years not > doing SQL doesn't help either) > -- Rouvas Stathis [EMAIL PROTECTED] http://www.di.uoa.gr/~rouvas -- PHP General Mailing List (http://www.php.net/) T

Re: [PHP] The so-called improvment in PHP 4.2.0

2002-04-23 Thread Rouvas Stathis
Miguel Cruz wrote: > > On Tue, 23 Apr 2002, Rouvas Stathis wrote: > >Miguel Cruz wrote: > >> > >> On Mon, 22 Apr 2002, Leif K-Brooks wrote: > >>> I use $formvar for form processing, I don't use the arrays. This is how I > >>> was taugh

Re: [PHP] The so-called improvment in PHP 4.2.0

2002-04-23 Thread Rouvas Stathis
Erik Price wrote: > > On Tuesday, April 23, 2002, at 06:48 AM, Rouvas Stathis wrote: > > >> This change improves your security, so it'd be rational to be happy > >> about > >> it. > > > > No it doesn't. It just provides another

Re: [PHP] The so-called improvment in PHP 4.2.0

2002-04-23 Thread Rouvas Stathis
Miguel Cruz wrote: > > On Mon, 22 Apr 2002, Leif K-Brooks wrote: > > I use $formvar for form processing, I don't use the arrays. This is how I > > was taught to do it. If my host upgrades to 4.2.0, my website is as good as > > gone! What am I supposed to do?! > > Fix them! This direction was

Re: [PHP] Has anyone written such a function?

2002-03-31 Thread Rouvas Stathis
See attached file. -Stathis. Boaz Yahav wrote: > > Hi > > I need a function that will get a date in the past and return how much > time has passed since that date till now. > The input to the function is a MySQL DATETIME format and the output > should be something like : > > 2 Years, 36 Days,

Re: [PHP] where i get .so [dll] file of linux ?

2002-03-29 Thread Rouvas Stathis
edting of php.in and recompling the apache ??? > > Now what i can do ? > > Prachait > - Original Message - > From: Rouvas Stathis <[EMAIL PROTECTED]> > Newsgroups: php.general > Cc: <[EMAIL PROTECTED]> > Sent: Friday, March 29, 2002 6:34 PM

Re: [PHP] where i get .so [dll] file of linux ?

2002-03-29 Thread Rouvas Stathis
n your php.ini. You don't have to recompile PHP. -Rasmus -Stathis Prachait Saxena wrote: > > Hello > But i would like to ues that modules that are not complied wit PHP > > i mean dynamic inclusion of modules... Is that possible ? > > Prachait > > - Origin

Re: [PHP] Loading Images

2002-03-28 Thread Rouvas Stathis
.gr/~rouvas/giflib.php> to see what happened to me! tested only on linux. Kevin Stone wrote: > > Huh.. hmm.. maybe this is possible after all. I'll have to test that > out when I get home. If it works it could sure save me a headache or > two. > > By the way most counter

Re: [PHP] where i get .so [dll] file of linux ?

2002-03-28 Thread Rouvas Stathis
Prachait Saxena wrote: > > Hello > > I would like to Know, where Site or Link i can get complied .so [dll] files. > of linux > > as i have php_sockets.dll which works very fine in Windows enviroment. but > on linux > > Can you suggest any other option for this. > > I am using dl("php_soc

Re: [PHP] if command

2002-01-28 Thread Rouvas Stathis
> Someone knows how to use the IF command ? > > I need two expressions as such as IF (exp1 AND exp2) ... > > > computer programmer ^ A "computer programmer" not knowing the "IF command"? Really, what computer do you program? -Stathis. PS: Sorry, I just can't resist. It's

Re: [PHP] Suggestions for the next php

2001-12-21 Thread Rouvas Stathis
Manuel Lemos wrote: > > > > For example, multi-threading. Looking at the PHP sources, I can see this > > > would be fairly easy to implement on some most server modules. Before I > > > get fried by people for suggesting this, I know there are many functions > > > that are not thread safe, such th

Re: [PHP] Need PHP 4.0.3pl1

2001-12-13 Thread Rouvas Stathis
For the linux version, go to: http://glaykos.mm.di.uoa.gr/~rouvas/tmp/inet/linux/php/php-4.0.3pl1-orig.tar.gz> -Stathis. Gaylen Fraley wrote: > > This build is not on php.net. I need both the linux source and the windows > binary for testing. Does anyone know where I can

Re: [PHP] Shell scripting

2001-12-10 Thread Rouvas Stathis
Start php with -q, eg: php -q script.php -Stathis. Dan McCullough wrote: > > I am setting up a shell script to provide a menu for some tasks that our server >admin would like > to do via script rather then vi'ing the file, now I am almost finished but I would >like to get rid > of this ugly p

Re: [PHP] WDDX

2001-12-08 Thread Rouvas Stathis
Browsers discard whatever tags they don't understand. They don't grok WDDX tags, so only the string is displayed. View source and it all should be there. -Stathis. con pulpa wrote: > > Hi EVERYONE! > > I'm running RH7.1 with PHP version 4.04pl1 and > Apache1.3.19-5. A simple php script > tell

Re: [PHP] screen resolution

2001-09-30 Thread Rouvas Stathis
Search the archives for the following e-mail : Subject: RE: [PHP3] Checking screen resolution and/or window size Date: Wed, 23 Feb 2000 09:54:05 -0500 From: "Michael Geier" <[EMAIL PROTECTED]> I think this will cover your questions. -Stathis. Nikola Veber wrote: > > Hi ! > > I would like

Re: [PHP] WDDX and binary data

2001-09-15 Thread Rouvas Stathis
Try base64_(en|de)code. -Stathis. Christopher Heschong wrote: > > Despite the fact that PHP's WDDX functions don't support a "binary" type, > most binary data comes through just fine, and in fact, the WDDX serialize > function can encode certain types of binary data, such as a null > character:

Re: [PHP] Statement Confusion

2001-09-06 Thread Rouvas Stathis
Jordan Elver wrote: > > Hi, > Could any one explain what this statemnt means? > > $i = (!$i)?"0":$i; if (!$i) then $i = "0"; else $i = $i; -Stathis > > Thanks, > > Jord > > -- > Jordan Elver > Web Developer > The InternetOne UK Ltd > > -- > PHP General Mailing List (http://www.php.net

Re: [PHP] Sorry... but a good PHP editor for Linux/Unix

2001-08-01 Thread Rouvas Stathis
Try vim instead of vi. -Stathis. Ben Bleything wrote: > > I can't speak for terminal usage... I use pico and or vi... pico on > console, vi over ssh. > > When working locally, I use nedit (www.nedit.org) on *nix (with custom > PHP syntax highlighting) and EditPlus on windows. > > Good luck, >

Re: [PHP] Ocifreestatement() and shared memory error?

2001-07-19 Thread Rouvas Stathis
Michael Champagne wrote: > > We recently ran into Oracle error ORA-04031 which has something to do with > your shared memory being filled up or thrashed (I'm not a DBA so I'm vague on > this.) I noticed that a lot of the PHP code on the site is not using > ocifreestatement() or ocilogoff() after

Re: AW: [PHP] Oracle question

2001-07-10 Thread Rouvas Stathis
PL/SQL code for an Oracle trigger that will auto-increment specified field: create or replace trigger before insert on for each row begin if :new. is null then select .nextval into :new. from dual; end if; end; You have to create a sequence first. Example: CREATE SEQUENCE

Re: [PHP] Patch for PHP 4.0.6 memory limit problem posted

2001-07-02 Thread Rouvas Stathis
> > This is the official PHP 4.0.6 version. After line 448 insert: > > #if MEMORY_LIMIT > AG(allocated_memory) -= REAL_SIZE(ptr->size); > #endif > > If you'll take a good look at the diff file the first half is what you're > supposed to have and the second half i

Re: [PHP] Patch for PHP 4.0.6 memory limit problem posted

2001-07-01 Thread Rouvas Stathis
Andi Gutmans wrote: > > At 10:17 PM 7/1/2001 +0300, Rouvas Stathis wrote: > >It is indeed strange, since in the sources I have (downloaded about a > >week ago), I already have the exact source that the patch presents > >(without the lines prefixed with +). > &g

Re: [PHP] Patch for PHP 4.0.6 memory limit problem posted

2001-07-01 Thread Rouvas Stathis
Andi Gutmans wrote: > > Very strange. I just checked it and it worked for me with GNU patch 2.5. > Do you know how to apply it yourself? You just need to add those three > lines (without the leading +). > > Andi > > At 07:48 PM 7/1/2001 +0300, Rouvas Stathis wrote: &g

Re: [PHP] Patch for PHP 4.0.6 memory limit problem posted

2001-07-01 Thread Rouvas Stathis
Patch cannot be successfully applied. Any suggestions ? Output from patch application: rouvas@aspasia(12) /opt/ide2/rouvas/tmp/php-4.0.6/Zend >patch -i patch.zend_alloc.c patching file zend_alloc.c Hunk #1 FAILED at 446. 1 out of 1 hunk FAILED -- saving rejects to file zend_alloc.c.rej rou

Re: [PHP] --with-zlib/--with-zlib-dir and --enable-xslt

2001-06-28 Thread Rouvas Stathis
Richard Lynch wrote: > > > Been trying to compile PHP.4.0.6 with --with-zlib directive and failing. > > Using --with-zlib-dir, however succeeds. > > > > Does anyone knows the difference between the two ? > > --with-zlib-dir works and --with-zlib doesn't? > :-) :-) :-) > > If you got it to work,

[PHP] --with-zlib/--with-zlib-dir and --enable-xslt

2001-06-26 Thread Rouvas Stathis
Hi, Been trying to compile PHP.4.0.6 with --with-zlib directive and failing. Using --with-zlib-dir, however succeeds. Does anyone knows the difference between the two ? Also, in a related problem, if I try with --enable-xslt I get the following results: checking for XML support... yes checking

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-25 Thread Rouvas Stathis
"Thies C. Arntzen" wrote: > > On Sun, Jun 24, 2001 at 09:50:05PM +0300, Rouvas Stathis wrote: > > "Thies C. Arntzen" wrote: > > > > > > On Fri, Jun 22, 2001 at 09:16:08PM +0300, Rouvas Stathis wrote: > > > > Do you experience any ot

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-24 Thread Rouvas Stathis
"Thies C. Arntzen" wrote: > > On Fri, Jun 22, 2001 at 09:16:08PM +0300, Rouvas Stathis wrote: > > Do you experience any other sort of problems other than those warnings? > > I mean, is anything wrong with the data? Normally, nothing should be > > wrong. >

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-22 Thread Rouvas Stathis
Do you experience any other sort of problems other than those warnings? I mean, is anything wrong with the data? Normally, nothing should be wrong. I have seen the same messages (especially the "service handle not intitialized" one) in my server too. I have traced it to attemtps to close an alrea

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-22 Thread Rouvas Stathis
"Thies C. Arntzen" wrote: > > On Fri, Jun 22, 2001 at 02:47:39AM +0300, Rouvas Stathis wrote: > > "Thies C. Arntzen" wrote: > > > please send me a "minimal" testcase that shows this > > > behaviour! i'll look into that th

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-22 Thread Rouvas Stathis
below for my comments on your other points. "Thies C. Arntzen" wrote: > > On Thu, Jun 21, 2001 at 09:32:31PM +0300, Rouvas Stathis wrote: > > "Thies C. Arntzen" wrote: > > > > > > On Thu, Jun 21, 2001 at 03:19:09PM +0300, Rouvas Stathis wrote: >

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-21 Thread Rouvas Stathis
00 - RAM:384MB - HD:IDE Test case (PHP script) This code is typical of the way I handle connections to Oracle (except that I use OciLogon instead of OciPLogon) The above code runs in a separate window ("test-w") using the following command: ab -n 1000 -c 50 http://aspasia.mm.di.uoa.g

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-21 Thread Rouvas Stathis
"Thies C. Arntzen" wrote: > > On Thu, Jun 21, 2001 at 03:19:09PM +0300, Rouvas Stathis wrote: > > > > Unfortunately, you are not doing anything wrong. > > Persistent connections and PHP/Ora do not play well with each other. > > ??? - please elaborate.

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-21 Thread Rouvas Stathis
Confuser wrote: > > I understand that OCIPLogon creates a persitant connection to the Oracle DB, > to improve > performance... And I must say it does ! > > However, since OCILogoff is best not used with a persitant logon (and in the > latest versions, > it doesn't do anything anyway)... How will

Re: [PHP] multiselects and arrays

2001-05-11 Thread Rouvas Stathis
window.doucment.forms[0].elements[2] -Stathis. elias wrote: > > How can i access names with '[]' w/o eval() or seeking in form's element? > > -elias > > "Rouvas Stathis" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">ne

Re: [PHP] multiselects and arrays

2001-05-10 Thread Rouvas Stathis
Actually, you *can* use brackets ([]) in names and javascript can handle them just fine. -Stathis. Max Vysotskiy wrote: > > Hi. > Why doesn't PHP convert mutiselect values with plain names (not array-like) > to arrays. Is there any reason to not doing this? > > Example: > I have a page with mul

Re: [PHP] passing parameters in the url using forward slashes

2001-05-09 Thread Rouvas Stathis
The Wise Man Said: Subject: RE: [PHP3] URL without a classic php filename like php, php3, phtml? Date: Tue, 11 Apr 2000 12:54:35 MST From: [EMAIL PROTECTED] To: "Michael Simcich" <[EMAIL PROTECTED]>, [EMAIL PROTECTED] Addressed to: "Michae

Re: [PHP] Apache/PHP4/SSL, downloads fail with IE 5.5 only when using sessions

2001-05-05 Thread Rouvas Stathis
Goto SquirrelMail and search for the "Infamous IE with SSL bug" (their wording). If I remember correctly it has to do with IE not implementing correctly HTTP/1.1 protocol (so you have to switch to HTTP/1.0 whenever an IE browser hits you) and something about the cach

Re: [PHP] array speed

2001-04-05 Thread Rouvas Stathis
I wouldn't worry about that. Although it all depends by what do you mean by "speed":-) Anyway, you can always test your page with "ab" (part of the Apache installation, at least on Linux) -Stathis. Kurth Bemis wrote: > > i'm concerned about the speed at which httpd (with php4.0.1pl1 compiles in

Re: [PHP] PHP SITE REDESIGN - What happened to older source files?

2001-03-31 Thread Rouvas Stathis
I keep a copy of php.4.0.3.pl1 at http://glaykos.mm.di.uoa.gr/~rouvas/tmp/inet/linux/php/> Both the original version I downloaded as well as a version with the bc-lib and conf files for SuSE exist. -Stathis. James Moore wrote: > > > I need an older version of PHP because my pa

Re: [PHP] PHP Web-based server-side mail client

2001-03-20 Thread Rouvas Stathis
Check SquirelMail (I'm propably spelling it wrong) on freshmeat.net -Stathis. Steven Katz wrote: > > I'm looking for a PHP web-based POP/IMAP mail client to install on my > RH7 machine. Anyone know of any with really good looking interfaces? > I found a few that I like, but they're CGI, and com

Re: [PHP] PHP and Oracle Zombie processes

2001-03-14 Thread Rouvas Stathis
If you don't see --enable-sigchild in phpinfo() then : (a) you are not running the version you compiled (b) your config script had something wrong. Baseline: if you don't see it, it's not there. You have to recompile. -Stathis. Bob Kakalec wrote: > > When I execute an sql statement against my O

Re: [PHP] PHP & Apache with SSL

2001-03-11 Thread Rouvas Stathis
In .htaccess use SSLRequireSSL for AuthType Config and redirect to https using ErrorDocument. Example for www.foo.goo/sec .htacess AuthType Config SSLRequireSSL ErrorDocument 403 https://www.foo.goo/sec Options -Indexes Options directive is not neccessary but I assume that if yo

Re: [PHP] Announcing PHP-GTK

2001-03-01 Thread Rouvas Stathis
Great News! -Stathis. Andrei Zmievski wrote: > > The first release of PHP-GTK is now available. PHP-GTK is a PHP > extension that provides an object-oriented interface to GTK+ toolkit and > enables you to write client-side cross-platform GUI applications. For > more information, visit http://gtk

Re: [PHP] PHP/Oracle mod

2001-02-13 Thread Rouvas Stathis
>From your mail, I understand that you cannot proceed past the compilation step. I've seen the same on previous versions of PHP for Linux, but now this is solved. Maybe the Solaris version didn't got the same fixes... Anyway, PHP will look at ORACLE_HOME for the required libraries which has now di

Re: [PHP] What is "foo"?

2001-01-31 Thread Rouvas Stathis
And don't forget "goo". "foo" and "goo" go together:-) -Stathis. Soeren Staun-Pedersen wrote: > > > Probably some of you are laughing while reading this :) But I have seen the > > word "foo" used so many time (in programming) from different resources for > > different reasons. Has it any meaning

Re: [PHP] Shared Memory with Yast-installed mod_php4 from SuSE.

2001-01-23 Thread Rouvas Stathis
Hit Thomas, you need to recompile PHP with the options you want (as a shared apache module) and then replace libphp4.so on /usr/lib/apache/ with your own version. A good thing is to keep SuSE's version as a backup:-) Don't forget to restart apache afterwards. (/etc/rc.d/apache stop; /etc/rc.d/apa

Re: [PHP] RTFM me to IIF file format creation...

2001-01-14 Thread Rouvas Stathis
I find wotsit.org an excellent resource : -Stathis. Dallas Kropka wrote: > > I need to create files and reports for importation into QuickBooks, but they > need to be in the IIF file format that QuickBooks supports where can I > find information for creating these fi

Re: [PHP] Accessing Common Log Format (CLF) info.

2001-01-11 Thread Rouvas Stathis
You don't need to hach into anything. Apache has builtin pipe redirection support. Search for "rotatelog" in Apache docs. -Stathis. Richard Lynch wrote: > > I doubt it... > > On busy servers, those files must get so huge, there's no way Apache can be > trying to keep it all in RAM. > > So, pr

Re: [PHP] SSH file transfers

2001-01-11 Thread Rouvas Stathis
Try pscp from putty : -Stathis. Kyle Jerviss wrote: > > Yeek! Not quite what I meant. I don't think that web servers have any > business being on windows boxes. I was wondering if there were a way to > upload using something like scp fr