Page 4 of 4 [ 63 posts ]  Go to page Previous  1, 2, 3, 4

garyww
Veteran
Veteran

User avatar

Joined: 28 Nov 2008
Age: 78
Gender: Male
Posts: 2,395
Location: Napa, California

25 Mar 2009, 1:41 pm

As I said the posts per user seems to being going down as you also observed so why is the site becoming progressively slower. There is nothing 'wrong' with WP so I'm not sure where you took that conclusion from but almost everybody has seen a significant degragation in performance. Mere page views should not account for that on a dedicated server as we have been told this is.


_________________
I am one of those people who your mother used to warn you about.


makuranososhi
Veteran
Veteran

User avatar

Joined: 12 May 2008
Age: 49
Gender: Male
Posts: 5,805
Location: Banned by Alex

25 Mar 2009, 1:46 pm

Quote:
If this is not so then why isn't anybody telling us what is going on and what they are going to do about it. Maybe the old horse just needs to be put down if she can't live up to her expectations.


That is where I drew the conclusion that you feel there is something wrong with WP.

Even a dedicated server can be swamped with traffic, suffer issues with its connection to the backbone, be affected by the accumulation of information, users, viewers, and software differentials that may cause problems. When I upgraded to FireFox 3.0, there were several sites that actually loaded slower for a time until updates on both sides seemed to improve the situation. My knowledge of the technical workings of this site are limited, but regardless of server status there are many possible causes for slow times.


M.


_________________
My thanks to all the wonderful members here; I will miss the opportunity to continue to learn and work with you.

For those who seek an alternative, it is coming.

So long, and thanks for all the fish!


garyww
Veteran
Veteran

User avatar

Joined: 28 Nov 2008
Age: 78
Gender: Male
Posts: 2,395
Location: Napa, California

25 Mar 2009, 1:51 pm

I was talking about the old server computer not the site.


_________________
I am one of those people who your mother used to warn you about.


makuranososhi
Veteran
Veteran

User avatar

Joined: 12 May 2008
Age: 49
Gender: Male
Posts: 5,805
Location: Banned by Alex

25 Mar 2009, 1:52 pm

Clarification appreciated, Gary - thank you.


M.


_________________
My thanks to all the wonderful members here; I will miss the opportunity to continue to learn and work with you.

For those who seek an alternative, it is coming.

So long, and thanks for all the fish!


dedhead66
Sea Gull
Sea Gull

User avatar

Joined: 12 Mar 2009
Age: 60
Gender: Male
Posts: 216

25 Mar 2009, 3:12 pm

Ticker wrote:
Actually HDTV should be banned it takes up way too much bandwidth is honestly is just not necessary. The radio frequency spectrum is not infinite.


Well, I'm glad you're not in control of deciding that. :twisted: .I love HDTV



matt
Veteran
Veteran

User avatar

Joined: 20 Dec 2007
Gender: Male
Posts: 921

25 Mar 2009, 4:57 pm

This site is slow for several reasons:

  • The forum software is phpbb version 2, which is old, and which slows down as more posts are added to the database used for the site.

    One short-term solution to this is to disable search (as has been done here) and to empty the search tables in the database. I don't know if the search tables have been emptied here, but emptying them does generally speed up phpbb2 forums.

    Upgrading to phpbb version 3 would increase speed to some degree.
  • It's possible that Alex's site hosting company doesn't have a fast enough internet connection to serve(send) so much information, or possible that Alex's hosting company handles databases poorly. Certain hosting companies are bad at dealing with databases. They may be fast for other things but very slow for dealing with databases.
  • Modern html is separated into different parts:
    1. an html file, which is just a listing of the elements/items on a page
    2. stylesheet file(s), which contain instructions about how items in the html file should look(things like colors and fonts)
    3. javascript file(s), which add extra functionality or content to pages. If you click on a word and a menu drops down, that's because of javascript.

    These are separated this way because it means that less code is needed to write a page. In a stylesheet, one line of code is all it takes to apply a style to every instance of something on a page. If I wanted all images to have a blue border, I could specify that in a stylesheet. And stylesheets are downloaded by your browser and stored in case there are other pages at the same site which use the same stylesheet. Once your browser downloads a stylesheet, that stylesheet contains most or all of the styles for every page you load on that site. That means if I downloaded this site's stylesheet last night and it said all images had a blue border, and if I loaded ten different pages of images right now, they would all still have that blue border. And because stylesheets don't change very often, your browser saves those stylesheets so it doesn't have to download them again. This means your computer has to download less code, which means your computer gets the pages faster and loads them faster.

    If I designed a page like this site is designed, every time I added an image, I'd have to write extra code to specify that that image had a blue border.

    This code adds up, and makes the html files(the pages) much bigger, sometimes several times as big. And if there are thousands of people viewing thousands of pages, there is a whole lot of extra code, meaning it takes more time for the site's server to send it all out.

    Also, javascript(which adds the extra functionality to pages) takes longer for browsers to handle than plain html does. So every time there's javascript within an html file, your browser has to stop laying things out, execute the javascript, and then go back to laying things out. This slows down things a lot. The time it takes to load pages could be decreased significantly by doing what's called "deferring" javascript to not load until the rest of the page is laid out.



DeLoreanDude
Veteran
Veteran

User avatar

Joined: 10 Oct 2008
Age: 43
Gender: Female
Posts: 1,562
Location: FL

25 Mar 2009, 5:03 pm

matt wrote:
This site is slow for several reasons:
  • The forum software is phpbb version 2, which is old, and which slows down as more posts are added to the database used for the site.

    One short-term solution to this is to disable search (as has been done here) and to empty the search tables in the database. I don't know if the search tables have been emptied here, but emptying them does generally speed up phpbb2 forums.

    Upgrading to phpbb version 3 would increase speed to some degree.
  • It's possible that Alex's site hosting company doesn't have a fast enough internet connection to serve(send) so much information, or possible that Alex's hosting company handles databases poorly. Certain hosting companies are bad at dealing with databases. They may be fast for other things but very slow for dealing with databases.
  • Modern html is separated into different parts:
    1. an html file, which is just a listing of the elements/items on a page
    2. stylesheet file(s), which contain instructions about how items in the html file should look(things like colors and fonts)
    3. javascript file(s), which add extra functionality or content to pages. If you click on a word and a menu drops down, that's because of javascript.

    These are separated this way because it means that less code is needed to write a page. In a stylesheet, one line of code is all it takes to apply a style to every instance of something on a page. If I wanted all images to have a blue border, I could specify that in a stylesheet. And stylesheets are downloaded by your browser and stored in case there are other pages at the same site which use the same stylesheet. Once your browser downloads a stylesheet, that stylesheet contains most or all of the styles for every page you load on that site. That means if I downloaded this site's stylesheet last night and it said all images had a blue border, and if I loaded ten different pages of images right now, they would all still have that blue border. And because stylesheets don't change very often, your browser saves those stylesheets so it doesn't have to download them again. This means your computer has to download less code, which means your computer gets the pages faster and loads them faster.

    If I designed a page like this site is designed, every time I added an image, I'd have to write extra code to specify that that image had a blue border.

    This code adds up, and makes the html files(the pages) much bigger, sometimes several times as big. And if there are thousands of people viewing thousands of pages, there is a whole lot of extra code, meaning it takes more time for the site's server to send it all out.

    Also, javascript(which adds the extra functionality to pages) takes longer for browsers to handle than plain html does. So every time there's javascript within an html file, your browser has to stop laying things out, execute the javascript, and then go back to laying things out. This slows down things a lot. The time it takes to load pages could be decreased significantly by doing what's called "deferring" javascript to not load until the rest of the page is laid out.


Upgrading to phpBB3 would be good but, as you may have noticed, the version of phpBB2 this forum runs is heavily modified, so upgrading would be a hard job.



samtoo
Veteran
Veteran

User avatar

Joined: 12 May 2007
Gender: Male
Posts: 2,762
Location: England

25 Mar 2009, 5:30 pm

Yeah, a wee bit... but it's been worse for me before - once it gets working, it generally has few problems.


_________________
Thousands of candles can be lit from a single candle,
and the life of the candle will not be shortened.
Happiness never decreases by being shared.


FePixie
Snowy Owl
Snowy Owl

User avatar

Joined: 29 Oct 2008
Age: 57
Gender: Female
Posts: 157
Location: NZ

25 Mar 2009, 7:00 pm

KingdomOfRats wrote:
garyww wrote:
I am familiar with bandwidth 'throttling' but this is pretty bad even for a mom and pop operation. I visited Alex's homepage and it looks like he could afford to run a first class site but maybe it's pretty obvious that he's not that involved here anymore. Maybe he should turn it over to the members. I did that with one of my forums and it was a big help.

agrees,that would be a good idea,though think would have more chance of getting a member onboard to help,rather than take over altogether.
There are some users here who seem highly knowledgeable of WPs coding.


Slow slow and SLOW!! !! :evil:

grumble moan complain :twisted:

I'm guessing the biggest problem is server/bandwidth related rather than code related - but I'm willing to help out with code upgrades and mod migrations if anyone's enlisting helpers?

And Matt - you missed out the php files that generate html pages and javascripts!! Pixie LIKES php :lol:

If we could ditch the damn ads that'd save about 30% bandwidth usage too :roll:
Ditching Google and Yahoo bots would save another 50% - but might not be at all helpful for recruiting new visitors :?

Yup - the old girl is ailing and in need of attention for sure!!

I run a web hosting company and build websites - hundreds of em - so anyone interested in making improvements or launching alternative sites can give me a shout if you need any help or advice :D



lau
Veteran
Veteran

User avatar

Joined: 17 Jun 2006
Age: 77
Gender: Male
Posts: 9,798
Location: Somerset UK

25 Mar 2009, 9:57 pm

garyww wrote:
Thanks for the graphs Merle but depending on how you chew on them you can come to some conflicting conclusions. One being that the post per day per user is actually dropping historically speaking amd the post per new user is only slightly higher than it qwas a year ago. New memebrs is way up but are they sucking up bandwidth just by page views? Somebody with a 'real' degree will have to say.
In general I agree with DeLoreanDude's asessement.


garyww wrote:
As I said the posts per user seems to being going down as you also observed so why is the site becoming progressively slower. There is nothing 'wrong' with WP so I'm not sure where you took that conclusion from but almost everybody has seen a significant degragation in performance. Mere page views should not account for that on a dedicated server as we have been told this is.


Ah. You need to look at the graphs, garyww. The posts per user has always been going up, and is doing so still, except for a weird patch through most of 2006, when it oddly stayed fairly level. I.e. the membership increased rather a lot, while people were posting about the same.

I don't have a "post per new user".

The thing that you are seeing going down is the posts per user per day - which is a pretty useless statistic, really.

To my mind, WP is primarily a support site. People join, stay active for a while, learn about themselves, in the context of other people on the spectrum, for a change, and then move on.

There are people who stay active for longer, because they have benefited from WP, and wish to put back something. I count myself as one of those.

Anyway, I never did figure out a good way of applying further analysis to the data. It is all based purely on the total number of posts and members at the various sample points. Everything is derived directly from those figures. There is some interpolative juggling, to make the figures more valid. E.g. if you look carefully at the graphs, the data is either presented at the sample dates or the mid-points between dates, as I am presenting derivatives, and I make them show as central. (And yes, I do have a degree - an MA in Maths :))

Another thing to note is that the main graph, of total posts and members, has logarithmic y-axes. I.e. WP's growth is pretty much exponential. The load on the server doubles every 18 months(-ish).

"Lies, damned lies, and statistics"... Benjamin Disraeli


_________________
"Striking up conversations with strangers is an autistic person's version of extreme sports." Kamran Nazeer


Homer_Bob
Veteran
Veteran

User avatar

Joined: 5 Jan 2009
Age: 37
Gender: Male
Posts: 1,562
Location: New England

25 Mar 2009, 10:18 pm

It does seem like it's slow a lot. Almost daily I'll get a message that says "Wrongplant has too many users posting and can't handle the load".



jawbrodt
Veteran
Veteran

User avatar

Joined: 26 Jan 2008
Age: 51
Gender: Male
Posts: 7,766
Location: Eastern USA

26 Mar 2009, 1:06 am

It has been slow for the last 45 minutes and is slow at this time every night. I know that because I'm here every night at that time. Still haven't figured out why. :scratch:


_________________
Those who speak, don't know.

Those who know, don't speak.


millie
Veteran
Veteran

User avatar

Joined: 25 Oct 2008
Age: 64
Gender: Female
Posts: 3,154

26 Mar 2009, 2:45 am

a spot of tea while we wait?



jawbrodt
Veteran
Veteran

User avatar

Joined: 26 Jan 2008
Age: 51
Gender: Male
Posts: 7,766
Location: Eastern USA

26 Mar 2009, 2:49 am

Sure :coffee: , but I don't have a "tea specific" mug. I hope this will do. :wink:


_________________
Those who speak, don't know.

Those who know, don't speak.


mmstick
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 23 Mar 2009
Age: 33
Gender: Male
Posts: 180
Location: Information Superhighway, Arkansas

26 Mar 2009, 4:15 am

garyww wrote:
Like a few others I've experienced a very slow and unresponsive WP web site periodically over the past few weeks. I've see the notices about unusually high activity but I'm here at all hours and the problem really doesn't seem to be related to overall site traffic. Sometimes the site is so slow that I can't even read a post let alone respond to a post.
The Mods and the site originator don't seem too concerned with this lack of performance so maybe this is somthing that is usual that I just haven't been around long enough to experience. If that is so then I apologize for being such a dips**t.
If this is not so then why isn't anybody telling us what is going on and what they are going to do about it. Maybe the old horse just needs to be put down if she can't live up to her expectations.


They should increase the bandwidth.
If I owned the site and it was experiencing a problem like this often then I would be seriously thinking about an addition to my bandwidth.


_________________
The one goal I carry is to help as many people as possible. People often ask me if I can talk. Many believe that I am a mute. Others regard me as genius.
http://www.xfire.com/profile/mmstick