Re: [PHP] PHP site search broken?

2012-12-05 Thread Daniel Brown
On Tue, Dec 4, 2012 at 3:56 PM, Paul M Foster pa...@quillandmouse.com wrote:
 Is it just me, or is the search feature on php.net broken?

 When I enter a full search term (known good function name) and then hit
 the arrow, it brings me back to the generic search page. If I enter a
 partial search term and then click on one of the suggested
 completions, it usually (not always) does the same thing. Etc.

It's probably a legitimate issue.  I made some changes last week
to the DNS and fundamental server functionality to speed things up.
We're now using a service named myracloud[1] to help with traffic and
server load for the primary web box (the main php.net / www.php.net
system), as well as static.php.net, which handles graphics and other
media.  Unfortunately, as with any major changes, there are a few
hiccups here and there for some users.  Primarily, these are in the
form of HTTP 301's; when the server issues a redirect order, sometimes
the data isn't being sent along with it.  We're working to resolve the
issues; I just made one moderately-sized commit to hopefully repair a
lot of the issues, and will be making at least one more shortly.

If you or anyone else reading this continue to experience issues,
please submit them as bugs at https://bugs.php.net/ and zip me a quick
email to bring it to my attention.

^1: https://myracloud.com/en/?_locale=en

-- 
/Daniel P. Brown
Network Infrastructure Manager
http://www.php.net/

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



Re: [PHP] PHP site search broken?

2012-12-04 Thread Jim Lucas

On 12/04/2012 01:03 PM, Sebastian Krebs wrote:

2012/12/4 Paul M Fosterpa...@quillandmouse.com


Is it just me, or is the search feature on php.net broken?

When I enter a full search term (known good function name) and then hit
the arrow, it brings me back to the generic search page. If I enter a
partial search term and then click on one of the suggested
completions, it usually (not always) does the same thing. Etc.



Hi,

Works fine here. You could try a different mirror?


or a different browser?



Regards,
Sebastian


Paul

--
Paul M. Foster
http://noferblatz.com
http://quillandmouse.com



--
Jim Lucas

http://www.cmsws.com/
http://www.cmsws.com/examples/

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



Re: [PHP] PHP Site with CSS and Internet Explorer

2010-05-17 Thread Juan Rodriguez Monti
2010/5/15 Jim Lucas li...@cmsws.com:
 Juan Rodriguez Monti wrote:

 I guys,
 I'm having some problems with the following.

 I have a PHP Site working perfectly with HTML and CSS. The CSS runs
 flawlessly in Firefox and Google Chrome. However, I'm having some
 problems with Internet Explorer.

 I'm not able to show it centered ( the .css is to show centered
 content ) in any version of Internet Explorer. The CSS's Code is
 available here[0].

 Might be this is an Off-Topic question, however is closely related to
 my PHP development.

 If you know some hack or modification that I should do to make this
 site compatible with IE, I would appreciate it a lot.

 Thanks,
 Juan

 [0] http://pastebin.com/eLhz2CzM



 Using your #container { ... } example.  the only change I would make is like
 this

 body
 {
        text-align: center;
 }

 #container
 {
        margin: 0 auto;
        width: 600px;
        background:#fff;
        text-align: left;
 }

Hi Jim,
Thanks. This CSS code solved the IE's problem.

Best,
Juan.

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



Re: [PHP] PHP Site with CSS and Internet Explorer

2010-05-16 Thread Mithun Shitole
On Sat, May 15, 2010 at 7:00 PM, Juan Rodriguez Monti 
j...@rodriguezmonti.com.ar wrote:

 I guys,
 I'm having some problems with the following.

 I have a PHP Site working perfectly with HTML and CSS. The CSS runs
 flawlessly in Firefox and Google Chrome. However, I'm having some
 problems with Internet Explorer.

 I'm not able to show it centered ( the .css is to show centered
 content ) in any version of Internet Explorer. The CSS's Code is
 available here[0].

 Might be this is an Off-Topic question, however is closely related to
 my PHP development.

 If you know some hack or modification that I should do to make this
 site compatible with IE, I would appreciate it a lot.

 Thanks,
 Juan

 [0] http://pastebin.com/eLhz2CzM

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


Do you use strict dtd?
I faced similar problems, and realized that using strict dtd is way out for
many annoying things that IE does in quirks mode.

-- 
Mithun


Re: [PHP] PHP Site with CSS and Internet Explorer

2010-05-15 Thread tedd

At 10:30 AM -0300 5/15/10, Juan Rodriguez Monti wrote:

I guys,
I'm having some problems with the following.

I have a PHP Site working perfectly with HTML and CSS. The CSS runs
flawlessly in Firefox and Google Chrome. However, I'm having some
problems with Internet Explorer.

I'm not able to show it centered ( the .css is to show centered
content ) in any version of Internet Explorer. The CSS's Code is
available here[0].

Might be this is an Off-Topic question, however is closely related to
my PHP development.

If you know some hack or modification that I should do to make this
site compatible with IE, I would appreciate it a lot.

Thanks,
Juan



Juan:

Subscribe to the CSS discus list 
(http://lists.css-discuss.org/mailman/listinfo/css-d) and post your 
css questions there.


Cheers,

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

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



Re: [PHP] PHP Site with CSS and Internet Explorer

2010-05-15 Thread Ashley Sheridan
On Sat, 2010-05-15 at 10:30 -0300, Juan Rodriguez Monti wrote:

 I guys,
 I'm having some problems with the following.
 
 I have a PHP Site working perfectly with HTML and CSS. The CSS runs
 flawlessly in Firefox and Google Chrome. However, I'm having some
 problems with Internet Explorer.
 
 I'm not able to show it centered ( the .css is to show centered
 content ) in any version of Internet Explorer. The CSS's Code is
 available here[0].
 
 Might be this is an Off-Topic question, however is closely related to
 my PHP development.
 
 If you know some hack or modification that I should do to make this
 site compatible with IE, I would appreciate it a lot.
 
 Thanks,
 Juan
 
 [0] http://pastebin.com/eLhz2CzM
 


Well, you haven't given a link to the site or mentioned what CSS you've
used, so I can only guess.

The traditional way to center an item (horizontally only) is to use
'margin: auto;' and give the element a width. This only works when the
parent element is a block level element with a width that is greater
than that of the object you are trying to center.

This will work in all the major browsers that support CSS.

Thanks,
Ash
http://www.ashleysheridan.co.uk




Re: [PHP] PHP Site with CSS and Internet Explorer

2010-05-15 Thread Jim Lucas

Juan Rodriguez Monti wrote:

I guys,
I'm having some problems with the following.

I have a PHP Site working perfectly with HTML and CSS. The CSS runs
flawlessly in Firefox and Google Chrome. However, I'm having some
problems with Internet Explorer.

I'm not able to show it centered ( the .css is to show centered
content ) in any version of Internet Explorer. The CSS's Code is
available here[0].

Might be this is an Off-Topic question, however is closely related to
my PHP development.

If you know some hack or modification that I should do to make this
site compatible with IE, I would appreciate it a lot.

Thanks,
Juan

[0] http://pastebin.com/eLhz2CzM




Using your #container { ... } example.  the only change I would make is 
like this


body
{
text-align: center;
}

#container
{
margin: 0 auto;
width: 600px;
background:#fff;
text-align: left;
}


--
Jim Lucas

A: Maybe because some people are too annoyed by top-posting.
Q: Why do I not get an answer to my question(s)?
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?

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



Re: [PHP] PHP Site with CSS and Internet Explorer

2010-05-15 Thread Paulo Carvalho

On 15/05/2010 18:19, Jim Lucas wrote:

Juan Rodriguez Monti wrote:

I guys,
I'm having some problems with the following.

I have a PHP Site working perfectly with HTML and CSS. The CSS runs
flawlessly in Firefox and Google Chrome. However, I'm having some
problems with Internet Explorer.

I'm not able to show it centered ( the .css is to show centered
content ) in any version of Internet Explorer. The CSS's Code is
available here[0].

Might be this is an Off-Topic question, however is closely related to
my PHP development.

If you know some hack or modification that I should do to make this
site compatible with IE, I would appreciate it a lot.

Thanks,
Juan

[0] http://pastebin.com/eLhz2CzM




Using your #container { ... } example.  the only change I would make 
is like this


body
{
text-align: center;
}

#container
{
margin: 0 auto;
width: 600px;
background:#fff;
text-align: left;
}

If you use this:

text-align:center; required for ie 5/6
Margin:0 auto;// center the container margin : 0 = top/bottom 
auto=left/right

 you will get a centered layout.
Paulo Carvalho

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



Re: [PHP] PHP Site Security issue

2009-03-19 Thread Dotan Cohen
Someone hacked your server. Report it to the server admin.

-- 
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il

א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת
ا-ب-ت-ث-ج-ح-خ-د-ذ-ر-ز-س-ش-ص-ض-ط-ظ-ع-غ-ف-ق-ك-ل-م-ن-ه‍-و-ي
А-Б-В-Г-Д-Е-Ё-Ж-З-И-Й-К-Л-М-Н-О-П-Р-С-Т-У-Ф-Х-Ц-Ч-Ш-Щ-Ъ-Ы-Ь-Э-Ю-Я
а-б-в-г-д-е-ё-ж-з-и-й-к-л-м-н-о-п-р-с-т-у-ф-х-ц-ч-ш-щ-ъ-ы-ь-э-ю-я
ä-ö-ü-ß-Ä-Ö-Ü


Re: [PHP] PHP Site Security issue

2009-03-19 Thread Dotan Cohen
...and get it off of GoDaddy's servers. They are notorious for problems!

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



Re: [PHP] PHP Site Security issue

2009-03-19 Thread דניאל דנון
I think its rather someone hacked into his computer, Oh, I misuse the word
hack.
Its a famous way virus spread. Everytime you log into your FTP they change
it, its probably a virus on your computer since I do not believe someone hacked
into GoDaddy server
recentlyhttp://www.google.co.il/search?as_q=godaddy+iframehl=iwnum=10btnG=%D7%97%D7%99%D7%A4%D7%95%D7%A9+%D7%91-Googleas_epq=as_oq=as_eq=lr=cr=as_ft=ias_filetype=as_qdr=das_occt=anyas_dt=ias_sitesearch=as_rights=...


2009/3/19 Dotan Cohen dotanco...@gmail.com

 Someone hacked your server. Report it to the server admin.

 --
 Dotan Cohen

 http://what-is-what.com
 http://gibberish.co.il

 א-ב-ג-ד-ה-ו-ז-ח-ט-י-ך-כ-ל-ם-מ-ן-נ-ס-ע-ף-פ-ץ-צ-ק-ר-ש-ת
 ا-ب-ت-ث-ج-ح-خ-د-ذ-ر-ز-س-ش-ص-ض-ط-ظ-ع-غ-ف-ق-ك-ل-م-ن-ه‍-و-ي
 А-Б-В-Г-Д-Е-Ё-Ж-З-И-Й-К-Л-М-Н-О-П-Р-С-Т-У-Ф-Х-Ц-Ч-Ш-Щ-Ъ-Ы-Ь-Э-Ю-Я
 а-б-в-г-д-е-ё-ж-з-и-й-к-л-м-н-о-п-р-с-т-у-ф-х-ц-ч-ш-щ-ъ-ы-ь-э-ю-я
 ä-ö-ü-ß-Ä-Ö-Ü



Re: [PHP] PHP Site Security issue

2009-03-19 Thread Jochem Maas
Dotan Cohen schreef:
 Someone hacked your server. Report it to the server admin.
 

more likely that someone hacked the site, i.e. the site has some insecure
stuff in it that's allowing code to be uploaded and run.

I would suspect that as more likely than the server itself being hacked.

alternatively if go-daddy runs their webserver as a single user
(as opposed to using CGI or suexec) then maybe someone else with an account
is running a script that is adding crap to other sites php pages, this is
also possible. the 'solution' would be to make all php files readonly for
everyone but the fileowner (which should be the user linked to your webhosting 
account)

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



RE: [PHP] PHP Site Security issue

2009-03-19 Thread Marc Christopher Hall

Original message:


I suggest you put in a support ticket with GoDaddy. The URL's are not
genuine and beyond that I would hazard a guess that possibly your site login
has been compromised. Again, contact GoDaddy or whomever your hosting
provider is. (You said you domain is with GD but you didn't say they were
the host; I am just assuming you meant host.)


Added message:
Anybody else get bounced by the list when replying to this thread? And how
is it Pravinc's email didn't get bounced for the inclusion of links and the
replies that included the message did?
 

__ Information from ESET Smart Security, version of virus signature
database 3948 (20090319) __

The message was checked by ESET Smart Security.

http://www.eset.com
 


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



RE: [PHP] PHP Site Security issue

2009-03-19 Thread Ashley Sheridan
On Thu, 2009-03-19 at 11:48 -0400, Marc Christopher Hall wrote:
 Original message:
 
 
 I suggest you put in a support ticket with GoDaddy. The URL's are not
 genuine and beyond that I would hazard a guess that possibly your site login
 has been compromised. Again, contact GoDaddy or whomever your hosting
 provider is. (You said you domain is with GD but you didn't say they were
 the host; I am just assuming you meant host.)
 
 
 Added message:
 Anybody else get bounced by the list when replying to this thread? And how
 is it Pravinc's email didn't get bounced for the inclusion of links and the
 replies that included the message did?
  
 
 __ Information from ESET Smart Security, version of virus signature
 database 3948 (20090319) __
 
 The message was checked by ESET Smart Security.
 
 http://www.eset.com
  
 
 
Are you using any software that you sourced from somewhere else, like a
shopping cart, or forum software? Just recently my friend was hacked
because of a flaw in some software that hadn't been patched with the
latest release. End result was that all the index pages for all the
sites on the server were replaced with a message from some idiot calling
themselves the eye hacker!


Ash
www.ashleysheridan.co.uk


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



Re: [PHP] PHP Site Hacking Tools Revealed

2007-03-04 Thread Tijnema !

Hi,

I'm not able to open any of these files, because my NAV detects them as PHP
Backdoor Trojans. So they look nice, but they are detected by my AV (and
probably other AV programs too)
I'm not going to test these scripts, but i think it does show how many harm
a PHP script can do.
Do these scripts work on Linux  Windows?


On 3/5/07, Wolf [EMAIL PROTECTED] wrote:


Folks,

I have been busy with life over the last number of months and have
finally been able to sit down and take the time to construct a site to
house the scripts that people have used to try to take down my server.
The following URL links to the majority of the hack tools that have been
tried.  They are set to display their source only, a couple of them do
not display their Source, but I am sure that if you look on the web for
them as they are named on the link, that you will find what you seek.

http://ambiguous.dnsalias.net/

Wolf

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




Re: [PHP] PHP site ?

2004-09-05 Thread Lester Caine
Jack Gates wrote:
I replaced this:
$address = getenv(REMOTE_ADDR);
with this
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
and now I am getting exactly what I was trying to get.
This will work fine for networks that provide their own 'REMOTE_ADDR', 
but once proxies are in the way, you will see a proxy address rather 
than the real machine.

My own connection gives
You are host81-138-11-136.in-addr.btopenworld.com
for the osCommerce site. Probably good enough, but not really me ;)
--
Lester Caine
-
L.S.Caine Electronic Services
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP site ?

2004-09-05 Thread raditha dissanayake
Lester Caine wrote:
Jack Gates wrote:
I replaced this:
$address = getenv(REMOTE_ADDR);
with this
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
and now I am getting exactly what I was trying to get.

This will work fine for networks that provide their own 'REMOTE_ADDR', 
but once proxies are in the way, you will see a proxy address rather 
than the real machine.
very true. Some 'nice' proxies will oblige by sending an X-Forwarded-For 
header .

--
Raditha Dissanayake.

http://www.radinks.com/sftp/ | http://www.raditha.com/megaupload
Lean and mean Secure FTP applet with | Mega Upload - PHP file uploader
Graphical User Inteface. Just 128 KB | with progress bar.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP site ?

2004-09-04 Thread Marek Kilimajer
Jack Gates wrote:
How is osCommerce doing this?
Go here to see exactly what I am talking about:
http://wiki.oscommerce.com/docs
I am using the REMOTE_ADDR but it does not provide all the information that 
osCommerce is showing.

When I use the variable it shows the numbers like 192.168.10.25 (I know this 
is an internal network address, it is just for example.)

osCommerce gets more than just the numbers, they get the name as well I think.
Thanks for any insight on what they might be doing.
http://www.php.net/gethostbyaddr
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] PHP site ?

2004-09-04 Thread Paul Waring
 When I use the variable it shows the numbers like 192.168.10.25 (I know this
 is an internal network address, it is just for example.)

Use $_SERVER['REMOTE_HOST'] to get the hostname instead of the IP
address. This will only work if Apache has HostNameLookups enabled.

See:

http://uk.php.net/manual/en/reserved.variables.php#reserved.variables.server

for more details.

Be aware that this will still show the IP address for people like
myself who don't have reverse DNS enabled and also you will be making
at least one lookup request for each page request - hence why it is
disabled by default in Apache (see the comments in httpd.conf for more
information). Only enable it if you *really* need it.

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



Re: [PHP] PHP site ?

2004-09-04 Thread Jack Gates
Thanks for all the responses.  Now I am satisfied and can leave this one 
alone.

-- 
Jack Rhino Gates, Registered Linux user #342662
Morning Star Communications, www.morningstarcom.net
Web Hosting, Site Design, Domain Registration,
VMware Workstation Software and GSX Server Software

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



Re: [PHP] PHP site ?

2004-09-04 Thread Jack Gates
I replaced this:

$address = getenv(REMOTE_ADDR);

with this

$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);

and now I am getting exactly what I was trying to get.

-- 
Jack Rhino Gates, Registered Linux user #342662
Morning Star Communications, www.morningstarcom.net
Web Hosting, Site Design, Domain Registration,
VMware Workstation Software and GSX Server Software

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



Re: [PHP] php site

2003-10-19 Thread Burhan Khalid
Lai, Kenny wrote:

hey, does anyone have any good links they use for their php references?
http://www.php.net/manual
http://www.zend.com/zend/tut/
i'd also like to know how most people approach coding php from an OOP
standpoint
http://pear.php.net
http://www.phpclasses.org
( wasn't there another thread like this not too long ago? )

--
Burhan Khalid
phplist[at]meidomus[dot]com
http://www.meidomus.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] php site

2003-10-16 Thread Robert Cummings
On Thu, 2003-10-16 at 12:42, Lai, Kenny wrote:
 hey, does anyone have any good links they use for their php references?
 
 i'd also like to know how most people approach coding php from an OOP
 standpoint

Not that I'm plugging for you to use InterJinn (though you can feel
free) you can see how I used OOP to create the framework.

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

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



Re: [PHP] php site

2003-10-16 Thread Becoming Digital
The object-oriented design is part of why I like InterJinn so much.

Edward Dudlik
Those who say it cannot be done
should not interrupt the person doing it.

wishy washy | www.amazon.com/o/registry/EGDXEBBWTYUU



- Original Message - 
From: Robert Cummings [EMAIL PROTECTED]
To: Lai, Kenny [EMAIL PROTECTED]
Cc: PHP-General [EMAIL PROTECTED]
Sent: Thursday, 16 October, 2003 12:45
Subject: Re: [PHP] php site


On Thu, 2003-10-16 at 12:42, Lai, Kenny wrote:
 hey, does anyone have any good links they use for their php references?
 
 i'd also like to know how most people approach coding php from an OOP
 standpoint

Not that I'm plugging for you to use InterJinn (though you can feel
free) you can see how I used OOP to create the framework.

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

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



Re: [PHP] PHP Site Mirror

2002-08-21 Thread @ Edwin
Try this Jay,

  http://us.php.net/mirrors.php

(A mirror PLUS a list of mirrors...)

- E


Can someone give me a URL for a php.net mirror? I am having trouble with
access...

Thanks!

Jay

***
* Texas PHP Developers Conf  Spring 2003  *
* T Bar M Resort  Conference Center  *
* New Braunfels, Texas*
* San Antonio Area PHP Developers Group   *
* Interested? Contact [EMAIL PROTECTED] *
***



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




_
$B:G?7$N%U%!%$%J%s%9>pJs$H%i%$%U%W%i%s$N%"%I%P%$%9(B MSN $B%^%M!<(B 
http://money.msn.co.jp/


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


Re: [PHP] PHP Site

2001-09-18 Thread Scott

The net is slow right now as there is another Microsoft IIS worm/virus floating
around.  This one is worse than Code Red in the amount of traffic it
generates, something to effect of 10 requests a second, compared to one
with Code Red.  While php.net is not running IIS, it is subject to these
probes and it is bringing traffic to a crawl.  I have two servers here, one
runs IIS for my ASP clients and the other runs Mandrake for the real work.
The IIS box is (while not affected) getting hammered, but  the
Mandrake box just ignores it, still it is traffic we don't need.

At 04:28 PM 9/18/2001 -0700, Jason Bell wrote:
is it just me, or is php.net down right now?


-- 
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] PHP Site

2001-09-18 Thread Jason Bell

Thanks.  I suppose really need to download the docs to my machine.  :)


- Original Message -
From: Scott [EMAIL PROTECTED]
To: Jason Bell [EMAIL PROTECTED]; PHP Users
[EMAIL PROTECTED]
Sent: Tuesday, September 18, 2001 4:34 PM
Subject: Re: [PHP] PHP Site


 The net is slow right now as there is another Microsoft IIS worm/virus
floating
 around.  This one is worse than Code Red in the amount of traffic it
 generates, something to effect of 10 requests a second, compared to one
 with Code Red.  While php.net is not running IIS, it is subject to these
 probes and it is bringing traffic to a crawl.  I have two servers here,
one
 runs IIS for my ASP clients and the other runs Mandrake for the real work.
 The IIS box is (while not affected) getting hammered, but  the
 Mandrake box just ignores it, still it is traffic we don't need.

 At 04:28 PM 9/18/2001 -0700, Jason Bell wrote:
 is it just me, or is php.net down right now?


 --
 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 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] PHP Site

2001-09-18 Thread Scott

http://www.zend.com/manual/

At 04:37 PM 9/18/2001 -0700, Jason Bell wrote:
Thanks.  I suppose really need to download the docs to my machine.  :)


- Original Message -
From: Scott [EMAIL PROTECTED]
To: Jason Bell [EMAIL PROTECTED]; PHP Users
[EMAIL PROTECTED]
Sent: Tuesday, September 18, 2001 4:34 PM
Subject: Re: [PHP] PHP Site


  The net is slow right now as there is another Microsoft IIS worm/virus
floating
  around.  This one is worse than Code Red in the amount of traffic it
  generates, something to effect of 10 requests a second, compared to one
  with Code Red.  While php.net is not running IIS, it is subject to these
  probes and it is bringing traffic to a crawl.  I have two servers here,
one
  runs IIS for my ASP clients and the other runs Mandrake for the real work.
  The IIS box is (while not affected) getting hammered, but  the
  Mandrake box just ignores it, still it is traffic we don't need.
 
  At 04:28 PM 9/18/2001 -0700, Jason Bell wrote:
  is it just me, or is php.net down right now?
 
 
  --
  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 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 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] php site hacked?

2001-05-12 Thread sunny hundal

ok, i just clicked on the uk.php.net/mirrors.php and i got nothing.
so i went to uk.php.net and i get some wierd online.co.uk corporate
site which has no relation to php at all.

am i the only one who gets this feeling someone's replaced the
uk.php.net files??

/sunny 


--- Altunergil, Oktay [EMAIL PROTECTED] wrote:  I hate the
fact that php.net, phpbuilder.com are down very
 frequently and
 mysql.com is slow usually.. 
 
 It's too bad for our image.
 
 Oktay Altunergil
 
 -Original Message-
 From: Philip Olson [mailto:[EMAIL PROTECTED]]
 Sent: Friday, May 11, 2001 1:26 PM
 To: Don Pro
 Cc: php list
 Subject: Re: [PHP] Documentation
 
 
 
 
   http://uk.php.net/mirrors.php
 
 
 regards,
 philip
 
 On Fri, 11 May 2001, Don Pro wrote:
 
  Does anyone know alternative sites for PHP documentation?
  
  www.php.net seems to be down.
  
  Thankls,
  Don
  
  
  -- 
  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 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 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]
 



Do You Yahoo!?
Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk
or your free @yahoo.ie address at http://mail.yahoo.ie

-- 
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] php site hacked?

2001-05-12 Thread py

You are not the only one, this is strange indeed, I would not believe it is
a hacked tho.
Maybe a technicien mixed up the dns db, or something like that !
Go to: http://uk2.php.net/  wich is fine,
py

- Original Message -
From: sunny hundal [EMAIL PROTECTED]
To: Altunergil, Oktay [EMAIL PROTECTED]; 'Philip Olson'
[EMAIL PROTECTED]; Don Pro [EMAIL PROTECTED]
Cc: php list [EMAIL PROTECTED]
Sent: Saturday, May 12, 2001 2:31 PM
Subject: RE: [PHP] php site hacked?


 ok, i just clicked on the uk.php.net/mirrors.php and i got nothing.
 so i went to uk.php.net and i get some wierd online.co.uk corporate
 site which has no relation to php at all.

 am i the only one who gets this feeling someone's replaced the
 uk.php.net files??

 /sunny


 --- Altunergil, Oktay [EMAIL PROTECTED] wrote:  I hate the
 fact that php.net, phpbuilder.com are down very
  frequently and
  mysql.com is slow usually..
 
  It's too bad for our image.
 
  Oktay Altunergil
 
  -Original Message-
  From: Philip Olson [mailto:[EMAIL PROTECTED]]
  Sent: Friday, May 11, 2001 1:26 PM
  To: Don Pro
  Cc: php list
  Subject: Re: [PHP] Documentation
 
 
 
 
http://uk.php.net/mirrors.php
 
 
  regards,
  philip
 
  On Fri, 11 May 2001, Don Pro wrote:
 
   Does anyone know alternative sites for PHP documentation?
  
   www.php.net seems to be down.
  
   Thankls,
   Don
  
  
   --
   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 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 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]
 


 
 Do You Yahoo!?
 Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk
 or your free @yahoo.ie address at http://mail.yahoo.ie

 --
 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 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] php site down?

2001-04-10 Thread Nick Davies


There seems to be some routing problem at ALTER.NET (from the uk anyway).

Nick.

On Tue, 10 Apr 2001, Michael Hall wrote:

 I've been trying to get to the annotated manual all afternoon but can't
 get through to www.php.net. Anyone else have the same problem?
 
 Mick
 
 
 


-- 
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] php site down?

2001-04-10 Thread Zeus

If you want to view it now, you can try going to

http://php.intermedia.com.sg - Its a mirror.

- Original Message - 
From: Nick Davies [EMAIL PROTECTED]
To: Michael Hall [EMAIL PROTECTED]
Cc: PHP List [EMAIL PROTECTED]
Sent: Tuesday, 10 April, 2001 6:46 PM
Subject: Re: [PHP] php site down?


 
 There seems to be some routing problem at ALTER.NET (from the uk anyway).
 
 Nick.
 
 On Tue, 10 Apr 2001, Michael Hall wrote:
 
  I've been trying to get to the annotated manual all afternoon but can't
  get through to www.php.net. Anyone else have the same problem?
  
  Mick
  
  
  
 
 
 -- 
 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 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] PHP SITE SUGGESTION

2001-04-02 Thread Krznaric Michael

I have a suspcion that it may have to do with your shell interperting the 
character.  Try to quote your URL with single quotes ('').

Mike

-Original Message-
From: Michael Kimsal [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 10:41 AM
To: [EMAIL PROTECTED]
Subject: [PHP] PHP SITE SUGGESTION


With the hope that someone at php.net is listening...

I understand you want to track how many downloads you've got, etc. but
can you make the download more direct somehow?  I can't do a wget
against
the php.net site to download the latest version.  :(  I think it's the ?
in the
URL that gives me a problem.

Thanks.



-- 
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 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] 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
URL: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 pam_auth won't build with
  php-4.0.4pl1?  With the redesign of the php site, I think they
  removed older
  source files.  Can anyone confirm this, or does anyone know where
  I can get
  php-4.0.0 - 4.0.4 source files?
 
 The files are no longer avaible form the site but are still avalible via cvs
 (cvs.php.net) just checkout the files you want from the distributions
 directory. I wouldnt advise using anything less recent than 4.0.4pl1 though
 due to security issues in previous versions.
 
 James
 --
 James Moore
 [EMAIL PROTECTED]
 PHP Web Scripting: http://www.php.net/
 PHP QA Team: http://qa.php.net/
 PHP-GTK: http://gtk.php.net/
 VL-SRM: http://www.vl-srm.net/
 
 --
 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 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] PHP SITE REDESIGN - What happened to older source files?

2001-03-30 Thread James Moore

   I need an older version of PHP because my pam_auth won't build with
 php-4.0.4pl1?  With the redesign of the php site, I think they
 removed older
 source files.  Can anyone confirm this, or does anyone know where
 I can get
 php-4.0.0 - 4.0.4 source files?

The files are no longer avaible form the site but are still avalible via cvs
(cvs.php.net) just checkout the files you want from the distributions
directory. I wouldnt advise using anything less recent than 4.0.4pl1 though
due to security issues in previous versions.

James
--
James Moore
[EMAIL PROTECTED]
PHP Web Scripting: http://www.php.net/
PHP QA Team: http://qa.php.net/
PHP-GTK: http://gtk.php.net/
VL-SRM: http://www.vl-srm.net/


-- 
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] PHP SITE REDESIGN - What happened to older source files?

2001-03-30 Thread Krznaric Michael

I guess i have to do something along the lines of

1. cvs -d :pserver:[EMAIL PROTECTED]:/repository co php4/distributions
or 
2. cvs -d :pserver:[EMAIL PROTECTED]:/repository co distributions

With Number 1 above i get an error saying 
cvs server: warning: new-born php4/distributions has disappeared

Mike
-Original Message-
From: James Moore [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 12:18 PM
To: Krznaric Michael; '[EMAIL PROTECTED]'
Subject: RE: [PHP] PHP SITE REDESIGN - What happened to older source
files?


   I need an older version of PHP because my pam_auth won't build with
 php-4.0.4pl1?  With the redesign of the php site, I think they
 removed older
 source files.  Can anyone confirm this, or does anyone know where
 I can get
 php-4.0.0 - 4.0.4 source files?

The files are no longer avaible form the site but are still avalible via cvs
(cvs.php.net) just checkout the files you want from the distributions
directory. I wouldnt advise using anything less recent than 4.0.4pl1 though
due to security issues in previous versions.

James
--
James Moore
[EMAIL PROTECTED]
PHP Web Scripting: http://www.php.net/
PHP QA Team: http://qa.php.net/
PHP-GTK: http://gtk.php.net/
VL-SRM: http://www.vl-srm.net/

-- 
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] php site, parse error

2001-02-15 Thread Martin A. Marques

El Jue 15 Feb 2001 17:41, escribiste:
 Looks like the PHP site is down, parse error on site.inc... just an FYI :)

Ohhh, I'd love to get me hands on some of the code these great guys do. :-)

Saludos... :-)

-- 
System Administration: It's a dirty job, 
but someone told I had to do it.
-
Martn Marqus  email:  [EMAIL PROTECTED]
Santa Fe - Argentinahttp://math.unl.edu.ar/~martin/
Administrador de sistemas en math.unl.edu.ar
-

-- 
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] php site, parse error

2001-02-15 Thread Javier Muniz

Definately a bit frightening that a virtually static site has an include
that is over 300 lines long :)  Maybe just well documented?

-jm

-Original Message-
From: Martin A. Marques [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 15, 2001 12:40 PM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] php site, parse error


El Jue 15 Feb 2001 17:41, escribiste:
 Looks like the PHP site is down, parse error on site.inc... just an FYI :)

Ohhh, I'd love to get me hands on some of the code these great guys do. :-)

Saludos... :-)

-- 
System Administration: It's a dirty job, 
but someone told I had to do it.
-
Martn Marqus  email:  [EMAIL PROTECTED]
Santa Fe - Argentinahttp://math.unl.edu.ar/~martin/
Administrador de sistemas en math.unl.edu.ar
-

-- 
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 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] php site, parse error

2001-02-15 Thread Philip Olson


  Looks like the PHP site is down, parse error on site.inc... just an FYI :)
 
 Ohhh, I'd love to get me hands on some of the code these great guys do. :-)

You can, for example (re: above) see :

http://php.net/source.php?page_url=/include/site.inc

It's *all* public and available, see :

http://php.net/COPYRIGHT.txt

Note the "source" button on every php.net page.


Regards,

Philip Olson
http://www.cornado.com/



-- 
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] Compiler? (Was Re: [PHP] PHP site on CD-ROM)

2001-01-25 Thread Angus Mann

At 22:35 18/01/01 -0800, Rasmus Lerdorf wrote:

You would need to go through a web server for it to work.

I seem to recall seeing something on the Zend site a while back about a 
"compiler" for PHP that was in the pipeline. After the store was launched I 
can't find anything. Am I imagining things, or does it look like Zend 
pulled the plug? Did anyone else in here see it? :)

Thanks,

Angus.



On Fri, 19 Jan 2001, Philip Apostol wrote:

  Can I run a PHP/Apache/MySQL services on a CD-ROM.  We have PHP scripts 
 that
  handle queries on a large database.  We would like to distribute it on a
  CD-ROM so they could access the database offline.  Is it possible? Or are
  there any similar solutions for this?  Im thinking of a text-file database
  and access it via javascript but have no much time to study on 
 this.  If php
  can be run on the cd-rom, that would be a better solution.   But any
  solution you posted here will be highly appreciated.  Thanks in advance.
 
  Philip


-- 
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] Compiler? (Was Re: [PHP] PHP site on CD-ROM)

2001-01-25 Thread Adam Wright

The compiler has become the encoder, because it's rather hard to meet the
expectations of a 'compiler' (many would expect it to produce binaries and
heavily optimised code). Encoder makes more sense, based on what the product
does.

adamw

- Original Message -
From: "Angus Mann" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 25, 2001 11:41 AM
Subject: [PHP] Compiler? (Was Re: [PHP] PHP site on CD-ROM)


 At 22:35 18/01/01 -0800, Rasmus Lerdorf wrote:

 You would need to go through a web server for it to work.

 I seem to recall seeing something on the Zend site a while back about a
 "compiler" for PHP that was in the pipeline. After the store was launched
I
 can't find anything. Am I imagining things, or does it look like Zend
 pulled the plug? Did anyone else in here see it? :)

 Thanks,

 Angus.



 On Fri, 19 Jan 2001, Philip Apostol wrote:
 
   Can I run a PHP/Apache/MySQL services on a CD-ROM.  We have PHP
scripts
  that
   handle queries on a large database.  We would like to distribute it on
a
   CD-ROM so they could access the database offline.  Is it possible? Or
are
   there any similar solutions for this?  Im thinking of a text-file
database
   and access it via javascript but have no much time to study on
  this.  If php
   can be run on the cd-rom, that would be a better solution.   But any
   solution you posted here will be highly appreciated.  Thanks in
advance.
  
   Philip


 --
 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 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] Compiler? (Was Re: [PHP] PHP site on CD-ROM)

2001-01-25 Thread Zeev Suraski

The Encoder does in fact all of the optimizations of the Zend Optimizer 
(including ones that aren't enabled in the plug-in Zend Optimizer, because 
performing them every time may take more than what they would save, 
something that is not an issue in a one time compilation.
The reason it's not named 'Compiler' is indeed because people usually (and 
erroneously) expect all compilers to produce machine language code.

Zeev

At 13:41 25/1/2001, Adam Wright wrote:
The compiler has become the encoder, because it's rather hard to meet the
expectations of a 'compiler' (many would expect it to produce binaries and
heavily optimised code). Encoder makes more sense, based on what the product
does.

adamw

- Original Message -
From: "Angus Mann" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, January 25, 2001 11:41 AM
Subject: [PHP] Compiler? (Was Re: [PHP] PHP site on CD-ROM)


  At 22:35 18/01/01 -0800, Rasmus Lerdorf wrote:
 
  You would need to go through a web server for it to work.
 
  I seem to recall seeing something on the Zend site a while back about a
  "compiler" for PHP that was in the pipeline. After the store was launched
I
  can't find anything. Am I imagining things, or does it look like Zend
  pulled the plug? Did anyone else in here see it? :)
 
  Thanks,
 
  Angus.
 
 
 
  On Fri, 19 Jan 2001, Philip Apostol wrote:
  
Can I run a PHP/Apache/MySQL services on a CD-ROM.  We have PHP
scripts
   that
handle queries on a large database.  We would like to distribute it on
a
CD-ROM so they could access the database offline.  Is it possible? Or
are
there any similar solutions for this?  Im thinking of a text-file
database
and access it via javascript but have no much time to study on
   this.  If php
can be run on the cd-rom, that would be a better solution.   But any
solution you posted here will be highly appreciated.  Thanks in
advance.
   
Philip
 
 
  --
  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 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]

--
Zeev Suraski [EMAIL PROTECTED]
CTO   co-founder, Zend Technologies Ltd. http://www.zend.com/


-- 
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] Compiler? (Was Re: [PHP] PHP site on CD-ROM)

2001-01-25 Thread Jim Jagielski

Angus Mann wrote:
 
 At 22:35 18/01/01 -0800, Rasmus Lerdorf wrote:
 
 You would need to go through a web server for it to work.
 
 I seem to recall seeing something on the Zend site a while back about a 
 "compiler" for PHP that was in the pipeline. After the store was launched I 
 can't find anything. Am I imagining things, or does it look like Zend 
 pulled the plug? Did anyone else in here see it? :)
 
The Compiler underwent a name change only... It's now called the
Encoder. The reason is because, well, a compiler implies a
translation from source text to machine code as well as
a required process to allow that source text to be executable.
So the Encoder is not a compiler per se... Even when it
was called the Compiler it wasn't one, because you don't need
one for PHP. People thought that you did, and so to avoid
confusion and misconceptions the name was changed.

PS: I'm also [EMAIL PROTECTED]
-- 
===
   Jim Jagielski   [|]   [EMAIL PROTECTED]   [|]   http://www.jaguNET.com/
  "Casanova will have many weapons; To beat him you will
  have to have more than forks and flatulence."

-- 
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] PHP site on CD-ROM

2001-01-18 Thread Rasmus Lerdorf

You would need to go through a web server for it to work.

On Fri, 19 Jan 2001, Philip Apostol wrote:

 Can I run a PHP/Apache/MySQL services on a CD-ROM.  We have PHP scripts that
 handle queries on a large database.  We would like to distribute it on a
 CD-ROM so they could access the database offline.  Is it possible? Or are
 there any similar solutions for this?  Im thinking of a text-file database
 and access it via javascript but have no much time to study on this.  If php
 can be run on the cd-rom, that would be a better solution.   But any
 solution you posted here will be highly appreciated.  Thanks in advance.

 Philip


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