php-install Digest 22 Mar 2001 03:41:14 -0000 Issue 229

Topics (messages 2539 through 2550):

Pdflib True Type Fonts
        2539 by: Renato Barata Gomes

Installation with ORBit 20000902 for Apache
        2540 by: Wolfgang Hottgenroth
        2543 by: David Eriksson
        2546 by: Wolfgang Hottgenroth

help me
        2541 by: Lee Leahu

HELP ME CONFIGURE PHP AND GET PAID!
        2542 by: Coulee Web

PHP Satellite Extension - Orbit CVS 2000-09-02
        2544 by: Benjamin Heckmann
        2545 by: Wolfgang Hottgenroth

Smabar Server
        2547 by: Alex Bamesreiter
        2549 by: Jason Bell

irix compile error (4.0.4pl1)
        2548 by: Paul Schreiber

Apache/PHP on Win 2000
        2550 by: speedoflight.runbox.com

Administrivia:

To subscribe to the digest, e-mail:
        [EMAIL PROTECTED]

To unsubscribe from the digest, e-mail:
        [EMAIL PROTECTED]

To post to the list, e-mail:
        [EMAIL PROTECTED]


----------------------------------------------------------------------


Hello people !!!
Do you have any idea how to add a true type font in the PDFlib.
I need to add the font Futura Book BT.
But this font is not in the C:\php\pdf-related  !!!!!
So I can not use it !!!!

Do you have any idea how I can add this font !!

I am using: windows 98;PHP4.0.5;Pdflib 3.0.3;

Thank you
Renato




Hi,


I have some problems in installing PHP for Apache with the Satellite 
extention. As soon as I place a idl-file in the idl_directory, Apache 
silently dies directly when started, even without a message on stderr or 
in the logfile.


I used the following parameters for building the parts of the system:

ORBit: ./configure --prefix=/usr/local/orbit-20000902
        make
        make install
        (put /usr/local/orbit-20000902/lib into /etc/ld.so.config and run
         ldconfig)

PHP:   export PATH=$PATH:/usr/local/orbit-20000902/bin
        (to let php's configure find orbit-config)
        ./configure     --with-apache=../../apache/apache_1.3.12 \
                 --prefix=/usr/local/php4                \
                 --with-pgsql=/usr/local/postgres        \
                 --with-config-file-path=/usr/local/apache/etc/php \
                 --enable-track-vars                     \
                 --enable-satellite
        make
        make install

Apache:
        export LIBS=  "`orbit-config --libs client` `libIDL-config 
--libs`"
        ./configure     --with-layout=MyApache          \
                 --activate-module=src/modules/php4/libphp4.a
        make
        make install
        (create php.ini in /usr/local/apache/etc/php, put
         idl_directory therein)

(Ah yes: I did this all on a Linux box, Debian Woody installed.)

When I start httpd without an idl-file in the idl directory everything 
is fine, as soon as I put an idl-file into the idl directory, httpd 
starts, creates its httpd.pid file and dies, commentless.

(I used this Hello.idl, directly from the Java IDL tutorial:
module HelloApp {
         interface Hello
         {
                 string sayHello();
         };
};
)

Ah, one additional strange thing: doing it this way, with generation of 
shared libraries for ORBit enabled I get from Apache the note:
/usr/local/apache/bin/httpd: Symbol `TC_short_struct' has different size 
in shared object, consider re-linking
/usr/local/apache/bin/httpd: Symbol `TC_long_struct' has different size 
in shared object, consider re-linking
/usr/local/apache/bin/httpd: Symbol `TC_double_struct' has different 
size in shared object, consider re-linking
/usr/local/apache/bin/httpd: Symbol `TC_boolean_struct' has different 
size in shared object, consider re-linking
./bin/apachectl start: httpd started

When disabling the shared libraries with --disable-shared for configure 
of ORBit, this note disappears, but nothing else changes.


Can anyone help a bit?


Thanks,
Wolfgang





On Wed, 21 Mar 2001, Wolfgang Hottgenroth wrote:

> Hi,
>
>
> I have some problems in installing PHP for Apache with the Satellite
> extention. As soon as I place a idl-file in the idl_directory, Apache
> silently dies directly when started, even without a message on stderr or
> in the logfile.
>
>
> I used the following parameters for building the parts of the system:
>
> ORBit: ./configure --prefix=/usr/local/orbit-20000902
>         make
>         make install
>         (put /usr/local/orbit-20000902/lib into /etc/ld.so.config and run
>          ldconfig)
>
> [snip]
>
> Ah, one additional strange thing: doing it this way, with generation of
> shared libraries for ORBit enabled I get from Apache the note:
> /usr/local/apache/bin/httpd: Symbol `TC_short_struct' has different size
> in shared object, consider re-linking
>
> [snap]

Did you put /usr/local/orbit-20000902/lib at the _top_ of your
/etc/ld.so.conf? (And it's not named /etc/ld.so.config, right?)

Because the error you are getting looks typically like the wrong version
of ORBit shared libraries being loaded.

Regards,

-\- David Eriksson -/-

"An expert in a particular computer language is really an expert
in the work-arounds necessary to use this language to perform
useful work." - Richard B. Johnson






Hi,


you are right, I had liborbit0 from the Debian distribution installed. I 
removed it and didn't got that last mentioned warning.
But nevertheless httpd didn't start.

Could you be so kind to have a look on the strace attached? Did this 
says something to you?

Thanks,
Wolfgang




David Eriksson wrote:

> On Wed, 21 Mar 2001, Wolfgang Hottgenroth wrote:
> 
> 
>> Hi,
>> 
>> 
>> I have some problems in installing PHP for Apache with the Satellite
>> extention. As soon as I place a idl-file in the idl_directory, Apache
>> silently dies directly when started, even without a message on stderr or
>> in the logfile.
>> 
>> 
>> I used the following parameters for building the parts of the system:
>> 
>> ORBit: ./configure --prefix=/usr/local/orbit-20000902
>>         make
>>         make install
>>         (put /usr/local/orbit-20000902/lib into /etc/ld.so.config and run
>>          ldconfig)
>> 
>> [snip]
>> 
>> Ah, one additional strange thing: doing it this way, with generation of
>> shared libraries for ORBit enabled I get from Apache the note:
>> /usr/local/apache/bin/httpd: Symbol `TC_short_struct' has different size
>> in shared object, consider re-linking
>> 
>> [snap]
> 
> 
> Did you put /usr/local/orbit-20000902/lib at the _top_ of your
> /etc/ld.so.conf? (And it's not named /etc/ld.so.config, right?)
> 
> Because the error you are getting looks typically like the wrong version
> of ORBit shared libraries being loaded.
> 
> Regards,
> 
> -\- David Eriksson -/-
> 
> "An expert in a particular computer language is really an expert
> in the work-arounds necessary to use this language to perform
> useful work." - Richard B. Johnson

execve("./httpd", ["./httpd"], [/* 28 vars */]) = 0
brk(0)                                  = 0x81c0d34
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40016000
open("/etc/ld.so.preload", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/usr/local/postgres/lib/i686/mmx/libORBit.so.0", O_RDONLY) = -1 ENOENT (No such 
file or directory)
stat("/usr/local/postgres/lib/i686/mmx", 0xbffff194) = -1 ENOENT (No such file or 
directory)
open("/usr/local/postgres/lib/i686/libORBit.so.0", O_RDONLY) = -1 ENOENT (No such file 
or directory)
stat("/usr/local/postgres/lib/i686", 0xbffff194) = -1 ENOENT (No such file or 
directory)
open("/usr/local/postgres/lib/mmx/libORBit.so.0", O_RDONLY) = -1 ENOENT (No such file 
or directory)
stat("/usr/local/postgres/lib/mmx", 0xbffff194) = -1 ENOENT (No such file or directory)
open("/usr/local/postgres/lib/libORBit.so.0", O_RDONLY) = -1 ENOENT (No such file or 
directory)
stat("/usr/local/postgres/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=32229, ...}) = 0
old_mmap(NULL, 32229, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40017000
close(3)                                = 0
open("/usr/local/orbit-20000902/lib/libORBit.so.0", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=1077700, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\3400\1"..., 4096) = 4096
old_mmap(NULL, 334744, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4001f000
mprotect(0x4006d000, 15256, PROT_NONE)  = 0
old_mmap(0x4006d000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x4d000) = 
0x4006d000
close(3)                                = 0
open("/usr/local/postgres/lib/libIIOP.so.0", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/usr/local/orbit-20000902/lib/libIIOP.so.0", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=133145, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`#\0\000"..., 4096) = 4096
old_mmap(NULL, 32740, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40071000
mprotect(0x40078000, 4068, PROT_NONE)   = 0
old_mmap(0x40078000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x6000) = 
0x40078000
close(3)                                = 0
open("/usr/local/postgres/lib/libORBitutil.so.0", O_RDONLY) = -1 ENOENT (No such file 
or directory)
open("/usr/local/orbit-20000902/lib/libORBitutil.so.0", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=47828, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\7\0"..., 4096) = 4096
old_mmap(NULL, 7124, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40079000
mprotect(0x4007a000, 3028, PROT_NONE)   = 0
old_mmap(0x4007a000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0) = 
0x4007a000
close(3)                                = 0
open("/usr/local/postgres/lib/libglib-1.2.so.0", O_RDONLY) = -1 ENOENT (No such file 
or directory)
open("/usr/lib/libglib-1.2.so.0", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=135884, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200b\0"..., 4096) = 4096
old_mmap(NULL, 138948, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4007b000
mprotect(0x4009c000, 3780, PROT_NONE)   = 0
old_mmap(0x4009c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x20000) = 
0x4009c000
close(3)                                = 0
open("/usr/local/postgres/lib/libpopt.so.0", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/lib/libpopt.so.0", O_RDONLY)     = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=18764, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\21\0\000"..., 4096) = 4096
old_mmap(NULL, 21772, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4009d000
mprotect(0x400a2000, 1292, PROT_NONE)   = 0
old_mmap(0x400a2000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x4000) = 
0x400a2000
close(3)                                = 0
open("/usr/local/postgres/lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/lib/libm.so.6", O_RDONLY)        = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=117352, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240I\0"..., 4096) = 4096
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x400a3000
old_mmap(NULL, 118648, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x400a4000
mprotect(0x400c0000, 3960, PROT_NONE)   = 0
old_mmap(0x400c0000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x1b000) = 
0x400c0000
close(3)                                = 0
open("/usr/local/postgres/lib/libIDL-0.6.so.0", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/usr/local/orbit-20000902/lib/libIDL-0.6.so.0", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=289252, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0PF\0\000"..., 4096) = 4096
old_mmap(NULL, 147332, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x400c1000
mprotect(0x400e4000, 3972, PROT_NONE)   = 0
old_mmap(0x400e4000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x22000) = 
0x400e4000
close(3)                                = 0
open("/usr/local/postgres/lib/libpam.so.0", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/lib/libpam.so.0", O_RDONLY)      = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=27192, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\22\0\000"..., 4096) = 4096
old_mmap(NULL, 30412, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x400e5000
mprotect(0x400ec000, 1740, PROT_NONE)   = 0
old_mmap(0x400ec000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x6000) = 
0x400ec000
close(3)                                = 0
open("/usr/local/postgres/lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/lib/libdl.so.2", O_RDONLY)       = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=8792, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0x\32\0\000"..., 4096) = 4096
old_mmap(NULL, 11724, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x400ed000
mprotect(0x400ef000, 3532, PROT_NONE)   = 0
old_mmap(0x400ef000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x1000) = 
0x400ef000
close(3)                                = 0
open("/usr/local/postgres/lib/libpq.so.2.1", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=59717, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P+\0\000"..., 4096) = 4096
old_mmap(NULL, 54468, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x400f0000
mprotect(0x400fd000, 1220, PROT_NONE)   = 0
old_mmap(0x400fd000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0xc000) = 
0x400fd000
close(3)                                = 0
open("/usr/local/postgres/lib/libresolv.so.2", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/lib/libresolv.so.2", O_RDONLY)   = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=54304, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`*\0\000"..., 4096) = 4096
old_mmap(NULL, 67140, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x400fe000
mprotect(0x4010b000, 13892, PROT_NONE)  = 0
old_mmap(0x4010b000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0xc000) = 
0x4010b000
old_mmap(0x4010c000, 9796, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, 
-1, 0) = 0x4010c000
close(3)                                = 0
open("/usr/local/postgres/lib/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/lib/libcrypt.so.1", O_RDONLY)    = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=20788, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\20\0\000"..., 4096) = 4096
old_mmap(NULL, 183580, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4010f000
mprotect(0x40114000, 163100, PROT_NONE) = 0
old_mmap(0x40114000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x4000) = 
0x40114000
old_mmap(0x40115000, 159004, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40115000
close(3)                                = 0
open("/usr/local/postgres/lib/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/lib/libnsl.so.1", O_RDONLY)      = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=71072, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0pA\0\000"..., 4096) = 4096
old_mmap(NULL, 82496, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4013c000
mprotect(0x4014d000, 12864, PROT_NONE)  = 0
old_mmap(0x4014d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x10000) = 
0x4014d000
old_mmap(0x4014f000, 4672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, 
-1, 0) = 0x4014f000
close(3)                                = 0
open("/usr/local/postgres/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or 
directory)
open("/lib/libc.so.6", O_RDONLY)        = 3
fstat(3, {st_mode=S_IFREG|0755, st_size=1056520, ...}) = 0
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0T\314\1"..., 4096) = 4096
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40151000
old_mmap(NULL, 1071428, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40152000
mprotect(0x4024e000, 39236, PROT_NONE)  = 0
old_mmap(0x4024e000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0xfb000) = 
0x4024e000
old_mmap(0x40254000, 14660, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, 
-1, 0) = 0x40254000
close(3)                                = 0
munmap(0x40017000, 32229)               = 0
getpid()                                = 19787
brk(0)                                  = 0x81c0d34
brk(0x81c2d54)                          = 0x81c2d54
brk(0x81c3000)                          = 0x81c3000
brk(0x81c6000)                          = 0x81c6000
brk(0x81c9000)                          = 0x81c9000
brk(0x81cc000)                          = 0x81cc000
stat("/usr/local/apache/bin/suexec", 0xbffff8ac) = -1 ENOENT (No such file or 
directory)
lstat("/usr/local/apache/etc/apache/httpd.conf", {st_mode=S_IFREG|0644, st_size=32604, 
...}) = 0
open("/usr/local/apache/etc/apache/httpd.conf", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=32604, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=32604, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40017000
read(3, "##\n## httpd.conf -- Apache HTTP "..., 4096) = 4096
stat("/usr/local/apache", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0
read(3, "onfig conf/srm.conf\n#AccessConfi"..., 4096) = 4096
read(3, "r, which responds to any request"..., 4096) = 4096
socket(PF_UNIX, SOCK_STREAM, 0)         = 4
connect(4, {sin_family=AF_UNIX, path="                                                 
                                      /var/run/.nscd_socket"}, 110) = -1 ECONNREFUSED 
(Connection refused)
close(4)                                = 0
open("/etc/nsswitch.conf", O_RDONLY)    = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=465, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
read(4, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 465
read(4, "", 4096)                       = 0
close(4)                                = 0
munmap(0x40018000, 4096)                = 0
open("/usr/local/postgres/lib/libnss_compat.so.2", O_RDONLY) = -1 ENOENT (No such file 
or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=32229, ...}) = 0
old_mmap(NULL, 32229, PROT_READ, MAP_PRIVATE, 4, 0) = 0x40258000
close(4)                                = 0
open("/lib/libnss_compat.so.2", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=41896, ...}) = 0
read(4, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\360\32"..., 4096) = 4096
old_mmap(NULL, 44872, PROT_READ|PROT_EXEC, MAP_PRIVATE, 4, 0) = 0x40260000
mprotect(0x4026a000, 3912, PROT_NONE)   = 0
old_mmap(0x4026a000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 4, 0x9000) = 
0x4026a000
close(4)                                = 0
munmap(0x40258000, 32229)               = 0
uname({sys="Linux", node="voldemor", ...}) = 0
open("/etc/passwd", O_RDONLY)           = 4
fcntl(4, F_GETFD)                       = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=1371, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
_llseek(4, 0, [0], SEEK_CUR)            = 0
read(4, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1371
close(4)                                = 0
munmap(0x40018000, 4096)                = 0
socket(PF_UNIX, SOCK_STREAM, 0)         = 4
connect(4, {sin_family=AF_UNIX, path="                                                 
                                      /var/run/.nscd_socket"}, 110) = -1 ECONNREFUSED 
(Connection refused)
close(4)                                = 0
brk(0x81cd000)                          = 0x81cd000
open("/etc/group", O_RDONLY)            = 4
fcntl(4, F_GETFD)                       = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=509, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
_llseek(4, 0, [0], SEEK_CUR)            = 0
read(4, "root:x:0:\ndaemon:x:1:\nbin:x:2:\ns"..., 4096) = 509
close(4)                                = 0
munmap(0x40018000, 4096)                = 0
read(3, "eceived.\n#\n<IfModule mod_userdir"..., 4096) = 4096
read(3, "tive within a <VirtualHost>\n# co"..., 4096) = 4096
brk(0x81d0000)                          = 0x81d0000
read(3, "   AddIconByType (SND,/icons/sou"..., 4096) = 4096
brk(0x81d3000)                          = 0x81d3000
read(3, "\n    AddCharset ISO-8859-8 .iso8"..., 4096) = 4096
read(3, "isables keepalive for Netscape 2"..., 4096) = 3932
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x40017000, 4096)                = 0
stat("/usr/local/apache/etc/apache/srm.conf", {st_mode=S_IFREG|0644, st_size=357, 
...}) = 0
lstat("/usr/local/apache/etc/apache/srm.conf", {st_mode=S_IFREG|0644, st_size=357, 
...}) = 0
open("/usr/local/apache/etc/apache/srm.conf", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=357, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=357, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40017000
read(3, "##\n## srm.conf -- Apache HTTP se"..., 4096) = 357
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x40017000, 4096)                = 0
stat("/usr/local/apache/etc/apache/access.conf", {st_mode=S_IFREG|0644, st_size=348, 
...}) = 0
lstat("/usr/local/apache/etc/apache/access.conf", {st_mode=S_IFREG|0644, st_size=348, 
...}) = 0
open("/usr/local/apache/etc/apache/access.conf", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=348, ...}) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=348, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40017000
read(3, "##\n## access.conf -- Apache HTTP"..., 4096) = 348
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x40017000, 4096)                = 0
open("/usr/local/apache/log/error_log", O_WRONLY|O_APPEND|O_CREAT, 0666) = 3
fcntl(3, F_DUPFD, 15)                   = 15
close(3)                                = 0
fcntl(15, F_GETFL)                      = 0x401 (flags O_WRONLY|O_APPEND)
fstat(15, {st_mode=S_IFREG|0644, st_size=1225, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40017000
_llseek(15, 0, [0], SEEK_CUR)           = 0
dup2(15, 2)                             = 2
brk(0x81d4000)                          = 0x81d4000
brk(0x81d5000)                          = 0x81d5000
brk(0x81d6000)                          = 0x81d6000
brk(0x81d7000)                          = 0x81d7000
brk(0x81d8000)                          = 0x81d8000
brk(0x81d9000)                          = 0x81d9000
brk(0x81da000)                          = 0x81da000
open("./php.ini", O_RDONLY)             = -1 ENOENT (No such file or directory)
open("/php.ini", O_RDONLY)              = -1 ENOENT (No such file or directory)
open("/usr/local/apache/etc/php/php.ini", O_RDONLY) = 3
getcwd("/usr/local/apache/bin", 4095)   = 22
lstat("/usr", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/usr/local", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0
lstat("/usr/local/apache", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0
lstat("/usr/local/apache/etc", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0
lstat("/usr/local/apache/etc/php", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) 
= 0
lstat("/usr/local/apache/etc/php/php.ini", {st_mode=S_IFREG|0644, st_size=24630, ...}) 
= 0
brk(0x81df000)                          = 0x81df000
ioctl(3, TCGETS, 0xbffff6dc)            = -1 ENOTTY (Inappropriate ioctl for device)
fstat(3, {st_mode=S_IFREG|0644, st_size=24630, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
read(3, "[PHP]\n\n;;;;;;;;;;;;;;;;;;;\n; Abo"..., 8192) = 8192
read(3, "ture off, and use error logging "..., 8192) = 8192
read(3, "that order).  Win32 will only lo"..., 8192) = 8192
brk(0x81e0000)                          = 0x81e0000
brk(0x81e1000)                          = 0x81e1000
read(3, "th: 4\n\nidl_directory = /usr/loca"..., 8192) = 54
read(3, "", 4096)                       = 0
read(3, "", 8192)                       = 0
ioctl(3, TCGETS, 0xbfffeb68)            = -1 ENOTTY (Inappropriate ioctl for device)
close(3)                                = 0
munmap(0x40018000, 4096)                = 0
brk(0x81e2000)                          = 0x81e2000
getpid()                                = 19787
time(NULL)                              = 985204084
getpid()                                = 19787
brk(0x81e3000)                          = 0x81e3000
brk(0x81e4000)                          = 0x81e4000
brk(0x81e5000)                          = 0x81e5000
brk(0x81e6000)                          = 0x81e6000
brk(0x81e7000)                          = 0x81e7000
brk(0x81e8000)                          = 0x81e8000
brk(0x81e9000)                          = 0x81e9000
brk(0x81ea000)                          = 0x81ea000
brk(0x81eb000)                          = 0x81eb000
brk(0x81ec000)                          = 0x81ec000
brk(0x81ed000)                          = 0x81ed000
brk(0x81ee000)                          = 0x81ee000
brk(0x81ef000)                          = 0x81ef000
brk(0x81f0000)                          = 0x81f0000
brk(0x81f1000)                          = 0x81f1000
brk(0x81f2000)                          = 0x81f2000
open("/usr/local/orbit-20000902/etc/orbitrc", O_RDONLY) = -1 ENOENT (No such file or 
directory)
getuid()                                = 0
open("/etc/passwd", O_RDONLY)           = 3
fcntl(3, F_GETFD)                       = 0
fcntl(3, F_SETFD, FD_CLOEXEC)           = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=1371, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
_llseek(3, 0, [0], SEEK_CUR)            = 0
read(3, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1371
close(3)                                = 0
munmap(0x40018000, 4096)                = 0
open("/root/.orbitrc", O_RDONLY)        = -1 ENOENT (No such file or directory)
rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
brk(0x81f3000)                          = 0x81f3000
open("/dev/urandom", O_RDONLY)          = 3
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 4
bind(4, {sin_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("0.0.0.0")}}, 16) = 0
fcntl(4, F_GETFD)                       = 0
fcntl(4, F_SETFD, FD_CLOEXEC)           = 0
fcntl(4, F_GETFL)                       = 0x2 (flags O_RDWR)
fcntl(4, F_SETFL, O_RDWR|O_NONBLOCK)    = 0
getsockname(4, {sin_family=AF_INET, sin_port=htons(2077), 
sin_addr=inet_addr("0.0.0.0")}}, [16]) = 0
uname({sys="Linux", node="voldemor", ...}) = 0
gettimeofday({985204084, 48400}, NULL)  = 0
getpid()                                = 19787
open("/etc/resolv.conf", O_RDONLY)      = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=49, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
read(5, "search home.hottis.intern\nnamese"..., 4096) = 49
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x40018000, 4096)                = 0
socket(PF_UNIX, SOCK_STREAM, 0)         = 5
connect(5, {sin_family=AF_UNIX, path="                                                 
                                      /var/run/.nscd_socket"}, 110) = -1 ECONNREFUSED 
(Connection refused)
close(5)                                = 0
open("/usr/local/postgres/lib/libnss_files.so.2", O_RDONLY) = -1 ENOENT (No such file 
or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=32229, ...}) = 0
old_mmap(NULL, 32229, PROT_READ, MAP_PRIVATE, 5, 0) = 0x40258000
close(5)                                = 0
open("/lib/libnss_files.so.2", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=34824, ...}) = 0
read(5, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\"\0"..., 4096) = 4096
old_mmap(NULL, 38204, PROT_READ|PROT_EXEC, MAP_PRIVATE, 5, 0) = 0x4026b000
mprotect(0x40274000, 1340, PROT_NONE)   = 0
old_mmap(0x40274000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 5, 0x8000) = 
0x40274000
close(5)                                = 0
munmap(0x40258000, 32229)               = 0
open("/etc/host.conf", O_RDONLY)        = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=26, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
read(5, "order hosts,bind\nmulti on\n", 4096) = 26
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x40018000, 4096)                = 0
open("/etc/hosts", O_RDONLY)            = 5
fcntl(5, F_GETFD)                       = 0
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fstat(5, {st_mode=S_IFREG|0644, st_size=362, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
read(5, "127.0.0.1\tvoldemor\tlocalhost\n172"..., 4096) = 362
read(5, "", 4096)                       = 0
close(5)                                = 0
munmap(0x40018000, 4096)                = 0
listen(4, 5)                            = 0
brk(0x81f4000)                          = 0x81f4000
mkdir("/tmp/orbit-root", 0700)          = -1 EEXIST (File exists)
stat("/tmp/orbit-root", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
getuid()                                = 0
utime("/tmp/orbit-root", [0, 0])        = 0
time(NULL)                              = 985204084
socket(PF_UNIX, SOCK_STREAM, 0)         = 5
bind(5, {sin_family=AF_UNIX, path="/tmp/orbit-root/orb-869766592012430619"}, 40) = 0
fcntl(5, F_GETFD)                       = 0
fcntl(5, F_SETFD, FD_CLOEXEC)           = 0
fcntl(5, F_GETFL)                       = 0x2 (flags O_RDWR)
fcntl(5, F_SETFL, O_RDWR|O_NONBLOCK)    = 0
listen(5, 5)                            = 0
brk(0x81f5000)                          = 0x81f5000
open("/dev/null", O_RDONLY|O_NONBLOCK|0x10000) = -1 ENOTDIR (Not a directory)
open("/usr/local/apache/idl", O_RDONLY|O_NONBLOCK|0x10000) = 6
fstat(6, {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0
fcntl(6, F_SETFD, FD_CLOEXEC)           = 0
brk(0x81f7000)                          = 0x81f7000
getdents(6, /* 3 entries */, 3933)      = 48
getdents(6, /* 0 entries */, 3933)      = 0
close(6)                                = 0
access("/usr/local/apache/idl/Hello.idl", R_OK) = 0
pipe([6, 7])                            = 0
vfork()                                 = 19788
close(7)                                = 0
brk(0x81fc000)                          = 0x81fc000
ioctl(6, TCGETS, 0xbfffec78)            = -1 EINVAL (Invalid argument)
fstat(6, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
read(6, "# 1 \"\"\nmodule HelloApp {\n       "..., 4096) = 109
read(6, "", 4096)                       = 0
--- SIGCHLD (Child exited) ---
read(6, "", 4096)                       = 0
ioctl(6, TCGETS, 0xbfffec48)            = -1 EINVAL (Invalid argument)
ioctl(6, TCGETS, 0xbffff618)            = -1 EINVAL (Invalid argument)
close(6)                                = 0
wait4(19788, [WIFEXITED(s) && WEXITSTATUS(s) == 0], 0, NULL) = 19788
munmap(0x40018000, 4096)                = 0
brk(0x81fd000)                          = 0x81fd000
brk(0x81fe000)                          = 0x81fe000
brk(0x81ff000)                          = 0x81ff000
brk(0x8200000)                          = 0x8200000
open("/usr/local/apache/etc/apache/mime.types", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=11317, ...}) = 0
fstat(6, {st_mode=S_IFREG|0644, st_size=11317, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40018000
read(6, "# This is a comment. I love comm"..., 4096) = 4096
read(6, ".ibm.MiniPay\napplication/vnd.ibm"..., 4096) = 4096
brk(0x8203000)                          = 0x8203000
read(6, "x-shar\t\tshar\napplication/x-shock"..., 4096) = 3125
read(6, "", 4096)                       = 0
close(6)                                = 0
munmap(0x40018000, 4096)                = 0
brk(0x8206000)                          = 0x8206000
open("/usr/local/apache/log/access_log", O_WRONLY|O_APPEND|O_CREAT, 0644) = 6
fcntl(6, F_DUPFD, 15)                   = 16
close(6)                                = 0
chdir("/")                              = 0
fork()                                  = 19791
unlink("/tmp/orbit-root/orb-869766592012430619") = 0
_exit(0)                                = ?




Helo
I have a Sun Sparc machine 143Mhz processor, 128Mb ram.
I downloaded suse 7.0 for the sparc platform from some ftp site.
i installed it and it has php 3
I want to upgrade to the latest php version and have support for
creating png, jpeg, and other images, creating pdf files, using the database
mysql, and having support for mail and network functions
does anyone know how this can be donw, ie what libraries to get, how
to install them, how to configure them?
thanx in advance,
lee





I need to have PHP configured a certain way and am having no luck. I
need to have support for true type fonts, JPEG, PNG, TIFF and MySQL on
an Apache server but I can not get it to work. I am using a Cobalt RaQ4
with a port of Redhat Linux installed. If anyone out there is willing to
make some quick cash by helping me get PHP set up correctly I am willing
to pay! Please respond to my e-mail ([EMAIL PROTECTED]) or by
phone at (888) 378-2352. Thank you!


-- 
-----------------------------------------------------------
Shane Lambert, Owner
Coulee Web
http://www.couleeweb.net/




Hello,

I read the install guide on the php installation mailing list. I followed it
step by step but I got this error while "make" is executed by the use of the
version directly out of cvs:

gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I.. -I../../src
-I/usr/local/include/glib-1.2 -I/usr/local/lib/glib/include -D_REENTRANT
-DORBit_SYSRC=\"/usr/local/etc/orbitrc\" -I../../src/ORBitutil
-DORBIT_MAJOR_VERSION=0 -DORBIT_MINOR_VERSION=5 -DORBIT_MICRO_VERSION=1
-DORBIT_VERSION=\"0.5.1\" -g -O2 -Wall -Wunused -Wmissing-prototypes
-Wmissing-declarations -Wp,-MD,.deps/corba_defs-common.pp -c
corba_defs-common.c  -fPIC -DPIC -o .libs/corba_defs-common.lo
In file included from ../orb/orbit_types.h:83,
                 from ../orb/orbit.h:59,
                 from corba_defs.h:7,
                 from corba_defs-common.c:6:
../orb/corba_defs.h:3800: unterminated `#if' conditional
In file included from corba_defs-common.c:6:
corba_defs.h:3800: unterminated `#if' conditional
make[3]: *** [corba_defs-common.lo] Error 1
make[3]: Leaving directory `/root/heckmann/ORBit/src/orb'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/root/heckmann/ORBit/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/heckmann/ORBit'
make: *** [all-recursive-am] Error 2



When I use the TAR-File of ORBit 2000-09-02 and run configure it says the
are files missing.

So, what went wrong?!

I hope you may help me with this...
Benjamin Heckmann





I got this too, few hour ago. I found, that in corba_defs.h, which is 
generated by orbit-idl, some linebreaks are missed. Search for ;#endif 
and insert a linebreak between the ; and the #.
Then re-run make.
Sure,this works only on the symptoms rather then at the reason, but it 
works ...

If someone can help with the reason, I'm also interested.


Wolfgang



Benjamin Heckmann wrote:

> Hello,
> 
> I read the install guide on the php installation mailing list. I followed it
> step by step but I got this error while "make" is executed by the use of the
> version directly out of cvs:
> 
> gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I.. -I../../src
> -I/usr/local/include/glib-1.2 -I/usr/local/lib/glib/include -D_REENTRANT
> -DORBit_SYSRC=\"/usr/local/etc/orbitrc\" -I../../src/ORBitutil
> -DORBIT_MAJOR_VERSION=0 -DORBIT_MINOR_VERSION=5 -DORBIT_MICRO_VERSION=1
> -DORBIT_VERSION=\"0.5.1\" -g -O2 -Wall -Wunused -Wmissing-prototypes
> -Wmissing-declarations -Wp,-MD,.deps/corba_defs-common.pp -c
> corba_defs-common.c  -fPIC -DPIC -o .libs/corba_defs-common.lo
> In file included from ../orb/orbit_types.h:83,
>                  from ../orb/orbit.h:59,
>                  from corba_defs.h:7,
>                  from corba_defs-common.c:6:
> .../orb/corba_defs.h:3800: unterminated `#if' conditional
> In file included from corba_defs-common.c:6:
> corba_defs.h:3800: unterminated `#if' conditional
> make[3]: *** [corba_defs-common.lo] Error 1
> make[3]: Leaving directory `/root/heckmann/ORBit/src/orb'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/root/heckmann/ORBit/src'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/root/heckmann/ORBit'
> make: *** [all-recursive-am] Error 2
> 
> 
> 
> When I use the TAR-File of ORBit 2000-09-02 and run configure it says the
> are files missing.
> 
> So, what went wrong?!
> 
> I hope you may help me with this...
> Benjamin Heckmann





Hi, weiss einer wie ich PHP.exe in der V4.0 unter SAmbar zum laufen bekomme?
Ist ja ein exe, sonst die ISAPI's sind doch dll's.

Alex






Bitte Pfosten auf englisch, erhalten Sie bessere Resultate. Ich versuchte,
mit babelfish zu übersetzen, aber die Übersetzung ging nicht sehr gut, also
bin ich nicht imstande zu helfen.

-----Original Message-----
From: Alex Bamesreiter [mailto:[EMAIL PROTECTED]]
Sent: Saturday, March 17, 2001 5:00 AM
To: [EMAIL PROTECTED]
Subject: [PHP-INST] Smabar Server


Hi, weiss einer wie ich PHP.exe in der V4.0 unter SAmbar zum laufen bekomme?
Ist ja ein exe, sonst die ISAPI's sind doch dll's.

Alex










I'm getting this error:

> main.c: In function `php_message_handler_for_zend':
> main.c:582: too few arguments to function `asctime_r'

argh! damn sgi :p

This is gcc version 2.95.1 and irix 5.3.

how do i fix this?


Paul

         shad 96c / 4B CS / mac activist / eda / fumbler
fan of / jewel / sophie b. / sarah slean / steve poltz / emm gryner /
       / x-files / buffy / dawson's creek / habs / bills / 49ers /
         
         t h i n k  d i f f e r e n t.

"OK, I'm having a Grateful Dead moment here. Bootleg the puppy."
 -- Joss Whedon, creator of "Buffy The Vampire Slayer," commenting
    on Buffy fans' tape trading, after The WB decided not to air
    the season finale of Buffy in the US. (The show aired in Canada.)
    USA TODAY, June 3, 1999





I am running Apache on Win 2000 and am trying to install PHP on it. I've used the PHP 
installer and have configured my httpd.conf file to recognize the php mime type.

I am using localhost or 127.0.0.1 to do this since I don't have a box that is online. 
I've never tried the localhost route before but Apache seems to serve regular HTML 
files up fine.

But, when I load a PHP file on this machine, i.e. http://127.0.0.1/test.php, the PHP 
server doesn't seem to parse the file. It asks me if I want to download the file or 
open it. I don't want either. I'm not sure what I should do. Any help would be greatly 
appreciated. 

Below is what I've dumped in my httpd.conf file. Let me know if it's right or wrong.

Please help!! Thanks much!


AddType application/x-httpd-php .php4
AddType application/x-httpd-php .php
ScriptAlias /php/ "D:/php/"
Action application/x-httpd-php "D:\php\php.exe"
AddType application/x-httpd-php4 .php> -- 






-----------------------------------------------
Runbox Mail Manager - www.runbox.com
Free online email application


Reply via email to