[geeklog-devtalk] geeklog-devel digest, Vol 1 #258 - 8 msgs

geeklog-devel-request at lists.geeklog.net geeklog-devel-request at lists.geeklog.net
Sun Jan 25 13:00:09 EST 2004


Send geeklog-devel mailing list submissions to
geeklog-devel at lists.geeklog.net

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.geeklog.net/listinfo/geeklog-devel
or, via email, send a message with subject or body 'help' to
geeklog-devel-request at lists.geeklog.net

You can reach the person managing the list at
geeklog-devel-admin at lists.geeklog.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of geeklog-devel digest..."


Today's Topics:

1. New block on geeklog.net (Blaine Lang)
2. RE: New block on geeklog.net (Chris Franklin)
3. Re: New block on geeklog.net (Dirk Haun)
4. Geeklog downloads house cleaning (Dirk Haun)
5. Re: New block on geeklog.net (Blaine Lang)
6. Re: Geeklog downloads house cleaning (Blaine Lang)
7. Re: Geeklog downloads house cleaning (Blaine Lang)
8. Upgrade of forum on geeklog.net (Blaine Lang)

--__--__--

Message: 1
From: "Blaine Lang" <geeklog at langfamily.ca>
To: <geeklog-devel at lists.geeklog.net>
Date: Sat, 24 Jan 2004 20:07:55 -0500
Subject: [geeklog-devel] New block on geeklog.net
Reply-To: geeklog-devel at lists.geeklog.net

This is a multi-part message in MIME format.

------=_NextPart_000_0011_01C3E2B5.C1546F40
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

If you are in the development group on geeklog.net you will notice a new =
block called quickstats. I added it to show some high level information =
of the activity on the site. I noticed this morning that we had over 600 =
downloads in the last 24 hours and wanted to know what files were =
popular.

This block now show the top 5 downloads as well as the total over the =
past 24hr window.=20
It's adding 2-3 seconds to refresh the page now and I've added a couple =
indexes but it still has a lot of records to crunch thru to calculate =
counts.

SELECT count(*) AS downloads,downloads.lid, filedetail.title FROM =
{$_FM_TABLES['filemgmt_history']} downloads, =
{$_FM_TABLES['filemgmt_filedetail']} filedetail WHERE filedetail.lid =3D =
downloads.lid AND unix_timestamp(downloads.date ) + 86400 > =
unix_timestamp( ) GROUP BY lid ORDER BY downloads DESC LIMIT 5"

Maybe someone can suggest a better SQL statement.
I have indexes on lid (both tables) and date.

If we can't make it run any faster and you want to disable it, then I =
can enable it just for myself.

Blaine


------=_NextPart_000_0011_01C3E2B5.C1546F40
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2800.1276" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>If you are in the development =
group&nbsp;on=20
geeklog.net you will notice&nbsp;a new block called quickstats. I added =
it to=20
show some high level information of the activity on the site. I noticed =
this=20
morning that we had over 600 downloads in the last 24 hours and wanted =
to know=20
what files were popular.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>This block now show the top 5 downloads =
as well as=20
the total over the past 24hr window. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>It's adding 2-3 seconds to refresh the =
page now and=20
I've added a couple indexes but it still has&nbsp;a lot of records to =
crunch=20
thru to calculate counts.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>SELECT count(*) AS =
downloads,downloads.lid,=20
filedetail.title FROM {$_FM_TABLES['filemgmt_history']} downloads,=20
{$_FM_TABLES['filemgmt_filedetail']} filedetail WHERE filedetail.lid =3D =

downloads.lid AND unix_timestamp(downloads.date )&nbsp; + 86400 &gt;=20
unix_timestamp(&nbsp; ) GROUP&nbsp; BY lid ORDER&nbsp; BY downloads DESC =
LIMIT=20
5"</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Maybe someone can suggest a better SQL=20
statement.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I have indexes on lid (both tables)=20
and&nbsp;date.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>If we can't make it run any faster and =
you want to=20
disable it, then I can enable it just for myself.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Blaine</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV></BODY></HTML>

------=_NextPart_000_0011_01C3E2B5.C1546F40--


--__--__--

Message: 2
From: "Chris Franklin" <chris_s_franklin at yahoo.com>
To: <geeklog-devel at lists.geeklog.net>
Subject: RE: [geeklog-devel] New block on geeklog.net
Date: Sat, 24 Jan 2004 19:33:09 -0800
Reply-To: geeklog-devel at lists.geeklog.net

This is a multi-part message in MIME format.

------=_NextPart_000_0002_01C3E2B0.E5EEA690
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Blaine -
Doesn't geeklog have a page caching mechanism?
This can be implemented many different ways but a simple way (to avoid using
cron tabs) would be to store the uri, cached uri, and validUntil timestamp.
Then have a component/object/function/whatever that you ask for the page. If
the cached version is valid, it passes that back, if not, it requests the
dynamic page and stores it (overwriting the cached page), then returns the
cached page uri.
I've implemented page caching on multiple sites for site-global data that
doesn't need to be real-time - it's quite easy and performance gains are
huge.
Regards,
-C
-----Original Message-----
From: geeklog-devel-admin at lists.geeklog.net
[mailto:geeklog-devel-admin at lists.geeklog.net]On Behalf Of Blaine Lang
Sent: Saturday, January 24, 2004 5:08 PM
To: geeklog-devel at lists.geeklog.net
Subject: [geeklog-devel] New block on geeklog.net


If you are in the development group on geeklog.net you will notice a new
block called quickstats. I added it to show some high level information of
the activity on the site. I noticed this morning that we had over 600
downloads in the last 24 hours and wanted to know what files were popular.

This block now show the top 5 downloads as well as the total over the past
24hr window.
It's adding 2-3 seconds to refresh the page now and I've added a couple
indexes but it still has a lot of records to crunch thru to calculate
counts.

SELECT count(*) AS downloads,downloads.lid, filedetail.title FROM
{$_FM_TABLES['filemgmt_history']} downloads,
{$_FM_TABLES['filemgmt_filedetail']} filedetail WHERE filedetail.lid =
downloads.lid AND unix_timestamp(downloads.date ) + 86400 >
unix_timestamp( ) GROUP BY lid ORDER BY downloads DESC LIMIT 5"

Maybe someone can suggest a better SQL statement.
I have indexes on lid (both tables) and date.

If we can't make it run any faster and you want to disable it, then I can
enable it just for myself.

Blaine


------=_NextPart_000_0002_01C3E2B0.E5EEA690
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2800.1276" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV>
<DIV><SPAN class=3D391502403-25012004><FONT face=3DArial color=3D#0000ff =
size=3D2>Blaine=20
- </FONT></SPAN></DIV>
<DIV><SPAN class=3D391502403-25012004><FONT face=3DArial color=3D#0000ff =

size=3D2>Doesn't geeklog have a page caching =
mechanism?</FONT></SPAN></DIV>
<DIV><SPAN class=3D391502403-25012004><FONT face=3DArial color=3D#0000ff =
size=3D2>This=20
can be implemented many different ways but a simple way (to avoid using =
cron=20
tabs) would be to store the uri, cached uri, and validUntil=20
timestamp.</FONT></SPAN></DIV>
<DIV><SPAN class=3D391502403-25012004><FONT face=3DArial color=3D#0000ff =
size=3D2>Then=20
have a component/object/function/whatever that you ask for the page. If =
the=20
cached version is valid, it passes that back, if not, it requests the =
dynamic=20
page and stores it (overwriting the cached page), then returns the =
cached page=20
uri.</FONT></SPAN></DIV>
<DIV><SPAN class=3D391502403-25012004><FONT face=3DArial color=3D#0000ff =
size=3D2>I've=20
implemented page caching on multiple sites for&nbsp;<SPAN=20
class=3D781113203-25012004>site-</SPAN><SPAN =
class=3D781113203-25012004>global=20
</SPAN>data that doesn't need to be real-time - it's quite easy and =
performance=20
gains are huge.</FONT></SPAN></DIV>
<DIV><SPAN class=3D391502403-25012004><FONT face=3DArial color=3D#0000ff =

size=3D2>Regards,</FONT></SPAN></DIV>
<DIV><SPAN class=3D391502403-25012004><FONT face=3DArial color=3D#0000ff =

size=3D2>-C</FONT></SPAN></DIV></DIV>
<BLOCKQUOTE dir=3Dltr style=3D"MARGIN-RIGHT: 0px">
<DIV class=3DOutlookMessageHeader dir=3Dltr align=3Dleft><FONT =
face=3DTahoma=20
size=3D2>-----Original Message-----<BR><B>From:</B>=20
geeklog-devel-admin at lists.geeklog.net=20
[mailto:geeklog-devel-admin at lists.geeklog.net]<B>On Behalf Of =
</B>Blaine=20
Lang<BR><B>Sent:</B> Saturday, January 24, 2004 5:08 PM<BR><B>To:</B>=20
geeklog-devel at lists.geeklog.net<BR><B>Subject:</B> [geeklog-devel] New =
block=20
on geeklog.net<BR><BR></FONT></DIV>
<DIV><FONT face=3DArial size=3D2>If you are in the development =
group&nbsp;on=20
geeklog.net you will notice&nbsp;a new block called quickstats. I =
added it to=20
show some high level information of the activity on the site. I =
noticed this=20
morning that we had over 600 downloads in the last 24 hours and wanted =
to know=20
what files were popular.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>This block now show the top 5 =
downloads as well=20
as the total over the past 24hr window. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>It's adding 2-3 seconds to refresh =
the page now=20
and I've added a couple indexes but it still has&nbsp;a lot of records =
to=20
crunch thru to calculate counts.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>SELECT count(*) AS =
downloads,downloads.lid,=20
filedetail.title FROM {$_FM_TABLES['filemgmt_history']} downloads,=20
{$_FM_TABLES['filemgmt_filedetail']} filedetail WHERE filedetail.lid =
=3D=20
downloads.lid AND unix_timestamp(downloads.date )&nbsp; + 86400 &gt;=20
unix_timestamp(&nbsp; ) GROUP&nbsp; BY lid ORDER&nbsp; BY downloads =
DESC LIMIT=20
5"</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Maybe someone can suggest a better =
SQL=20
statement.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I have indexes on lid (both tables)=20
and&nbsp;date.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>If we can't make it run any faster =
and you want=20
to disable it, then I can enable it just for myself.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Blaine</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial =
size=3D2></FONT>&nbsp;</DIV></BLOCKQUOTE></BODY></HTML>

------=_NextPart_000_0002_01C3E2B0.E5EEA690--



--__--__--

Message: 3
From: "Dirk Haun" <dirk at haun-online.de>
To: <geeklog-devel at lists.geeklog.net>
Subject: Re: [geeklog-devel] New block on geeklog.net
Date: Sun, 25 Jan 2004 10:41:17 +0100
Organization: Terra Software Systems
Reply-To: geeklog-devel at lists.geeklog.net

Blaine wrote:


>It's adding 2-3 seconds to refresh the page now and I've added a couple

>indexes but it still has a lot of records to crunch thru to calculate counts.


Ah, so that's why the site felt so slow. I was beginning to wonder ...

I was shocked to see the first line read

Geeklog 1.3.8-1 (155)

but on closer inspection, that does link to 1.3.8-1sr3, so it's only
cutting off the file name. However, number 5 on the list is

Geeklog 1.3.8 (9)

and that is indeed what it says, i.e. 9 people have downloaded the
original 1.3.8 tarball within the last 24 hours. Looks like it's really
time for some housecleaning in the downloads area ...


Btw, when you go to the FAQ, <http://www.geeklog.net/faqman/>, the
contents of the block are displayed in italics. Looks like some of the
FAQ style information is "leaking" into the rest of the site (I've seen
this happening with other pages, too).

bye, Dirk

--
http://www.haun-online.de/
http://www.macosx-faq.de/


--__--__--

Message: 4
From: "Dirk Haun" <dirk at haun-online.de>
To: <geeklog-devel at lists.geeklog.net>
Date: Sun, 25 Jan 2004 11:29:08 +0100
Organization: Terra Software Systems
Subject: [geeklog-devel] Geeklog downloads house cleaning
Reply-To: geeklog-devel at lists.geeklog.net

Here are the final scores for the old Geeklog releases that I just
removed from the download area:

Geeklog 1.3.7sr1 19575
Geeklog 1.3.7sr2 6789
Geeklog 1.3.8 7388
Geeklog 1.3.8-1 7909
Geeklog 1.3.8-1sr1 922
Geeklog 1.3.8-1sr2 6625
Geeklog 1.3.8-1sr3 6266 (still there, of course)

1.3.8-1sr1 was only out for 48 hours, hence the low number of downloads.


And the release candidates:

Geeklog 1.3.8rc1 2171
Geeklog 1.3.8rc2 1926


I have kept all the upgrade archives (even the old ones) and moved them
to an "Updates" sub-category. So now, when you click on our "Download"
link (from the Resources block), you are taken to <http://
www.geeklog.net/filemgmt/viewcat.php?cid=8> which lists only one file.


Blaine, links to removed downloads cause an SQL error. Any chance the
plugin could catch these and redirect to /filemgmt/index.php instead?

Try <http://www.geeklog.net/filemgmt/singlefile.php?lid=157>

bye, Dirk


--
http://www.haun-online.de/
http://mypod.de/


--__--__--

Message: 5
From: "Blaine Lang" <geeklog at langfamily.ca>
To: <geeklog-devel at lists.geeklog.net>
Subject: Re: [geeklog-devel] New block on geeklog.net
Date: Sun, 25 Jan 2004 11:23:10 -0500
Reply-To: geeklog-devel at lists.geeklog.net

I was also thinking, maybe have a script that would remove old download
history records.
- those records for files that are no longer online

I'm using the <tt> tag and I bet they have a css style change for that.

I do store the total downloads for a file but I don't see any other way to
determine the total over the last 24 hours without reading all the download
records. Just looking, we have nearly 143,000 downloadhistory records dating
back to Sept 25 2002 when it was installed.

Maybe keeping only the last 6 months would be a good idea. Should do a
little pruning ?


----- Original Message -----
From: "Dirk Haun" <dirk at haun-online.de>
To: <geeklog-devel at lists.geeklog.net>
Sent: Sunday, January 25, 2004 4:41 AM
Subject: Re: [geeklog-devel] New block on geeklog.net



> Blaine wrote:

>

> >It's adding 2-3 seconds to refresh the page now and I've added a couple

> >indexes but it still has a lot of records to crunch thru to calculate

counts.

>

> Ah, so that's why the site felt so slow. I was beginning to wonder ...

>

> I was shocked to see the first line read

>

> Geeklog 1.3.8-1 (155)

>

> but on closer inspection, that does link to 1.3.8-1sr3, so it's only

> cutting off the file name. However, number 5 on the list is

>

> Geeklog 1.3.8 (9)

>

> and that is indeed what it says, i.e. 9 people have downloaded the

> original 1.3.8 tarball within the last 24 hours. Looks like it's really

> time for some housecleaning in the downloads area ...

>

>

> Btw, when you go to the FAQ, <http://www.geeklog.net/faqman/>, the

> contents of the block are displayed in italics. Looks like some of the

> FAQ style information is "leaking" into the rest of the site (I've seen

> this happening with other pages, too).

>

> bye, Dirk

>

> --

> http://www.haun-online.de/

> http://www.macosx-faq.de/

>

> _______________________________________________

> geeklog-devel mailing list

> geeklog-devel at lists.geeklog.net

> http://lists.geeklog.net/listinfo/geeklog-devel

>



--__--__--

Message: 6
From: "Blaine Lang" <geeklog at langfamily.ca>
To: <geeklog-devel at lists.geeklog.net>
Subject: Re: [geeklog-devel] Geeklog downloads house cleaning
Date: Sun, 25 Jan 2004 11:24:53 -0500
Reply-To: geeklog-devel at lists.geeklog.net

I'll add a patch to catch that today.

Blaine
----- Original Message -----
From: "Dirk Haun" <dirk at haun-online.de>
To: <geeklog-devel at lists.geeklog.net>
Sent: Sunday, January 25, 2004 5:29 AM
Subject: [geeklog-devel] Geeklog downloads house cleaning



> Here are the final scores for the old Geeklog releases that I just

> removed from the download area:

>

> Geeklog 1.3.7sr1 19575

> Geeklog 1.3.7sr2 6789

> Geeklog 1.3.8 7388

> Geeklog 1.3.8-1 7909

> Geeklog 1.3.8-1sr1 922

> Geeklog 1.3.8-1sr2 6625

> Geeklog 1.3.8-1sr3 6266 (still there, of course)

>

> 1.3.8-1sr1 was only out for 48 hours, hence the low number of downloads.

>

>

> And the release candidates:

>

> Geeklog 1.3.8rc1 2171

> Geeklog 1.3.8rc2 1926

>

>

> I have kept all the upgrade archives (even the old ones) and moved them

> to an "Updates" sub-category. So now, when you click on our "Download"

> link (from the Resources block), you are taken to <http://

> www.geeklog.net/filemgmt/viewcat.php?cid=8> which lists only one file.

>

>

> Blaine, links to removed downloads cause an SQL error. Any chance the

> plugin could catch these and redirect to /filemgmt/index.php instead?

>

> Try <http://www.geeklog.net/filemgmt/singlefile.php?lid=157>

>

> bye, Dirk

>

>

> --

> http://www.haun-online.de/

> http://mypod.de/

>

> _______________________________________________

> geeklog-devel mailing list

> geeklog-devel at lists.geeklog.net

> http://lists.geeklog.net/listinfo/geeklog-devel

>


--__--__--

Message: 7
From: "Blaine Lang" <geeklog at langfamily.ca>
To: <geeklog-devel at lists.geeklog.net>
Subject: Re: [geeklog-devel] Geeklog downloads house cleaning
Date: Sun, 25 Jan 2004 11:46:17 -0500
Reply-To: geeklog-devel at lists.geeklog.net

Dirk wrote

>> Blaine, links to removed downloads cause an SQL error. Any chance the

plugin could catch these and redirect to /filemgmt/index.php instead?

Ok, I've added this fix for visit.php (download) and singlefile.php
(filedetail).
No error and no message, just a silent redirect.

----- Original Message -----
From: "Dirk Haun" <dirk at haun-online.de>
To: <geeklog-devel at lists.geeklog.net>
Sent: Sunday, January 25, 2004 5:29 AM
Subject: [geeklog-devel] Geeklog downloads house cleaning



> Here are the final scores for the old Geeklog releases that I just

> removed from the download area:

>

> Geeklog 1.3.7sr1 19575

> Geeklog 1.3.7sr2 6789

> Geeklog 1.3.8 7388

> Geeklog 1.3.8-1 7909

> Geeklog 1.3.8-1sr1 922

> Geeklog 1.3.8-1sr2 6625

> Geeklog 1.3.8-1sr3 6266 (still there, of course)

>

> 1.3.8-1sr1 was only out for 48 hours, hence the low number of downloads.

>

>

> And the release candidates:

>

> Geeklog 1.3.8rc1 2171

> Geeklog 1.3.8rc2 1926

>

>

> I have kept all the upgrade archives (even the old ones) and moved them

> to an "Updates" sub-category. So now, when you click on our "Download"

> link (from the Resources block), you are taken to <http://

> www.geeklog.net/filemgmt/viewcat.php?cid=8> which lists only one file.

>

>

> Blaine, links to removed downloads cause an SQL error. Any chance the

> plugin could catch these and redirect to /filemgmt/index.php instead?

>

> Try <http://www.geeklog.net/filemgmt/singlefile.php?lid=157>

>

> bye, Dirk

>

>

> --

> http://www.haun-online.de/

> http://mypod.de/

>

> _______________________________________________

> geeklog-devel mailing list

> geeklog-devel at lists.geeklog.net

> http://lists.geeklog.net/listinfo/geeklog-devel

>



--__--__--

Message: 8
From: "Blaine Lang" <geeklog at langfamily.ca>
To: <geeklog-devel at lists.geeklog.net>
Date: Sun, 25 Jan 2004 11:49:22 -0500
Subject: [geeklog-devel] Upgrade of forum on geeklog.net
Reply-To: geeklog-devel at lists.geeklog.net

This is a multi-part message in MIME format.

------=_NextPart_000_004D_01C3E339.46074B30
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I will be installing the latest 2.3RC3 forum code on geeklog.net today. =
Well actually in the next hour.
Most of the bugs should now be worked out but would like to test it for =
a week on geeklog.net.

I'll make a backup of the files first if for any reason we need to go =
back.

I'll post a new topic in the forum once complete.

Blaine
------=_NextPart_000_004D_01C3E339.46074B30
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2800.1276" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>I will be installing the latest 2.3RC3 =
forum code=20
on geeklog.net today. Well actually in the next hour.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Most of the bugs should now be worked =
out but would=20
like to test it for a week on geeklog.net.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>I'll make a backup of the files first =
if for any=20
reason we need to go back.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>I'll post a new topic in the forum once =

complete.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Blaine</FONT></DIV></BODY></HTML>

------=_NextPart_000_004D_01C3E339.46074B30--



--__--__--

_______________________________________________
geeklog-devel mailing list
geeklog-devel at lists.geeklog.net
http://lists.geeklog.net/listinfo/geeklog-devel


End of geeklog-devel Digest



More information about the geeklog-devtalk mailing list