Best Practice to Create Dynamic URL"s- With Username

Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 09:54:30 von Gaurav Kumar

--00504502b146ac3c7c047411ca78
Content-Type: text/plain; charset=ISO-8859-1

Hi All,

I am creating a social networking website. I want that every user should
have there own profile page with a static URL like-

http://www.abcnetwork/user/username

Where username will be dynamic userid or something else.

This is something very similar to www.youtube.com/user/kumargauravmail (this
is my profile page).

So what should be the best practice to create such DYNAMIC URL's OR what
kind of methodology youtube is following?

Thanks in Advance.

Gaurav Kumar
OSWebstudio.com

--00504502b146ac3c7c047411ca78--

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 09:56:22 von Ashley Sheridan

On Mon, 2009-09-21 at 13:24 +0530, Gaurav Kumar wrote:
> Hi All,
>
> I am creating a social networking website. I want that every user should
> have there own profile page with a static URL like-
>
> http://www.abcnetwork/user/username
>
> Where username will be dynamic userid or something else.
>
> This is something very similar to www.youtube.com/user/kumargauravmail (this
> is my profile page).
>
> So what should be the best practice to create such DYNAMIC URL's OR what
> kind of methodology youtube is following?
>
> Thanks in Advance.
>
> Gaurav Kumar
> OSWebstudio.com

If you're working on an Apache server, your best bet is to look at
mod_rewrite. You can write a simple rule to match against these sorts of
URL formats, so that to your visitors it appears as if the actual path
exists, but internally it can get translated to something like
http://www.abcnetwork.com/profile.php?id=username

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




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

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 10:00:54 von Tommy Pham

----- Original Message ----
> From: Gaurav Kumar
> To: php-general@lists.php.net
> Sent: Monday, September 21, 2009 12:54:30 AM
> Subject: [PHP] Best Practice to Create Dynamic URL's- With Username
>
> Hi All,
>
> I am creating a social networking website. I want that every user should
> have there own profile page with a static URL like-
>
> http://www.abcnetwork/user/username
>
> Where username will be dynamic userid or something else.
>
> This is something very similar to www.youtube.com/user/kumargauravmail (this
> is my profile page).
>
> So what should be the best practice to create such DYNAMIC URL's OR what
> kind of methodology youtube is following?
>
> Thanks in Advance.
>
> Gaurav Kumar
> OSWebstudio.com

Assuming the 'username' is from DB, look into URL rewrite. Thus, client see this

http://www.abcnetwork/user/username

which translates into this (or something similar) to PHP

http://www.abcnetwork/userProfile.php?user=username

Of course, you'll need to handle the 404 just in case ;)

Regards,
Tommy


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

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 10:31:05 von Ralph Deffke

be aware if you do not have full control of your server setup, this type of
parameter handling is not possible on most shared hostings.

however url encoded it is never a problem. so be clear where yout page will
be hosted.

ralph_deffke@yahoo.de

"Gaurav Kumar" wrote in message
news:87292e170909210054k79858b96yf09eeca5111ec788@mail.gmail .com...
> Hi All,
>
> I am creating a social networking website. I want that every user should
> have there own profile page with a static URL like-
>
> http://www.abcnetwork/user/username
>
> Where username will be dynamic userid or something else.
>
> This is something very similar to www.youtube.com/user/kumargauravmail
(this
> is my profile page).
>
> So what should be the best practice to create such DYNAMIC URL's OR what
> kind of methodology youtube is following?
>
> Thanks in Advance.
>
> Gaurav Kumar
> OSWebstudio.com
>



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

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 10:40:17 von Richard Heyes

Hi,

> ...

As has been suggested you could use mod_rewrite, but you don't have to
if your needs are simple (or maybe you don't have it). You could also
use the ForceType directive. Eg on my website the URLs are like this:

http://www.phpguru.org/article/20-years-of-php

Where "article" is actually a PHP file without the .php extension.
It's forced to run as a PHP file using this:


ForceType application/x-httpd-php


And you will find the URL in $_SERVER somewhere.

--
Richard Heyes
HTML5 graphing: RGraph - www.rgraph.net (updated 5th September)
Lots of PHP and Javascript code - http://www.phpguru.org

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

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 11:27:45 von Gaurav Kumar

--00504502cc9f29258c04741318db
Content-Type: text/plain; charset=ISO-8859-1

A Big Thanks to all of you.

Question I was Asked by Andrea- "mod_reqrite or .htaccess is the answer, but
I wonder why you choose /user/username rather than just /username a la
twitter."

I will be using many other aspects of my users something like
"/projects/username/"; "/gallery/username/".

OK Ashley, Tommy and Ralph-

100% correct that mod_rewrite will be used.

I am a bit sticky that my URL will be-
"http://www.abcnetwork/user/*Ashley*".

So will I get $_GET["user"] with value as "*Ashley*" or *Tommy* in my
script?

So what exactly will be
the ".htaccess" rule for above?


Thanks,

Gaurav Kumar
OSWebstudio.Com



On Mon, Sep 21, 2009 at 1:26 PM, Ashley Sheridan
wrote:

> On Mon, 2009-09-21 at 13:24 +0530, Gaurav Kumar wrote:
> > Hi All,
> >
> > I am creating a social networking website. I want that every user should
> > have there own profile page with a static URL like-
> >
> > http://www.abcnetwork/user/username
> >
> > Where username will be dynamic userid or something else.
> >
> > This is something very similar to www.youtube.com/user/kumargauravmail(this
> > is my profile page).
> >
> > So what should be the best practice to create such DYNAMIC URL's OR what
> > kind of methodology youtube is following?
> >
> > Thanks in Advance.
> >
> > Gaurav Kumar
> > OSWebstudio.com
>
> If you're working on an Apache server, your best bet is to look at
> mod_rewrite. You can write a simple rule to match against these sorts of
> URL formats, so that to your visitors it appears as if the actual path
> exists, but internally it can get translated to something like
> http://www.abcnetwork.com/profile.php?id=username
>
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
>
>
>
>

--00504502cc9f29258c04741318db--

RE: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 11:36:44 von Andrea Giammarchi

--_393ab092-d1f1-4b63-9bc2-05a143542176_
Content-Type: text/plain; charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable




>=20
> Question I was Asked by Andrea- "mod_reqrite or .htaccess is the answer=
=2C but
> I wonder why you choose /user/username rather than just /username a la
> twitter."
>=20
> I will be using many other aspects of my users something like
> "/projects/username/"=3B "/gallery/username/".

well=2C it does not matter if this service is user based.

/username/ #as user home page

/username/projects/ #as user projects

/username/gallery/ #as user gallery

/username/etc ...

it's just a silly point but from user home page you isntantly know if user =
exists and you instantly know subsections

In your way you assume that there is a gallery for that user while he could=
have created only projects=2C without galleries.
So one search failed=2C while to go in the user page I need to digit /user/=
before=2C not a big deal but we are in tinyurl and bit.ly era

Google Code put simply a /p/ as prefix plus the project name plus subsectio=
n


/p/myprojname/

/p/myprojname/wiki

since you are starting now=2C maybe you could consider this semantic altern=
ative=2C if it suits your requirements.

Regards
> > Thanks=2C
> > Ash
> > http://www.ashleysheridan.co.uk
> >
> >
> >
> >

____________________________________________________________ _____
More than messages=96check out the rest of the Windows Live=99.
http://www.microsoft.com/windows/windowslive/=

--_393ab092-d1f1-4b63-9bc2-05a143542176_--

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 11:50:49 von Gaurav Kumar

--001636e1fd3fa809310474136aee
Content-Type: text/plain; charset=windows-1252
Content-Transfer-Encoding: quoted-printable

I totally agree with this architecture.

You are correct, I am just in the starting phase of the project and in fact
still need to define the architecture in detail.

Now the question I asked in my last reply is still to be answered?

Gaurav Kumar
OSWebstudio.Com

On Mon, Sep 21, 2009 at 3:06 PM, Andrea Giammarchi wrot=
e:

>
>
> >
> > Question I was Asked by Andrea- "mod_reqrite or .htaccess is the answer=
,
> but
> > I wonder why you choose /user/username rather than just /username a la
> > twitter."
> >
> > I will be using many other aspects of my users something like
> > "/projects/username/"; "/gallery/username/".
>
> well, it does not matter if this service is user based.
>
> /username/ #as user home page
> /username/projects/ #as user projects
> /username/gallery/ #as user gallery
> /username/etc ...
>
> it's just a silly point but from user home page you isntantly know if use=
r
> exists and you instantly know subsections
>
> In your way you assume that there is a gallery for that user while he cou=
ld
> have created only projects, without galleries.
> So one search failed, while to go in the user page I need to digit /user/
> before, not a big deal but we are in tinyurl and bit.ly era
>
> Google Code put simply a /p/ as prefix plus the project name plus
> subsection
>
> /p/myprojname/
> /p/myprojname/wiki
>
> since you are starting now, maybe you could consider this semantic
> alternative, if it suits your requirements.
>
> Regards
> > > Thanks,
> > > Ash
> > > http://www.ashleysheridan.co.uk
> > >
> > >
> > >
> > >
>
> ------------------------------
> check out the rest of the Windows Live=99. More than mail=96Windows Live=
=99 goes
> way beyond your inbox. More than messages s/windowslive/>
>

--001636e1fd3fa809310474136aee--

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 11:55:20 von Ashley Sheridan

On Mon, 2009-09-21 at 15:20 +0530, Gaurav Kumar wrote:
> I totally agree with this architecture.=20
>=20
> You are correct, I am just in the starting phase of the project and in
> fact still need to define the architecture in detail.
>=20
> Now the question I asked in my last reply is still to be answered?
>=20
> Gaurav Kumar
> OSWebstudio.Com
>=20
> On Mon, Sep 21, 2009 at 3:06 PM, Andrea Giammarchi
> wrote:
> =20
> =20
> >=20
> > Question I was Asked by Andrea- "mod_reqrite or .htaccess is
> the answer, but
> > I wonder why you choose /user/username rather than
> just /username a la
> > twitter."
> >=20
> > I will be using many other aspects of my users something
> like
> > "/projects/username/"; "/gallery/username/".
> =20
> =20
> well, it does not matter if this service is user based.
> =20
> /username/ #as user home page
> /username/projects/ #as user projects
> /username/gallery/ #as user gallery
> /username/etc ...
> =20
> it's just a silly point but from user home page you isntantly
> know if user exists and you instantly know subsections
> =20
> In your way you assume that there is a gallery for that user
> while he could have created only projects, without galleries.
> So one search failed, while to go in the user page I need to
> digit /user/ before, not a big deal but we are in tinyurl and
> bit.ly era
> =20
> Google Code put simply a /p/ as prefix plus the project name
> plus subsection
> =20
> /p/myprojname/
> /p/myprojname/wiki
> =20
> since you are starting now, maybe you could consider this
> semantic alternative, if it suits your requirements.
> =20
> Regards
> =20
> > > Thanks,
> > > Ash
> > > http://www.ashleysheridan.co.uk
> > >
> > >
> > >
> > >
> =20
> =20
> =20
> ____________________________________________________________ __
> check out the rest of the Windows Liveâ„=A2. More than mail=
â€=93
> Windows Liveâ„=A2 goes way beyond your inbox. More than messa=
ges
>=20
For help with the mod_rewrite, a Google search never goes amiss, first
result I found for 'mod_rewrite example' is
http://www.workingwith.me.uk/articles/scripting/mod_rewrite . I looked
at it quickly and it does cover what you need.

As for what you get as $_GET parameters, that's entirely up to you, and
as you will see from the above link, it's fairly simple to mess about
with.


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




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

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 12:08:50 von Gaurav Kumar

--0016368e26de1ba7d6047413ab78
Content-Type: text/plain; charset=windows-1252
Content-Transfer-Encoding: quoted-printable

Thanks Ashley and all the folks out there...

On Mon, Sep 21, 2009 at 3:25 PM, Ashley Sheridan
wrote:

> On Mon, 2009-09-21 at 15:20 +0530, Gaurav Kumar wrote:
> > I totally agree with this architecture.
> >
> > You are correct, I am just in the starting phase of the project and in
> > fact still need to define the architecture in detail.
> >
> > Now the question I asked in my last reply is still to be answered?
> >
> > Gaurav Kumar
> > OSWebstudio.Com
> >
> > On Mon, Sep 21, 2009 at 3:06 PM, Andrea Giammarchi
> > wrote:
> >
> >
> > >
> > > Question I was Asked by Andrea- "mod_reqrite or .htaccess is
> > the answer, but
> > > I wonder why you choose /user/username rather than
> > just /username a la
> > > twitter."
> > >
> > > I will be using many other aspects of my users something
> > like
> > > "/projects/username/"; "/gallery/username/".
> >
> >
> > well, it does not matter if this service is user based.
> >
> > /username/ #as user home page
> > /username/projects/ #as user projects
> > /username/gallery/ #as user gallery
> > /username/etc ...
> >
> > it's just a silly point but from user home page you isntantly
> > know if user exists and you instantly know subsections
> >
> > In your way you assume that there is a gallery for that user
> > while he could have created only projects, without galleries.
> > So one search failed, while to go in the user page I need to
> > digit /user/ before, not a big deal but we are in tinyurl and
> > bit.ly era
> >
> > Google Code put simply a /p/ as prefix plus the project name
> > plus subsection
> >
> > /p/myprojname/
> > /p/myprojname/wiki
> >
> > since you are starting now, maybe you could consider this
> > semantic alternative, if it suits your requirements.
> >
> > Regards
> >
> > > > Thanks,
> > > > Ash
> > > > http://www.ashleysheridan.co.uk
> > > >
> > > >
> > > >
> > > >
> >
> >
> >
> > ____________________________________________________________ __
> > check out the rest of the Windows Live=99. More than mail=96
> > Windows Live=99 goes way beyond your inbox. More than messages
> >
> For help with the mod_rewrite, a Google search never goes amiss, first
> result I found for 'mod_rewrite example' is
> http://www.workingwith.me.uk/articles/scripting/mod_rewrite . I looked
> at it quickly and it does cover what you need.
>
> As for what you get as $_GET parameters, that's entirely up to you, and
> as you will see from the above link, it's fairly simple to mess about
> with.
>
>
> Thanks,
> Ash
> http://www.ashleysheridan.co.uk
>
>
>
>

--0016368e26de1ba7d6047413ab78--

Re: Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 12:21:47 von Tommy Pham

----- Original Message ----
> From: Ralph Deffke
> To: php-general@lists.php.net
> Sent: Monday, September 21, 2009 1:31:05 AM
> Subject: [PHP] Re: Best Practice to Create Dynamic URL's- With Username
>
> be aware if you do not have full control of your server setup, this type of
> parameter handling is not possible on most shared hostings.
>
> however url encoded it is never a problem. so be clear where yout page will
> be hosted.
>
> ralph_deffke@yahoo.de
>

If your hosting service company doesn't permit/use URL rewrite (mod_rewrite for Apache), then ask them to specify a 404 error page for you. You can then do an ugly hack of URL rewrite in your (PHP) 404 error page so the URL will be SEF ;)

Regards,
Tommy

> "Gaurav Kumar" wrote in message
> news:87292e170909210054k79858b96yf09eeca5111ec788@mail.gmail .com...
> > Hi All,
> >
> > I am creating a social networking website. I want that every user should
> > have there own profile page with a static URL like-
> >
> > http://www.abcnetwork/user/username
> >
> > Where username will be dynamic userid or something else.
> >
> > This is something very similar to www.youtube.com/user/kumargauravmail
> (this
> > is my profile page).
> >
> > So what should be the best practice to create such DYNAMIC URL's OR what
> > kind of methodology youtube is following?
> >
> > Thanks in Advance.
> >
> > Gaurav Kumar
> > OSWebstudio.com
> >
>
>
>
> --
> 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: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 12:42:00 von Tommy Pham

----- Original Message ----=0A> From: Ashley Sheridan o.uk>=0A> To: Gaurav Kumar =0A> Cc: Andrea Gi=
ammarchi ; php-general@lists.php.net=0A> Sent: Monday, =
September 21, 2009 2:55:20 AM=0A> Subject: Re: [PHP] Best Practice to Creat=
e Dynamic URL's- With Username=0A> =0A> On Mon, 2009-09-21 at 15:20 +0530, =
Gaurav Kumar wrote:=0A> > I totally agree with this architecture. =0A> > =
=0A> > You are correct, I am just in the starting phase of the project and =
in=0A> > fact still need to define the architecture in detail.=0A> > =0A> >=
Now the question I asked in my last reply is still to be answered?=0A> > =
=0A> > Gaurav Kumar=0A> > OSWebstudio.Com=0A> > =0A> > On Mon, Sep 21, 2009=
at 3:06 PM, Andrea Giammarchi=0A> > wrote:=0A> > =0A> > =0A>=
> > =0A> > > Question I was Asked by Andrea- "mod_reqrite =
or .htaccess is=0A> > the answer, but=0A> > > I wonder why =
you choose /user/username rather than=0A> > just /username a la=0A>=
> > twitter."=0A> > > =0A> > > I will be using man=
y other aspects of my users something=0A> > like=0A> > > "/=
projects/username/"; "/gallery/username/".=0A> > =0A> > =0A> =
> well, it does not matter if this service is user based.=0A> > =
=0A> > /username/ #as user home page=0A> > /username/pr=
ojects/ #as user projects=0A> > /username/gallery/ #as user gallery=
=0A> > /username/etc ...=0A> > =0A> > it's just a si=
lly point but from user home page you isntantly=0A> > know if user =
exists and you instantly know subsections=0A> > =0A> > In yo=
ur way you assume that there is a gallery for that user=0A> > while=
he could have created only projects, without galleries.=0A> > So o=
ne search failed, while to go in the user page I need to=0A> > digi=
t /user/ before, not a big deal but we are in tinyurl and=0A> > bit.=
ly era=0A> > =0A> > Google Code put simply a /p/ as prefix p=
lus the project name=0A> > plus subsection=0A> > =0A> > =
/p/myprojname/=0A> > /p/myprojname/wiki=0A> > =0A> > =
since you are starting now, maybe you could consider this=0A> > =
semantic alternative, if it suits your requirements.=0A> > =0A> > =
Regards=0A> > =0A> > > > Thanks,=0A> > > > A=
sh=0A> > > > http://www.ashleysheridan.co.uk=0A> > > >=0A> =
> > >=0A> > > >=0A> > > >=0A> > =0A> > =
=0A> > =0A> > ____________________________________________=
__________________=0A> > check out the rest of the Windows Live=E2=
„¢. More than mail– > > Windows Liveâ„=A2 goes wa=
y beyond your inbox. More than messages=0A> > =0A> For help with the mod_re=
write, a Google search never goes amiss, first=0A> result I found for 'mod_=
rewrite example' is=0A> http://www.workingwith.me.uk/articles/scripting/mod=
_rewrite . I looked=0A> at it quickly and it does cover what you need.=0A> =
=0A> As for what you get as $_GET parameters, that's entirely up to you, an=
d=0A> as you will see from the above link, it's fairly simple to mess about=
=0A> with.=0A> =0A> =0A> Thanks,=0A> Ash=0A> http://www.ashleysheridan.co.u=
k=0A> =0A> Ash, What's the IP that the link you gave resolve to?=
I'm getting timed out for the DNS lookup on my end ... Thanks,=0ATo=
mmy > =0A> =0A> --=0A> PHP General Mailing List (http://www.php.net/)=
=0A> To unsubscribe, visit: http://www.php.net/unsub.php=0A

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

Re: Best Practice to Create Dynamic URL"s- With Username

am 21.09.2009 12:44:26 von Ashley Sheridan

On Mon, 2009-09-21 at 03:42 -0700, Tommy Pham wrote:
> ----- Original Message ----
> > From: Ashley Sheridan
> > To: Gaurav Kumar
> > Cc: Andrea Giammarchi ; php-general@lists.php.net
> > Sent: Monday, September 21, 2009 2:55:20 AM
> > Subject: Re: [PHP] Best Practice to Create Dynamic URL's- With Username
> >=20
> > On Mon, 2009-09-21 at 15:20 +0530, Gaurav Kumar wrote:
> > > I totally agree with this architecture.=20
> > >=20
> > > You are correct, I am just in the starting phase of the project and i=
n
> > > fact still need to define the architecture in detail.
> > >=20
> > > Now the question I asked in my last reply is still to be answered?
> > >=20
> > > Gaurav Kumar
> > > OSWebstudio.Com
> > >=20
> > > On Mon, Sep 21, 2009 at 3:06 PM, Andrea Giammarchi
> > > wrote:
> > > =20
> > > =20
> > > >=20
> > > > Question I was Asked by Andrea- "mod_reqrite or .htaccess i=
s
> > > the answer, but
> > > > I wonder why you choose /user/username rather than
> > > just /username a la
> > > > twitter."
> > > >=20
> > > > I will be using many other aspects of my users something
> > > like
> > > > "/projects/username/"; "/gallery/username/".
> > > =20
> > > =20
> > > well, it does not matter if this service is user based.
> > > =20
> > > /username/ #as user home page
> > > /username/projects/ #as user projects
> > > /username/gallery/ #as user gallery
> > > /username/etc ...
> > > =20
> > > it's just a silly point but from user home page you isntantly
> > > know if user exists and you instantly know subsections
> > > =20
> > > In your way you assume that there is a gallery for that user
> > > while he could have created only projects, without galleries.
> > > So one search failed, while to go in the user page I need to
> > > digit /user/ before, not a big deal but we are in tinyurl and
> > > bit.ly era
> > > =20
> > > Google Code put simply a /p/ as prefix plus the project name
> > > plus subsection
> > > =20
> > > /p/myprojname/
> > > /p/myprojname/wiki
> > > =20
> > > since you are starting now, maybe you could consider this
> > > semantic alternative, if it suits your requirements.
> > > =20
> > > Regards
> > > =20
> > > > > Thanks,
> > > > > Ash
> > > > > http://www.ashleysheridan.co.uk
> > > > >
> > > > >
> > > > >
> > > > >
> > > =20
> > > =20
> > > =20
> > > ____________________________________________________________ _=
_
> > > check out the rest of the Windows Liveâ„=A2. More than ma=
ilâ€=93
> > > Windows Liveâ„=A2 goes way beyond your inbox. More than m=
essages
> > >=20
> > For help with the mod_rewrite, a Google search never goes amiss, first
> > result I found for 'mod_rewrite example' is
> > http://www.workingwith.me.uk/articles/scripting/mod_rewrite . I looked
> > at it quickly and it does cover what you need.
> >=20
> > As for what you get as $_GET parameters, that's entirely up to you, and
> > as you will see from the above link, it's fairly simple to mess about
> > with.
> >=20
> >=20
> > Thanks,
> > Ash
> > http://www.ashleysheridan.co.uk
> >=20
> >=20
>=20
> Ash,
>=20
> What's the IP that the link you gave resolve to? I'm getting timed out f=
or the DNS lookup on my end ...=20
>=20
> Thanks,
> Tommy
>=20
> >=20
> >=20
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
>=20
>=20

I get 80.82.121.153 for it. You might have an issue with your DNS
server. There are a lot of freely available alternative DNS servers
about the world that you can use instead. I had to do that myself one
time, when the DNS server issued by my ISP was misbehaving and I was
getting lots of timeouts just like you are getting.

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




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