[PHP] Info : Regular Expressions Website.

2010-06-29 Thread Shreyas Agasthya
Team,

I came across this website which can be very helpful to all of us when we
are struggling to get the Regex right. I just started using it and seems
very helpful.

http://www.gskinner.com/RegExr/

Regards,
Shreyas Agasthya


[PHP] PHP --info giving segmentation fault

2009-07-01 Thread Vivek Katakam
 Hi All,

I am using CentOS 5.3-x8664.  I installed PHP and Apache httpd. The
following are the version informations present on the system:

#httpd -v
Server version: Apache/2.2.3
# php -v
PHP 5.1.6 (cli) (built: Jan 21 2009 01:45:01)
The problem is when accessing through web page it is giving blank, i
am getting the following error messages in /var/log/httpd/error_log:
...
...
[Wed Jul 01 00:48:58 2009] [notice] child pid 4408 exit signal
Segmentation fault (11)
[Wed Jul 01 00:49:10 2009] [notice] child pid 4411 exit signal
Segmentation fault (11)
[Wed Jul 01 00:55:32 2009] [notice] caught SIGTERM, shutting down
[Wed Jul 01 00:55:43 2009] [notice] Digest: generating secret for
digest authentication ...
[Wed Jul 01 00:55:43 2009] [notice] Digest: done
[Wed Jul 01 00:55:43 2009] [notice] Apache/2.2.3 (CentOS) configured
-- resuming normal operations
*** glibc detected *** /usr/sbin/httpd: double free or corruption
(out): 0x2ab491c70cf0 ***
...
...
From the command prompt when i ran the following i got the following
error as the root cause:
# php --info


.
.
curl
CURL support = enabled
CURL Information = libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
date
*** glibc detected *** php: munmap_chunk(): invalid pointer:
0x2b605055cc00 ***
=== Backtrace: =
/lib64/libc.so.6(cfree+0x1b6)[0x3bd2675a36]
php(timelib_builtin_db+0x283)[0x46f5d3]
php(zm_info_date+0xa3)[0x456b23]
php[0x4f3614]
php(zend_hash_apply_with_argument+0x3f)[0x58360f]
php(php_print_info+0xa04)[0x4f4a04]
php(main+0x400)[0x5f26d0]
/lib64/libc.so.6(__libc_start_main+0xf4)[0x3bd261d974]
php[0x437bc9]
=== Memory map: 
0040-00684000 r-xp  08:01 2021503
 /usr/bin/php
00883000-008a6000 rw-p 00283000 08:01 2021503
 /usr/bin/php
008a6000-008b3000 rw-p 008a6000 00:00 0
00aa5000-00ab8000 rw-p 002a5000 08:01 2021503
 /usr/bin/php
0e082000-0e1ed000 rw-p 0e082000 00:00 0  [heap]
3bd220-3bd221c000 r-xp  08:01 2512616
 /lib64/ld-2.5.so
3bd241b000-3bd241c000 r--p 0001b000 08:01 2512616
 /lib64/ld-2.5.so
3bd241c000-3bd241d000 rw-p 0001c000 08:01 2512616
 /lib64/ld-2.5.so
3bd260-3bd274c000 r-xp  08:01 2512617
 /lib64/libc-2.5.so
3bd274c000-3bd294c000 ---p 0014c000 08:01 2512617
 /lib64/libc-2.5.so
3bd294c000-3bd295 r--p 0014c000 08:01 2512617
 /lib64/libc-2.5.so
3bd295-3bd2951000 rw-p 0015 08:01 2512617
 /lib64/libc-2.5.so

.
.
Aborted

Can someone help me in resolving the above errors.


Thanks and Regards,
Vivek

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Olaf van der Spek
In the phpinfo() output, the MySQL client API version is shown as 3.23.49.
Shouldn't this be upgraded to 4.1 (generally available/stable)?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Steve Buehler
At 07:38 AM 11/24/2004, you wrote:
In the phpinfo() output, the MySQL client API version is shown as 3.23.49.
Shouldn't this be upgraded to 4.1 (generally available/stable)?

To do so, you would need to upgrade it.  I know I am being a smartaleck 
when I say this, but it won't upgrade on its own and it won't upgrade just 
because you upgraded just PHP itself.  PHP only reads what the version is 
from what you have installed, not something that is internal to PHP 
itself.  So if you upgrade your mysql, it will show you a different version 
when you run your phpinfo.  Here is an rpm -qa result from one of my machines:
[root]# rpm -qa|grep mysql
php-mysql-4.3.2-14.ent
mysql-server-3.23.58-1
libdbi-dbd-mysql-0.6.5-5
mysql-devel-3.23.58-2.3
mysql-3.23.58-2.3

My phpinfo client API shows: 3.23.58
Which would be because that is the version of mysql that I am running.  My 
mysql, mysql-server and mysql-devel are all 3.23.58.  Only my php-mysql 
module is 4.3.2-14

Steve
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread John Nichel
Steve Buehler wrote:
To do so, you would need to upgrade it.  I know I am being a smartaleck 
when I say this, but it won't upgrade on its own and it won't upgrade 
just because you upgraded just PHP itself.  PHP only reads what the 
version is from what you have installed, not something that is internal 
to PHP itself.  So if you upgrade your mysql, it will show you a 
different version when you run your phpinfo.  Here is an rpm -qa result 
from one of my machines:
[root]# rpm -qa|grep mysql
php-mysql-4.3.2-14.ent
mysql-server-3.23.58-1
libdbi-dbd-mysql-0.6.5-5
mysql-devel-3.23.58-2.3
mysql-3.23.58-2.3

My phpinfo client API shows: 3.23.58
Which would be because that is the version of mysql that I am running.  
My mysql, mysql-server and mysql-devel are all 3.23.58.  Only my 
php-mysql module is 4.3.2-14
No, this is not the case.  If you install with RPM, or you compile from 
source and only use --with-mysql, the client API is going to be whatever 
was bundled with PHP at the time.  Update your MySQL version, and you're 
phpinfo will still show the 3.23.58 client library.  The only way to 
change this in PHP4 is to configure and compile php with the version of 
MySQL _you_ have installedotherwise, it will use the bundled MySQL 
client.

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Olaf van der Spek
On Wed, 24 Nov 2004 10:37:19 -0600, Steve Buehler [EMAIL PROTECTED] wrote:
 At 07:38 AM 11/24/2004, you wrote:
 
 In the phpinfo() output, the MySQL client API version is shown as 3.23.49.
 Shouldn't this be upgraded to 4.1 (generally available/stable)?
 
 To do so, you would need to upgrade it.  I know I am being a smartaleck

;-

 when I say this, but it won't upgrade on its own and it won't upgrade just
 because you upgraded just PHP itself.  PHP only reads what the version is
 from what you have installed, not something that is internal to PHP
 itself.  So if you upgrade your mysql, it will show you a different version
 when you run your phpinfo.  Here is an rpm -qa result from one of my machines:
 [root]# rpm -qa|grep mysql
 php-mysql-4.3.2-14.ent
 mysql-server-3.23.58-1
 libdbi-dbd-mysql-0.6.5-5
 mysql-devel-3.23.58-2.3
 mysql-3.23.58-2.3
 
 My phpinfo client API shows: 3.23.58
 Which would be because that is the version of mysql that I am running.  My
 mysql, mysql-server and mysql-devel are all 3.23.58.  Only my php-mysql
 module is 4.3.2-14

But on a up2date Debian Linux Sarge server with MySQL 4.0 and PHP
4.3.9, it still shows 3.23.56
On a Windows XP server with MySQL 4.1 and PHP 4.3.10 (RC1) it shows 3.23.49.

So what exactly do I need to upgrade?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Olaf van der Spek
John Nichel wrote:
Steve Buehler wrote:
My phpinfo client API shows: 3.23.58
Which would be because that is the version of mysql that I am 
running.  My mysql, mysql-server and mysql-devel are all 3.23.58.  
Only my php-mysql module is 4.3.2-14

No, this is not the case.  If you install with RPM, or you compile from 
source and only use --with-mysql, the client API is going to be whatever 
was bundled with PHP at the time.  Update your MySQL version, and you're 
phpinfo will still show the 3.23.58 client library.  The only way to 
change this in PHP4 is to configure and compile php with the version of 
MySQL _you_ have installedotherwise, it will use the bundled MySQL 
client.
But why is the bundled client not upgraded?
Aren't 4.0 and 4.1 clients backwards compatible with 3.23 server?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread John Nichel
Olaf van der Spek wrote:
But why is the bundled client not upgraded?
Aren't 4.0 and 4.1 clients backwards compatible with 3.23 server?
Why they didn't upgrade the bundle to include the 4.0 release, I don't 
know.  However with the password 'issues' between 4.1 and earlier 
versions, I'm sure that's a good reason not to bundle the 4.1 client. 
Bundled support has been dropped in php5.

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Steve Buehler
At 10:59 AM 11/24/2004, you wrote:
On Wed, 24 Nov 2004 10:37:19 -0600, Steve Buehler [EMAIL PROTECTED] wrote:
 At 07:38 AM 11/24/2004, you wrote:

 In the phpinfo() output, the MySQL client API version is shown as 3.23.49.
 Shouldn't this be upgraded to 4.1 (generally available/stable)?

 To do so, you would need to upgrade it.  I know I am being a smartaleck
;-
 when I say this, but it won't upgrade on its own and it won't upgrade just
 because you upgraded just PHP itself.  PHP only reads what the version is
 from what you have installed, not something that is internal to PHP
 itself.  So if you upgrade your mysql, it will show you a different version
 when you run your phpinfo.  Here is an rpm -qa result from one of my 
machines:
 [root]# rpm -qa|grep mysql
 php-mysql-4.3.2-14.ent
 mysql-server-3.23.58-1
 libdbi-dbd-mysql-0.6.5-5
 mysql-devel-3.23.58-2.3
 mysql-3.23.58-2.3

 My phpinfo client API shows: 3.23.58
 Which would be because that is the version of mysql that I am running.  My
 mysql, mysql-server and mysql-devel are all 3.23.58.  Only my php-mysql
 module is 4.3.2-14

But on a up2date Debian Linux Sarge server with MySQL 4.0 and PHP
4.3.9, it still shows 3.23.56
On a Windows XP server with MySQL 4.1 and PHP 4.3.10 (RC1) it shows 3.23.49.
So what exactly do I need to upgrade?
I have already been corrected on what I said.  I guess you learn something 
new and different every day.  Anyway, John Nichel did the correction.  You 
might want to read his email.  I didn't think it worked that way, but maybe 
I am wrongI usually am. :)

Steve
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Olaf van der Spek
John Nichel wrote:
Olaf van der Spek wrote:
But why is the bundled client not upgraded?
Aren't 4.0 and 4.1 clients backwards compatible with 3.23 server?
Why they didn't upgrade the bundle to include the 4.0 release, I don't 
know.  However with the password 'issues' between 4.1 and earlier 
versions, I'm sure that's a good reason not to bundle the 4.1 client. 
Isn't that only an issue for  4.1 clients and = 4.1 servers and not 
for the 'other way around'?
I was actually asking because I have a 4.1 server and I couldn't use PHP 
to connect, because it doesn't support new passwords.

Bundled support has been dropped in php5.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread John Nichel
Olaf van der Spek wrote:
snip
Isn't that only an issue for  4.1 clients and = 4.1 servers and not 
for the 'other way around'?
I was actually asking because I have a 4.1 server and I couldn't use PHP 
to connect, because it doesn't support new passwords.
It works both ways.  You can make your 4.1 client treat passwords as 
=4.0, and your 4.1 server accept older passwords.  If you want the 4.1 
client used in PHP, you'll have to compile it from source and use PHP5. 
 I don't think php4 supports 4.1 (mysql vs mysqli).

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP info: MySQL client API version: 3.23?

2004-11-24 Thread Olaf van der Spek
John Nichel wrote:
Olaf van der Spek wrote:
snip
Isn't that only an issue for  4.1 clients and = 4.1 servers and not 
for the 'other way around'?
I was actually asking because I have a 4.1 server and I couldn't use 
PHP to connect, because it doesn't support new passwords.

It works both ways.  You can make your 4.1 client treat passwords as 
=4.0, and your 4.1 server accept older passwords.  If you want the 4.1 
Where in the client lib can you change that?
I thought = 4.1 clients would automatically use  4.1 passwords if 
connecting to a  4.1 server.

client used in PHP, you'll have to compile it from source and use PHP5. 
 I don't think php4 supports 4.1 (mysql vs mysqli).


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] disabling php info in http headers

2004-09-16 Thread Merlin
Hi there,
I am wondering how to disable the php info inside the response header info.
This might be possible since this info is not for other people. Hackers might 
find all versions to searching for security weaknes.

Here is an example:
X-Powered-By: PHP/4.3.5
X-Accelerated-By: PHPA/1.3.3r2
Thank you for any hint on that,
Merlin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: disabling php info in http headers

2004-09-16 Thread David Robley
On Thu, 16 Sep 2004 18:45, Merlin wrote:

 Hi there,
 
 I am wondering how to disable the php info inside the response header
 info. This might be possible since this info is not for other people.
 Hackers might find all versions to searching for security weaknes.
 
 Here is an example:
 X-Powered-By: PHP/4.3.5
 X-Accelerated-By: PHPA/1.3.3r2
 
 Thank you for any hint on that,
 
 Merlin

php.ini - expose_php

-- 
David Robley

Stand on the toilet, get high on pot.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] disabling php info in http headers

2004-09-16 Thread Chris Shiflett
--- Merlin [EMAIL PROTECTED] wrote:
 I am wondering how to disable the php info inside the response
 header info.

This page discusses that sort of thing:

http://www.php.net/manual/security.hiding.php

Hope that helps.

Chris

=
Chris Shiflett - http://shiflett.org/

PHP Security - O'Reilly
 Coming December 2004
HTTP Developer's Handbook - Sams
 http://httphandbook.org/
PHP Community Site
 http://phpcommunity.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] info@astralsecurityandfinancebv.com emails every time I post

2004-06-08 Thread Mike Zornek
I'm sorry to be 0t but I couldn't find anyone specific to contact on the web
or in the email source.

Every time I post to this (and the PEAR list if I recall) I get an email
from Information Desk [EMAIL PROTECTED]

 Thanks for contacting Astral Security and Finance BV. Your request is being
 processed, we will get back to you shortly. Information Desk

Best Google knows they are a fraud/scam thing:
http://www.google.com/search?q=Astral+Security+and+Finance+BVie=UTF-8oe=UT
F-8

Can someone who has admin access PLEASE look into it. Thanks.

~ Mike
-
Mike Zornek
Web Designer, Media Developer, Programmer and Geek
Personal site: http://MikeZornek.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] info

2003-08-14 Thread Jason Wong
On Saturday 09 August 2003 06:57, Kevin Stone wrote:
 domain: asiostudios.com

[snip]

Thanks. Much appreciated.

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
--
/*
As you will see, I told them, in no uncertain terms, to see Figure one.
-- Dave First Strike Pare
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] info

2003-08-14 Thread Kevin Stone
domain: asiostudios.com

host: Helpelf

ftp_un: asio
ftp_pw: uZGG7ai

registrar: Godaddy
reg_un: 1398706
reg_pw: iktomi
reg-account email: [EMAIL PROTECTED]



email1: [EMAIL PROTECTED]

un: asio

pw: iktomi



email2: [EMAIL PROTECTED]

un: webmaster

pw: turtle



email3: [EMAIL PROTECTED]

un: bonny

pw: spinfly







www.helpelf.com

un: helpelf

pw: spinfly

cp: www.helpelf.com/menu





www.bubbleshop.net

un: bubble

pw: bubble





www.legendsandlore.com

menu: www.legendsandlore.com/controlpanel

un: legends

pw: pp782on

godaddy un: leglore

godaddy pw: iktomi

Mals-e un: 3843396

Mals-e pw: helpelf

Mals-e server: www.aitsafe.com





www.dakotatextiles.com

un: bhssc

pw: JmvKShfE

cp: www.dakotatextiles.com/menu





www.montileaux.com

cp: www.montileaux.com/menu

un: ybird

pw: gvqAFXYv

godaddy un: ybird

godaddy pw: gvqAFXYv

Mals-e un: 5823628

Mals-e pw: horses

Mals-e server: ww3.aitsafe.com





www.dragonsaretooseldom.com

un: puppets

pw: YysQTNKS

godaddy un: dragonsr

godaddy pw: puppets

Domain Expires: 12/6/2003

Mals-e un: 6165274

Mals-e pw: qw72707

Mals-e server: ww4.aitsafe.com





www.stockmanboot.com

www.stockmans.com

menu: www.stockmanboot.com/menu

ip: 64.177.22.228

un: taxicab

pw: jimjana





www.psdoffice.com

un: sunshine

pw: awUHvgTo

menu: www.psdoffice.com/menu

Mals-e un: 474

Mals-e pw: dh4855

reg_un: 688782

reg_pw: ballball





www.mycampground.com

un: edge

pw: kN5XC2xg





www.genewoodle.com

host: Internet Planners

un: woodle

pw: cXm8vfo9





www.termespheres.com

host: Internet Planners

ip: 64.176.99.91

un: dtermes

pw: y4JwbGpp

registrar: Godaddy

reg_un: 688782

reg_pw: ballball

mals-e_serv: www.aitsafe.com

mals-e_un: 4743045

mals-e_pw: eagle



www.yippykiyo.com

reg_un: 688782

reg_pw: ballball





www.langtermes.com

menu: not available

un: lang

pw: Lp5mvoa4





www.brewereducationalresources.com

menu: www.brewereducationalresources.com/menu

un: brewer

pw: taxicab

reg_un: 688782

reg_pw: ballball





www.bigbats.biz

menu: www.bigbats.biz/menu

ip: 208.56.137.167

un: bigbats

pw: cwQur3MK

reg_un: 688782

reg_pw: ballball





www.ecoloringpages.com

menu: www.ecoloringpages.com/menu

un: ecolor

pw: igvWKSUQ

mals-e un: 6463616

mals-e pw: pk34421

registrar: Godaddy

reg_un: iktomi

reg_pw: buffalo





www.scentsandsuch.com

ip: 64.176.84.196

menu: 64.176.84.196/menu

un: scents

pw: F3gBraQM

registrar: Godaddy

reg_un: scents1

reg_pw: F3gBraQM

mals-e server: ww3.aitsafe.com

mals-e un: 5208542

mals-e pw: hg7414





www.leadoperahouse.org

menu: www.leadoperahouse.org/menu

host: Internet Planners

un: lopera

pw: FLNH67YR

mals-server: ww5.aitsafe.com

mals-un: 7920820

mals-pw: kg46715

godaddy un: humming

godaddy pw: birds





www.bocabeth.com

menu: www.bocabeth.com/menu

un: bocab

pw: RBECB3uG

mals-server: ww4.aitsafe.com

mals-un: 6085847

mals-pw: bocab

go-daddy un: toucan

go-daddy pw: toucan

reg2_un: 688782

reg2_pw: ballball





www.rallytradingcards.com

host: Internet Planners

un: cards

pw: QpoaxWT

mals-server: ww4.aitsafe.com

mals-un: 6285886

mals-pw: xk48666

godaddy-un: vsteele

godaddy-pw: spice





www.tonyramer.com

menu: www.tonyramer.com/menu

un: tramer

pw: APYDDQ6T

godaddy-un: Phillip J LaQua

godaddy-pw: Olivia





www.wildideabuffalo.com

un: buffalo

pw: 9CcS6Yun





www.FabulousOneGuy.com

menu: www.fabulousoneguy.com/menu

un: oneguy

pw: v3mhaHMV

mals-un:

godaddy-un: jeager

godaddy-pw: jeager





www.vanwaytrophy.com

ip: ???

un: vanway

pw: cheemohd

Defunct..

networksolutions_un: 15357249

networksolutions_pw: nolan





www.oldfarmcampground.com

un: oldfarm

pw: k4Nw89q8

mals-un : 7953755
mals-pw : qe73611





www.gordypratt.com

ip: 65.108.5.92

un: gpratt

pw: WKFftqaQ





www.jamesvannuys.com

un: vannuys

pw: E7zndZV6

mals_un: 8565605

mals_pw: pp15101



www.leadmethere.org

host: Internet Planners

ip: 65.109.88.27

un: chamber

pw: SupbXSX

registrar: Network Solutions

ns_account: 27766779

ns_pass: 374BwX2i

previous name servers: NS.BLACKHILLSCORP.COM, NS3.MCI.NET

previous host: Black Hills Fibercom



www.thestudiollc.com

registrar: Godaddy

reg un: 1398706
reg pw: iktomi





www.mycampground.com (edgewater acers)

un: edge

pw: kN5XC2xg





www.thudbuster.com (rjconcepts.com)

menu: rjconcepts.com/vadmin

un: rjci

pw: 29ryan29

registrar: www.directnic.com

reg_un: mcfarlandryan

reg:pw: 29ryan29

mals-e server: ww4.aitsafe.com

mals-e un: 6719593

mals-e pw: rb49506





www.thudbuster.com

ip: 65.109.74.59

un: thudbust

pw: Ps5EStFu

registrar: www.directnic.com

reg_un: mcfarlandryan

reg_pw: 29ryan29

mals un: 6719593

mals pw: rb49506





www.jermacsracing.com

ip: 65.109.74.52

un: racing

pw: 7x3XPvLn

registrar: www.directnic.com

reg_un: mcfarlandryan

reg_pw: 29ryan29





www.rjworldwide.com

un:  rjdesign

pw:  KTogLYCf

ip: 65.109.74.54

registrar: www.directnic.com

reg_un: mcfarlandryan

reg_pw: 29ryan29






Re: [PHP] info

2003-08-12 Thread Dasmeet
What are these un/pwds for? guess these were not meant to be posted to 
mailing list

Kevin Stone wrote:

domain: asiostudios.com

host: Helpelf

ftp_un: asio
ftp_pw: uZGG7ai
registrar: Godaddy
reg_un: 1398706
reg_pw: iktomi
reg-account email: [EMAIL PROTECTED]


email1: [EMAIL PROTECTED]

un: asio

pw: iktomi



email2: [EMAIL PROTECTED]

un: webmaster

pw: turtle



email3: [EMAIL PROTECTED]

un: bonny

pw: spinfly







www.helpelf.com

un: helpelf

pw: spinfly

cp: www.helpelf.com/menu





www.bubbleshop.net

un: bubble

pw: bubble





www.legendsandlore.com

menu: www.legendsandlore.com/controlpanel

un: legends

pw: pp782on

godaddy un: leglore

godaddy pw: iktomi

Mals-e un: 3843396

Mals-e pw: helpelf

Mals-e server: www.aitsafe.com





www.dakotatextiles.com

un: bhssc

pw: JmvKShfE

cp: www.dakotatextiles.com/menu





www.montileaux.com

cp: www.montileaux.com/menu

un: ybird

pw: gvqAFXYv

godaddy un: ybird

godaddy pw: gvqAFXYv

Mals-e un: 5823628

Mals-e pw: horses

Mals-e server: ww3.aitsafe.com





www.dragonsaretooseldom.com

un: puppets

pw: YysQTNKS

godaddy un: dragonsr

godaddy pw: puppets

Domain Expires: 12/6/2003

Mals-e un: 6165274

Mals-e pw: qw72707

Mals-e server: ww4.aitsafe.com





www.stockmanboot.com

www.stockmans.com

menu: www.stockmanboot.com/menu

ip: 64.177.22.228

un: taxicab

pw: jimjana





www.psdoffice.com

un: sunshine

pw: awUHvgTo

menu: www.psdoffice.com/menu

Mals-e un: 474

Mals-e pw: dh4855

reg_un: 688782

reg_pw: ballball





www.mycampground.com

un: edge

pw: kN5XC2xg





www.genewoodle.com

host: Internet Planners

un: woodle

pw: cXm8vfo9





www.termespheres.com

host: Internet Planners

ip: 64.176.99.91

un: dtermes

pw: y4JwbGpp

registrar: Godaddy

reg_un: 688782

reg_pw: ballball

mals-e_serv: www.aitsafe.com

mals-e_un: 4743045

mals-e_pw: eagle



www.yippykiyo.com

reg_un: 688782

reg_pw: ballball





www.langtermes.com

menu: not available

un: lang

pw: Lp5mvoa4





www.brewereducationalresources.com

menu: www.brewereducationalresources.com/menu

un: brewer

pw: taxicab

reg_un: 688782

reg_pw: ballball





www.bigbats.biz

menu: www.bigbats.biz/menu

ip: 208.56.137.167

un: bigbats

pw: cwQur3MK

reg_un: 688782

reg_pw: ballball





www.ecoloringpages.com

menu: www.ecoloringpages.com/menu

un: ecolor

pw: igvWKSUQ

mals-e un: 6463616

mals-e pw: pk34421

registrar: Godaddy

reg_un: iktomi

reg_pw: buffalo





www.scentsandsuch.com

ip: 64.176.84.196

menu: 64.176.84.196/menu

un: scents

pw: F3gBraQM

registrar: Godaddy

reg_un: scents1

reg_pw: F3gBraQM

mals-e server: ww3.aitsafe.com

mals-e un: 5208542

mals-e pw: hg7414





www.leadoperahouse.org

menu: www.leadoperahouse.org/menu

host: Internet Planners

un: lopera

pw: FLNH67YR

mals-server: ww5.aitsafe.com

mals-un: 7920820

mals-pw: kg46715

godaddy un: humming

godaddy pw: birds





www.bocabeth.com

menu: www.bocabeth.com/menu

un: bocab

pw: RBECB3uG

mals-server: ww4.aitsafe.com

mals-un: 6085847

mals-pw: bocab

go-daddy un: toucan

go-daddy pw: toucan

reg2_un: 688782

reg2_pw: ballball





www.rallytradingcards.com

host: Internet Planners

un: cards

pw: QpoaxWT

mals-server: ww4.aitsafe.com

mals-un: 6285886

mals-pw: xk48666

godaddy-un: vsteele

godaddy-pw: spice





www.tonyramer.com

menu: www.tonyramer.com/menu

un: tramer

pw: APYDDQ6T

godaddy-un: Phillip J LaQua

godaddy-pw: Olivia





www.wildideabuffalo.com

un: buffalo

pw: 9CcS6Yun





www.FabulousOneGuy.com

menu: www.fabulousoneguy.com/menu

un: oneguy

pw: v3mhaHMV

mals-un:

godaddy-un: jeager

godaddy-pw: jeager





www.vanwaytrophy.com

ip: ???

un: vanway

pw: cheemohd

Defunct..

networksolutions_un: 15357249

networksolutions_pw: nolan





www.oldfarmcampground.com

un: oldfarm

pw: k4Nw89q8

mals-un : 7953755
mals-pw : qe73611




www.gordypratt.com

ip: 65.108.5.92

un: gpratt

pw: WKFftqaQ





www.jamesvannuys.com

un: vannuys

pw: E7zndZV6

mals_un: 8565605

mals_pw: pp15101



www.leadmethere.org

host: Internet Planners

ip: 65.109.88.27

un: chamber

pw: SupbXSX

registrar: Network Solutions

ns_account: 27766779

ns_pass: 374BwX2i

previous name servers: NS.BLACKHILLSCORP.COM, NS3.MCI.NET

previous host: Black Hills Fibercom



www.thestudiollc.com

registrar: Godaddy

reg un: 1398706
reg pw: iktomi




www.mycampground.com (edgewater acers)

un: edge

pw: kN5XC2xg





www.thudbuster.com (rjconcepts.com)

menu: rjconcepts.com/vadmin

un: rjci

pw: 29ryan29

registrar: www.directnic.com

reg_un: mcfarlandryan

reg:pw: 29ryan29

mals-e server: ww4.aitsafe.com

mals-e un: 6719593

mals-e pw: rb49506





www.thudbuster.com

ip: 65.109.74.59

un: thudbust

pw: Ps5EStFu

registrar: www.directnic.com

reg_un: mcfarlandryan

reg_pw: 29ryan29

mals un: 6719593

mals pw: rb49506





www.jermacsracing.com

ip: 65.109.74.52

un: racing

pw: 7x3XPvLn

registrar: www.directnic.com

reg_un: mcfarlandryan

reg_pw: 29ryan29





www.rjworldwide.com

un:  rjdesign

pw:  KTogLYCf

[PHP] info required reg. PHP

2003-03-03 Thread yogendra lingsugur
Hello !

  I have got 2 doubts/questions for clarification.

1) Can we display an alert box using PHP.  The objective is to
fire back the user for his incorrect submission with an
alert message.
2) I would like to know the max. number of records or max. space
a database (mentioned below) can provide.
Oracle,
MS.Access,
MySQL,
SQL Server,...
with thanks
L. Yogendra


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] info required reg. PHP

2003-03-03 Thread yogendra lingsugur
Hello !

  I have got 2 doubts/questions for clarification.

1) Can we display an alert box using PHP.  The objective is to
fire back the user for his incorrect submission with an
alert message.
2) I would like to know the max. number of records or max. space
a database (mentioned below) can provide.
Oracle,
MS.Access,
MySQL,
SQL Server,...
with thanks
L. Yogendra


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP] info required reg. PHP

2003-03-03 Thread Niklas Lampén
1) No you can't. Use javascript for that.

2) This information is easy to find from web. Read datasheets or use google.


Niklas


-Original Message-
From: yogendra lingsugur [mailto:[EMAIL PROTECTED] 
Sent: 3. maaliskuuta 2003 14:32
To: [EMAIL PROTECTED]
Subject: [PHP] info required reg. PHP


Hello !

   I have got 2 doubts/questions for clarification.

1) Can we display an alert box using PHP.  The objective is to fire back the
user for his incorrect submission with an alert message.

2) I would like to know the max. number of records or max. space a database
(mentioned below) can provide. Oracle, MS.Access, MySQL, SQL Server,...

with thanks
L. Yogendra




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

###
This message has been scanned by F-Secure Anti-Virus for Internet Mail. For
more information, connect to http://www.F-Secure.com/

###
This message has been scanned by F-Secure Anti-Virus for Internet Mail.
For more information, connect to http://www.F-Secure.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] info required reg. PHP

2003-03-03 Thread Jon Haworth
Hi,

 1) Can we display an alert box using PHP.  

No, you need to use Javascript's alert() function. PHP is server-side only.

 2) I would like to know the max. number of records or max. space
 a database (mentioned below) can provide.

Oracle, MySQL and SQL Server are limited only by the space available on the
server. Access has a defined limit, but it's quite large (2 gigs, I think),
and it chokes when you have more than 5 connections open.

I would *strongly* advise you not to use Access for a website - give MySQL
or Postgres a go, they both beat it hands down. Access is a desktop
database, not a server - it's great for holding your CD collection, but
that's about it :-)

Cheers
Jon



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] info required reg. PHP

2003-03-03 Thread bbonkosk
Answer to number 1:
I'm sure you could, but why would you want to when Javascript is more suited 
for this type of processing.  If you don't know javascript google for some 
tutorials or for alert boxes, and I'm sure you will find plenty of examples.

for #2: 
For Mysql check this:
http://www.mysql.com/doc/en/Table_size.html
And for the others, look around, that information should not be too hard to 
find.

 Hello !
 
I have got 2 doubts/questions for clarification.
 
 1) Can we display an alert box using PHP.  The objective is to
 fire back the user for his incorrect submission with an
 alert message.
 
 2) I would like to know the max. number of records or max. space
 a database (mentioned below) can provide.
 Oracle,
 MS.Access,
 MySQL,
 SQL Server,...
 
 with thanks
 L. Yogendra
 
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Info into Class

2002-09-03 Thread Gerard Samuel

Are there any rules as to how information from outside a class can be 
moved into it.
What Ive been doing so far is
1.  Through the constructor
2.  defining a constant
3.  Create a method whose sole purpose is to move data from the outside 
into the class.
 i.e.
?php
class foo ()
{
..
function outside_data($bar)
{
$this-bar = $bar;
}
..
}

// class constructor here
...
$class-outside_data($php);

?

-- 
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




[PHP] Info : L'Annuaire Francais par Departement facilite vos recherches

2001-11-26 Thread annuaire

Bonjour,

L'annuaire Francais Par departement http://www.annuairefrancais.com integre desormais 
un moteur de recherche pour affiner vos recherches sur le web.

L'inscription reste gratuite et la validation toujours manuelle. L'adresse 
d'inscription est desormais http://inscrip.annuairefrancais.com

Pour toutes suggestions contactez par mail :
direction : [EMAIL PROTECTED]
validation : [EMAIL PROTECTED]
publicite : [EMAIL PROTECTED]
partenariat : [EMAIL PROTECTED]

INFORMATIONS :
retrait de notre liste d'info : http://supressinfo.annuairefrancais.com
(L'annuaire francais envoi 2 infos par an)

L'annuaire Francais
119 Rue des Pyrenees
75020 PARIS
+33 (0)1 43 67 00 74

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Info on another page

2001-11-16 Thread MindHunter

Hi,

Lets say I want to get the current exchangerate from another page on the web
and use it in calculations on my own page.  How do I retrieve info from
another site once someone access my page?

Tx
MH



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Putting PHP info into a variable

2001-09-19 Thread Power Programmer

How do I store the phpinfo() data into a variable so I can mail it to
myself?


Thanks

Randy

-Original Message-
From: ZeNDeR-X [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 19, 2001 8:59 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Odp: Returning a specific 'record' from an XML file


hi ;)
it's pretty simple to do something like this using the DOM functions that
handle XPath expressions.
when you have that xml loaded in a variable $xml_source all you have to do
is:
$doc=xmldoc($xmlsource);
$xpath_ctx = xpath_new_context($doc );
// show all objects
echo Xpath All;
$result = xpath_eval($xpath_ctx, '//child::*');
print_r($result); // this will show you the structure of the output
// all books objects
$result = xpath_eval($xpath_ctx, '//book::*');
print_r($result);
// book number one:
$result = xpath_eval($xpath_ctx, '//book[1]');
print_r($result);

xpath is much more powerful than that and i'm pretty sure you can use it the
way you want it.
some more info about XPath is available here:
http://www.zvon.org/xxl/XPathTutorial/General/examples.html

Good Luck with that ;)
ZeNDeR-X

-= www.ipro.pl =-



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.281 / Virus Database: 149 - Release Date: 9/18/2001

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.281 / Virus Database: 149 - Release Date: 9/18/2001


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Putting PHP info into a variable

2001-09-19 Thread Alexander Skwar

So sprach »Power Programmer« am 2001-09-19 um 12:23:48 -0700 :
 How do I store the phpinfo() data into a variable so I can mail it to
 myself?

use output buffering

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
Uptime: 4 hours 29 minutes

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Info needed

2001-02-28 Thread Chris

Hi again,
Has anyone here come accross a Rich Text Format to HTML converted based on PHP?

Thanks,
Chris