FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » multiple visitors at the same time
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
multiple visitors at the same time [message #182979] Mon, 30 September 2013 22:12 Go to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
I kind of realized i now have another problem to deal with.
As I have it set up, when a visitor enters, that creates a playlist for
that visitor.
What happens when another visitor is online?
I tried it with both IE and FF at the same time.
While the list is dffierent, there is no audio in the second browser.

So I figure I will have to give each browser a unique id to the playlist.
But how?
Would the server crash with s few thousand visitors online at the same
time?

The wimpy player can embed the playlist into the html, but their way of
doing it doesn't allowo me to display the file names unless the gilename
match exactly.
that is, I could not show "exodus - henry mancini". I'd have to show
65-001mp3 because that's how I have the naming convention set up.
Re: multiple visitors at the same time [message #182981 is a reply to message #182979] Mon, 30 September 2013 23:16 Go to previous messageGo to next message
Michael Vilain is currently offline  Michael Vilain
Messages: 88
Registered: September 2010
Karma: 0
Member
In article <39cy6hpu04oe$(dot)18k40zgdny9go$(dot)dlg(at)40tude(dot)net>,
richard <noreply(at)example(dot)com> wrote:

> I kind of realized i now have another problem to deal with.
> As I have it set up, when a visitor enters, that creates a playlist for
> that visitor.
> What happens when another visitor is online?
> I tried it with both IE and FF at the same time.
> While the list is dffierent, there is no audio in the second browser.
>
> So I figure I will have to give each browser a unique id to the playlist.
> But how?
> Would the server crash with s few thousand visitors online at the same
> time?
>
> The wimpy player can embed the playlist into the html, but their way of
> doing it doesn't allowo me to display the file names unless the gilename
> match exactly.
> that is, I could not show "exodus - henry mancini". I'd have to show
> 65-001mp3 because that's how I have the naming convention set up.

Look into session ID. When someone comes to your site, they have to
login, yes? Tie the session ID created by php to the username. Use
that to create a unique MD5 hash for a playlist you store under their
username in MySQL.

You do realize that all this will require sychronizing things and MySQL
(or some other DB that deals with record locking)?

--
DeeDee, don't press that button! DeeDee! NO! Dee...
[I filter all Goggle Groups posts, so any reply may be automatically ignored]
Re: multiple visitors at the same time [message #182982 is a reply to message #182981] Mon, 30 September 2013 23:23 Go to previous messageGo to next message
richard is currently offline  richard   
Messages: 213
Registered: June 2013
Karma: 0
Senior Member
On Mon, 30 Sep 2013 16:16:23 -0700, Michael Vilain wrote:

> In article <39cy6hpu04oe$(dot)18k40zgdny9go$(dot)dlg(at)40tude(dot)net>,
> richard <noreply(at)example(dot)com> wrote:
>
>> I kind of realized i now have another problem to deal with.
>> As I have it set up, when a visitor enters, that creates a playlist for
>> that visitor.
>> What happens when another visitor is online?
>> I tried it with both IE and FF at the same time.
>> While the list is dffierent, there is no audio in the second browser.
>>
>> So I figure I will have to give each browser a unique id to the playlist.
>> But how?
>> Would the server crash with s few thousand visitors online at the same
>> time?
>>
>> The wimpy player can embed the playlist into the html, but their way of
>> doing it doesn't allowo me to display the file names unless the gilename
>> match exactly.
>> that is, I could not show "exodus - henry mancini". I'd have to show
>> 65-001mp3 because that's how I have the naming convention set up.
>
> Look into session ID. When someone comes to your site, they have to
> login, yes? Tie the session ID created by php to the username. Use
> that to create a unique MD5 hash for a playlist you store under their
> username in MySQL.
>
> You do realize that all this will require sychronizing things and MySQL
> (or some other DB that deals with record locking)?

At this time, I am not looking at visitors needing to sign up and login.
I will look into session id and see if that will help.
Re: multiple visitors at the same time [message #182983 is a reply to message #182979] Tue, 01 October 2013 00:13 Go to previous messageGo to next message
Lew Pitcher is currently offline  Lew Pitcher
Messages: 60
Registered: April 2013
Karma: 0
Member
On Monday 30 September 2013 18:12, in comp.lang.php, "richard"
<noreply(at)example(dot)com> wrote:

> I kind of realized i now have another problem to deal with.
> As I have it set up, when a visitor enters, that creates a playlist for
> that visitor.
> What happens when another visitor is online?
> I tried it with both IE and FF at the same time.
> While the list is dffierent, there is no audio in the second browser.
>
> So I figure I will have to give each browser a unique id to the playlist.
> But how?

At the beginning of the webpage, before /anything/ has been sent to the
client, have your PHP code execute a session_start() call. Note that this
*absolutely must* be the first thing done; if you send out even one blank
line, this does not work.

session_start() generates a cookie, records the cookie identifier on the
server side, and sends the cookie to the client in the HTTP headers.
Because the cookie has to go out in the headers, you cannot send any data
before it.

Now, in your page's body PHP, you can test certain values that PHP provides
that all relate to that cookie. The easiest way is to check the existance
and contents of the $_SESSION associative array.


$_SESSION will be null (as will any keyed $_SESSION value) on the client's
initial entry to the page. Thus, an isset() test within the body will be
able to determine if the client has retrieved the initial page, or has
retrieved a second or subsequent time.

As $_SESSION is an associative array, you can store values in it. Each time
the client returns and rereads the page, you get the values /for that
client/ as values of $_SESSION.

So, your logic might look something like

if (isset($_SESSION['RowNum'])
{
/* RETURNING CLIENT
$_SESSION['RowNum'] is last row shown to the client, so
start his listing at database result row (1 + $_SESSION['RowNum'])
*/
$StartRow = 1 + $_SESSION['RowNum'];
/* generate next result set, from row $StartRow to $EndRow */
$_SESSION['RowNum'] = $EndRow;
}
else
{
/* NEW CLIENT
$_SESSION['RowNum'] is not set.
start his listing at database result row 0
*/
$StartRow = 0;
}
$EndRow = ComputeEndRow($StartRow);
GeneratePartialResultSet($StartRow, $EndRow);

/* save the session's start row for next time */
$_SESSION['RowNum'] = $EndRow;

.....


> Would the server crash with s few thousand visitors online at the same
> time?

It depends on how you've configured your server. If you have your http
server set up to handle a large number of connections, and enough temporary
space for a large number of session state records (saved as small files),
and have configured the database server for the large number of database
connections, you should have no problem servicing thousands of simultaneous
clients.

[snip].

--
Lew Pitcher
"In Skills, We Trust"
PGP public key available upon request
Re: multiple visitors at the same time [message #182984 is a reply to message #182979] Tue, 01 October 2013 03:30 Go to previous messageGo to next message
Fiver is currently offline  Fiver
Messages: 35
Registered: July 2013
Karma: 0
Member
On 2013-10-01 00:12, richard wrote:
> As I have it set up, when a visitor enters, that creates a playlist for
> that visitor.
> What happens when another visitor is online?
> I tried it with both IE and FF at the same time.
> While the list is dffierent, there is no audio in the second browser.

You didn't mention anything about sessions, so I'm going to assume that
all you're doing is creating a fresh random playlist for each new
request. If that's the case, then you don't have to worry about
concurrent visitors at all.

Why doesn't it work? Hard to say with the minimal information you're
giving us. The first thing that comes to mind is that one of the
browsers (most likely the one you don't usually test with) has a problem
playing what you send it. In other words, it's most likely a client side
problem or a playlist format problem. Check your browser settings and
plugins - in the "other" browser.

regards,
5er
Re: multiple visitors at the same time [message #182985 is a reply to message #182982] Tue, 01 October 2013 03:37 Go to previous messageGo to next message
Michael Vilain is currently offline  Michael Vilain
Messages: 88
Registered: September 2010
Karma: 0
Member
In article <tabtkdru0f5g$(dot)1x6bq88mzzryc$(dot)dlg(at)40tude(dot)net>,
richard <noreply(at)example(dot)com> wrote:

> On Mon, 30 Sep 2013 16:16:23 -0700, Michael Vilain wrote:
>
>> In article <39cy6hpu04oe$(dot)18k40zgdny9go$(dot)dlg(at)40tude(dot)net>,
>> richard <noreply(at)example(dot)com> wrote:
>>
>>> I kind of realized i now have another problem to deal with.
>>> As I have it set up, when a visitor enters, that creates a playlist for
>>> that visitor.
>>> What happens when another visitor is online?
>>> I tried it with both IE and FF at the same time.
>>> While the list is dffierent, there is no audio in the second browser.
>>>
>>> So I figure I will have to give each browser a unique id to the playlist.
>>> But how?
>>> Would the server crash with s few thousand visitors online at the same
>>> time?
>>>
>>> The wimpy player can embed the playlist into the html, but their way of
>>> doing it doesn't allowo me to display the file names unless the gilename
>>> match exactly.
>>> that is, I could not show "exodus - henry mancini". I'd have to show
>>> 65-001mp3 because that's how I have the naming convention set up.
>>
>> Look into session ID. When someone comes to your site, they have to
>> login, yes? Tie the session ID created by php to the username. Use
>> that to create a unique MD5 hash for a playlist you store under their
>> username in MySQL.
>>
>> You do realize that all this will require sychronizing things and MySQL
>> (or some other DB that deals with record locking)?
>
> At this time, I am not looking at visitors needing to sign up and login.
> I will look into session id and see if that will help.

Most session IDs without a login aren't sufficiently unique. You'll
need to have additional criteria to ensure that to machines with the
same browser and hardware connecting to your server from the same IP
address are able to be differentiated between the two. That's up to
you. You sound like you need to do a lot of reading up on this before
you come up with a viable solution. Publically available stuff without
first authenticating the user will only get you so far.

--
DeeDee, don't press that button! DeeDee! NO! Dee...
[I filter all Goggle Groups posts, so any reply may be automatically ignored]
Re: multiple visitors at the same time [message #182986 is a reply to message #182985] Tue, 01 October 2013 10:15 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 9/30/2013 11:37 PM, Michael Vilain wrote:
> In article <tabtkdru0f5g$(dot)1x6bq88mzzryc$(dot)dlg(at)40tude(dot)net>,
> richard <noreply(at)example(dot)com> wrote:
>
>> On Mon, 30 Sep 2013 16:16:23 -0700, Michael Vilain wrote:
>>
>>> In article <39cy6hpu04oe$(dot)18k40zgdny9go$(dot)dlg(at)40tude(dot)net>,
>>> richard <noreply(at)example(dot)com> wrote:
>>>
>>>> I kind of realized i now have another problem to deal with.
>>>> As I have it set up, when a visitor enters, that creates a playlist for
>>>> that visitor.
>>>> What happens when another visitor is online?
>>>> I tried it with both IE and FF at the same time.
>>>> While the list is dffierent, there is no audio in the second browser.
>>>>
>>>> So I figure I will have to give each browser a unique id to the playlist.
>>>> But how?
>>>> Would the server crash with s few thousand visitors online at the same
>>>> time?
>>>>
>>>> The wimpy player can embed the playlist into the html, but their way of
>>>> doing it doesn't allowo me to display the file names unless the gilename
>>>> match exactly.
>>>> that is, I could not show "exodus - henry mancini". I'd have to show
>>>> 65-001mp3 because that's how I have the naming convention set up.
>>>
>>> Look into session ID. When someone comes to your site, they have to
>>> login, yes? Tie the session ID created by php to the username. Use
>>> that to create a unique MD5 hash for a playlist you store under their
>>> username in MySQL.
>>>
>>> You do realize that all this will require sychronizing things and MySQL
>>> (or some other DB that deals with record locking)?
>>
>> At this time, I am not looking at visitors needing to sign up and login.
>> I will look into session id and see if that will help.
>
> Most session IDs without a login aren't sufficiently unique. You'll
> need to have additional criteria to ensure that to machines with the
> same browser and hardware connecting to your server from the same IP
> address are able to be differentiated between the two. That's up to
> you. You sound like you need to do a lot of reading up on this before
> you come up with a viable solution. Publically available stuff without
> first authenticating the user will only get you so far.
>

Incorrect. Sessions don't know anything about logins; it's just data to
them. And the session ID needs to be unique for each visitor, whether
or not they are logged in.

Can you imagine, for instance, a shopping cart where multiple people
share the same session id - and therefore cart? Many sites don't
require any information until it's time to check out.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
Re: multiple visitors at the same time [message #182988 is a reply to message #182979] Tue, 01 October 2013 11:04 Go to previous messageGo to next message
Norman Peelman is currently offline  Norman Peelman
Messages: 126
Registered: September 2010
Karma: 0
Senior Member
On 09/30/2013 06:12 PM, richard wrote:
> I kind of realized i now have another problem to deal with.
> As I have it set up, when a visitor enters, that creates a playlist for
> that visitor.
> What happens when another visitor is online?
> I tried it with both IE and FF at the same time.
> While the list is dffierent, there is no audio in the second browser.
>
> So I figure I will have to give each browser a unique id to the playlist.
> But how?
> Would the server crash with s few thousand visitors online at the same
> time?
>
> The wimpy player can embed the playlist into the html, but their way of
> doing it doesn't allowo me to display the file names unless the gilename
> match exactly.
> that is, I could not show "exodus - henry mancini". I'd have to show
> 65-001mp3 because that's how I have the naming convention set up.
>

I'd say the Wimpy Player is living up to its name... I get no sound
in *any* browser. Not FF, not GC and not Thunderbird.

--
Norman
Registered Linux user #461062
-Have you been to www.php.net yet?-
Re: multiple visitors at the same time [message #182989 is a reply to message #182985] Tue, 01 October 2013 12:05 Go to previous messageGo to next message
Richard Damon is currently offline  Richard Damon
Messages: 58
Registered: August 2011
Karma: 0
Member
On 9/30/13 11:37 PM, Michael Vilain wrote:
> Most session IDs without a login aren't sufficiently unique. You'll
> need to have additional criteria to ensure that to machines with the
> same browser and hardware connecting to your server from the same IP
> address are able to be differentiated between the two. That's up to
> you. You sound like you need to do a lot of reading up on this before
> you come up with a viable solution. Publically available stuff without
> first authenticating the user will only get you so far.
>

Session IDs with or without login MUST be unique, or your sessions are
broken (session logic MUST give a new id number to anything starting a
session, or you don't have real sessions). Multiple connections from the
same IP will be given different sessions.

Using a session ID without a login will mean that any work the user does
will be forgotten when the session expires.

What adding a login does is to allow you to put into the session a user
id from the login, so that the data from the user can persist from one
session to another.
Re: multiple visitors at the same time [message #182993 is a reply to message #182989] Tue, 01 October 2013 16:02 Go to previous messageGo to next message
Christoph Michael Bec is currently offline  Christoph Michael Bec
Messages: 207
Registered: June 2013
Karma: 0
Senior Member
Am 01.10.2013 14:05, schrieb Richard Damon:
> Session IDs with or without login MUST be unique, or your sessions are
> broken (session logic MUST give a new id number to anything starting a
> session, or you don't have real sessions). Multiple connections from the
> same IP will be given different sessions.
>
> Using a session ID without a login will mean that any work the user does
> will be forgotten when the session expires.
>
> What adding a login does is to allow you to put into the session a user
> id from the login, so that the data from the user can persist from one
> session to another.

You may consider reading up on sessions:
<http://www.php.net/manual/en/book.session.php>. :)

--
Christoph M. Becker
Re: multiple visitors at the same time [message #182994 is a reply to message #182989] Tue, 01 October 2013 16:09 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 10/1/2013 8:05 AM, Richard Damon wrote:
> On 9/30/13 11:37 PM, Michael Vilain wrote:
>> Most session IDs without a login aren't sufficiently unique. You'll
>> need to have additional criteria to ensure that to machines with the
>> same browser and hardware connecting to your server from the same IP
>> address are able to be differentiated between the two. That's up to
>> you. You sound like you need to do a lot of reading up on this before
>> you come up with a viable solution. Publically available stuff without
>> first authenticating the user will only get you so far.
>>
>
> Session IDs with or without login MUST be unique, or your sessions are
> broken (session logic MUST give a new id number to anything starting a
> session, or you don't have real sessions). Multiple connections from the
> same IP will be given different sessions.
>
> Using a session ID without a login will mean that any work the user does
> will be forgotten when the session expires.
>
> What adding a login does is to allow you to put into the session a user
> id from the login, so that the data from the user can persist from one
> session to another.
>

Just adding an id from the login to the session won't do a thing. When
the session expires, the data will be lost.

If you want the data to continue across sessions, you need to store it
yourself, i.e. in a database.


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
Re: multiple visitors at the same time [message #182997 is a reply to message #182979] Tue, 01 October 2013 20:48 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On Mon, 30 Sep 2013 18:12:55 -0400, richard wrote:

> So I figure I will have to give each browser a unique id to the
> playlist.
> But how?

Why?

If you're creating a new random playlist every time someone accesses the
page, what does it matter if they already accessed the page earlier?

> Would the server crash with s few thousand visitors online at the same
> time?

Now I'm laughing so hard I just pissed myself!

--
Denis McMahon, denismfmcmahon(at)gmail(dot)com
Re: multiple visitors at the same time [message #183019 is a reply to message #182994] Thu, 03 October 2013 03:33 Go to previous messageGo to next message
Richard Damon is currently offline  Richard Damon
Messages: 58
Registered: August 2011
Karma: 0
Member
On 10/1/13 12:09 PM, Jerry Stuckle wrote:
> On 10/1/2013 8:05 AM, Richard Damon wrote:
>> On 9/30/13 11:37 PM, Michael Vilain wrote:
>>> Most session IDs without a login aren't sufficiently unique. You'll
>>> need to have additional criteria to ensure that to machines with the
>>> same browser and hardware connecting to your server from the same IP
>>> address are able to be differentiated between the two. That's up to
>>> you. You sound like you need to do a lot of reading up on this before
>>> you come up with a viable solution. Publically available stuff without
>>> first authenticating the user will only get you so far.
>>>
>>
>> Session IDs with or without login MUST be unique, or your sessions are
>> broken (session logic MUST give a new id number to anything starting a
>> session, or you don't have real sessions). Multiple connections from the
>> same IP will be given different sessions.
>>
>> Using a session ID without a login will mean that any work the user does
>> will be forgotten when the session expires.
>>
>> What adding a login does is to allow you to put into the session a user
>> id from the login, so that the data from the user can persist from one
>> session to another.
>>
>
> Just adding an id from the login to the session won't do a thing. When
> the session expires, the data will be lost.
>
> If you want the data to continue across sessions, you need to store it
> yourself, i.e. in a database.
>
>

Yes, I guess I assumed that someone would be smart enough to realize
that to store data for longer than a session would realize that they
needed to put the actual data somewhere besides the session itself.
Re: multiple visitors at the same time [message #183021 is a reply to message #183019] Thu, 03 October 2013 12:27 Go to previous messageGo to next message
Scott Johnson is currently offline  Scott Johnson
Messages: 196
Registered: January 2012
Karma: 0
Senior Member
On 10/2/2013 8:33 PM, Richard Damon wrote:
> On 10/1/13 12:09 PM, Jerry Stuckle wrote:
>> On 10/1/2013 8:05 AM, Richard Damon wrote:
>>> On 9/30/13 11:37 PM, Michael Vilain wrote:
>>>> Most session IDs without a login aren't sufficiently unique. You'll
>>>> need to have additional criteria to ensure that to machines with the
>>>> same browser and hardware connecting to your server from the same IP
>>>> address are able to be differentiated between the two. That's up to
>>>> you. You sound like you need to do a lot of reading up on this before
>>>> you come up with a viable solution. Publically available stuff without
>>>> first authenticating the user will only get you so far.
>>>>
>>>
>>> Session IDs with or without login MUST be unique, or your sessions are
>>> broken (session logic MUST give a new id number to anything starting a
>>> session, or you don't have real sessions). Multiple connections from the
>>> same IP will be given different sessions.
>>>
>>> Using a session ID without a login will mean that any work the user does
>>> will be forgotten when the session expires.
>>>
>>> What adding a login does is to allow you to put into the session a user
>>> id from the login, so that the data from the user can persist from one
>>> session to another.
>>>
>>
>> Just adding an id from the login to the session won't do a thing. When
>> the session expires, the data will be lost.
>>
>> If you want the data to continue across sessions, you need to store it
>> yourself, i.e. in a database.
>>
>>
>
> Yes, I guess I assumed that someone would be smart enough to realize
> that to store data for longer than a session would realize that they
> needed to put the actual data somewhere besides the session itself.
>

If you are referring to Richard (Mr Oldies), we are still trying to get
help him remember the difference between '=' and '=='.

But I am still optimistic with hope.

Scotty
OT Re: multiple visitors at the same time [message #183024 is a reply to message #183021] Thu, 03 October 2013 18:00 Go to previous messageGo to next message
bill is currently offline  bill
Messages: 310
Registered: October 2010
Karma: 0
Senior Member
On 2013-10-03 8:27 AM, Scott Johnson wrote:
> On 10/2/2013 8:33 PM, Richard Damon wrote:
>> On 10/1/13 12:09 PM, Jerry Stuckle wrote:
>>> On 10/1/2013 8:05 AM, Richard Damon wrote:
>>>> On 9/30/13 11:37 PM, Michael Vilain wrote:
....

>
> If you are referring to Richard (Mr Oldies), we are still trying to get
> help him remember the difference between '=' and '=='.
>
> But I am still optimistic with hope.
>
> Scotty

Or how about '===' and '!==="? Funny how one of them doesn't work!

Twayne`
Re: OT Re: multiple visitors at the same time [message #183026 is a reply to message #183024] Thu, 03 October 2013 23:13 Go to previous messageGo to next message
Scott Johnson is currently offline  Scott Johnson
Messages: 196
Registered: January 2012
Karma: 0
Senior Member
On 10/3/2013 11:00 AM, Twayne wrote:
> On 2013-10-03 8:27 AM, Scott Johnson wrote:
>> On 10/2/2013 8:33 PM, Richard Damon wrote:
>>> On 10/1/13 12:09 PM, Jerry Stuckle wrote:
>>>> On 10/1/2013 8:05 AM, Richard Damon wrote:
>>>> > On 9/30/13 11:37 PM, Michael Vilain wrote:
> ...
>
>>
>> If you are referring to Richard (Mr Oldies), we are still trying to get
>> help him remember the difference between '=' and '=='.
>>
>> But I am still optimistic with hope.
>>
>> Scotty
>
> Or how about '===' and '!==="? Funny how one of them doesn't work!
>
> Twayne`

Now you just want miracles. ;)
Re: multiple visitors at the same time [message #183028 is a reply to message #182979] Fri, 04 October 2013 01:02 Go to previous messageGo to next message
Allodoxaphobia is currently offline  Allodoxaphobia
Messages: 21
Registered: September 2010
Karma: 0
Junior Member
On Mon, 30 Sep 2013 18:12:55 -0400, richard wrote:
> I kind of realized i now have another problem to deal with.

JUST ONE!?!? ROTFLMAO!!
Re: multiple visitors at the same time [message #183040 is a reply to message #183028] Fri, 04 October 2013 23:19 Go to previous message
bill is currently offline  bill
Messages: 310
Registered: October 2010
Karma: 0
Senior Member
On 2013-10-03 9:02 PM, Knocker wrote:
> On Mon, 30 Sep 2013 18:12:55 -0400, richard wrote:
>> I kind of realized i now have another problem to deal with.
>
> JUST ONE!?!? ROTFLMAO!!
>

I've always wondered, when people' rotflmao', whether they have their
pants around their knees or what?
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: configuration problem rsyslog with php
Next Topic: Why do I get a download link?
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Tue Jun 04 21:19:47 GMT 2024

Total time taken to generate the page: 0.04298 seconds