Real Estate Forums

Coding HTML, ASP, PHP, JAVA MYSQL and more. All coding questions should be asked here.

Reply
 
Thread Tools Display Modes
Old 04-29-2008, 10:40 AM
RyanRE's Avatar
RyanRE RyanRE is offline
Uber Real Estate Webmaster
 
Join Date: Oct 2007
Location: Bellingham, WA
Posts: 533
RyanRE is on a distinguished road
Default Slow Loading Pages on Site

I am having trouble with a page loading really slow on a website.

The homepage is RyanMartinRealEstate (dot) com and when you click on the "Bellingham, WA" tab at the top, the page loads really slow. The site is written in html with heavy CSS and the particular page that is loading slow is in php. There are several other pages that are designed nearly the same that load just fine. (i.e. /Birch-Bay, /Blaine, /Ferndale, etc...) It is just the /Bellingham that loads slow?

Does anybody have an idea what is up?
__________________
Ryan A. Martin - Windermere Real Estate / Whatcom Inc.

Your Bellingham real estate professional specializing in the listing and sales of Bellingham condos. Also check out my Anacortes real estate website for information about Fidalgo Island and Anacortes, WA
Reply With Quote
Old 04-29-2008, 11:16 AM
danger9918 danger9918 is offline
New real estate webmaster
 
Join Date: Apr 2008
Location: Dubai, UAE
Posts: 29
danger9918 is on a distinguished road
Default Re: Slow Loading Pages on Site

Its took me forever to load as well... its weird because the homepage loaded in no time and they're both on the same server, perhaps its the heavy css as you said :S
__________________
Ismail Shihadi
Premium Real Estate Directory ~ Agents and Brokers ~ Commercial Real Estate
Reply With Quote
Old 04-29-2008, 11:24 AM
RyanRE's Avatar
RyanRE RyanRE is offline
Uber Real Estate Webmaster
 
Join Date: Oct 2007
Location: Bellingham, WA
Posts: 533
RyanRE is on a distinguished road
Default Re: Slow Loading Pages on Site

I know. It doesn't make sense to me. All of the pages use the same "heavy css" so it shouldn't make a difference. Even the other "city" pages load fairly quickly.

Anybody else know?
__________________
Ryan A. Martin - Windermere Real Estate / Whatcom Inc.

Your Bellingham real estate professional specializing in the listing and sales of Bellingham condos. Also check out my Anacortes real estate website for information about Fidalgo Island and Anacortes, WA
Reply With Quote
Old 04-29-2008, 12:38 PM
yoyo yoyo is offline
Advancing Webmaster
 
Join Date: Oct 2007
Posts: 35
yoyo is on a distinguished road
Default Re: Slow Loading Pages on Site

Is the "Most Recent Bellingham Real Estate Search" section being pulled from a data source?
Reply With Quote
Old 04-29-2008, 12:48 PM
RyanRE's Avatar
RyanRE RyanRE is offline
Uber Real Estate Webmaster
 
Join Date: Oct 2007
Location: Bellingham, WA
Posts: 533
RyanRE is on a distinguished road
Default Re: Slow Loading Pages on Site

Quote:
Originally Posted by yoyo View Post
Is the "Most Recent Bellingham Real Estate Search" section being pulled from a data source?
Yes, all of the city pages pull the most recent 3 listings from unique rss feeds that I have set up for each city and neighborhood. The rss feed is then parsed into the page via php. That could be it. Maybe I just need to narrow down the parameters of data source that create the rss feed? "Bellingham" is definitely the largest data source of all the feeds.

Thanks for the suggestion.
__________________
Ryan A. Martin - Windermere Real Estate / Whatcom Inc.

Your Bellingham real estate professional specializing in the listing and sales of Bellingham condos. Also check out my Anacortes real estate website for information about Fidalgo Island and Anacortes, WA
Reply With Quote
Old 04-29-2008, 03:17 PM
MAC MAC is offline
New real estate webmaster
 
Join Date: Apr 2006
Location: Portugal
Posts: 16
MAC is on a distinguished road
Default Re: Slow Loading Pages on Site

HI

In a first approach, I see one fault that leads to slowly loading pages:

You are "calling" an image (city-of-bellingham.jpg) without declaring it's dimensions. This causes the browser to wait till the image is completely downloaded to determine it’ s dimensions, and to render the rest of the html document.

If you declare the image dimensions, whether embedded (which is deprecated) or in a CSS style, the browser “saves” room for the image (while it downloads) and proceeds rendering the HTML, thus not wasting any precious time.

Hope this helps!

Greetings from Portugal
__________________
MAC
_________________________________________
Adobe Certified Professional, Macromedia Dreamweaver 8 Developer.
Reply With Quote
Old 04-29-2008, 03:51 PM
RonnieG's Avatar
RonnieG RonnieG is offline
Uber Real Estate Webmaster
 
Join Date: Sep 2005
Location: Denver, Colorado
Posts: 1,050
RonnieG is on a distinguished road
Default Re: Slow Loading Pages on Site

Ryan,
There may also be other factors, but the jpg image on your Bellingham page was 60kb uncompressed, and only 11kb when saved with a 70% compression factor, with no discernible loss of resolution. It may not make a lot of difference with only one image, but for any page with more than one image, or for images that are large to begin with, it could help.
Reply With Quote
Old 04-29-2008, 04:45 PM
RyanRE's Avatar
RyanRE RyanRE is offline
Uber Real Estate Webmaster
 
Join Date: Oct 2007
Location: Bellingham, WA
Posts: 533
RyanRE is on a distinguished road
Default Re: Slow Loading Pages on Site

@MAC ~ I will declare the dimensions and see if that helps.

@Ron ~ I am not thinking that the image is the problem. All of the pages have a similar image and this is the only one that loads slow, but I will compress the photo and see if it helps. As you noted, it can't hurt the loading time.
__________________
Ryan A. Martin - Windermere Real Estate / Whatcom Inc.

Your Bellingham real estate professional specializing in the listing and sales of Bellingham condos. Also check out my Anacortes real estate website for information about Fidalgo Island and Anacortes, WA
Reply With Quote
Old 04-29-2008, 05:05 PM
mrlb mrlb is offline
Real Estate WebMaster
 
Join Date: Mar 2008
Posts: 129
mrlb is on a distinguished road
Default Re: Slow Loading Pages on Site

RyanRE,

I don't think the problem is with your CSS or the page rendering in the browser due to not having the dimensions (although that is a good thing to have).

The slow down appears to be the processing you are doing on your server before your web server is sending the request back to the user's browser. The page with css, graphics and js are being served in just over a second.

Do you have access to copy the page and do some testing?
Reply With Quote
Old 04-29-2008, 05:22 PM
RyanRE's Avatar
RyanRE RyanRE is offline
Uber Real Estate Webmaster
 
Join Date: Oct 2007
Location: Bellingham, WA
Posts: 533
RyanRE is on a distinguished road
Default Re: Slow Loading Pages on Site

Quote:
Originally Posted by mrlb View Post
RyanRE,

I don't think the problem is with your CSS or the page rendering in the browser due to not having the dimensions (although that is a good thing to have).

The slow down appears to be the processing you are doing on your server before your web server is sending the request back to the user's browser. The page with css, graphics and js are being served in just over a second.

Do you have access to copy the page and do some testing?
I have full access to everything if you can help. I have to take off until tomorrow though. PM me with what you need.
__________________
Ryan A. Martin - Windermere Real Estate / Whatcom Inc.

Your Bellingham real estate professional specializing in the listing and sales of Bellingham condos. Also check out my Anacortes real estate website for information about Fidalgo Island and Anacortes, WA
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Possible changes to remedy loss of IDX pages BSchroeder Work Orders 2 04-04-2008 10:24 AM
Site Optimization, Layout ~ Examples Pinehurst Real Estate Guy Real Estate and Google 0 03-19-2008 06:20 AM
Indexed pages and Custom IDX Dave Kovaleski Real Estate and Google 20 11-29-2007 02:13 PM
How to add Pages to site while maintaining page name from old site Morristown REW CMS 1 Questions 8 11-13-2007 11:39 AM

For our members

Main Sections

IDX Coverage Areas

Spiders Welcome

All times are GMT -7. The time now is 02:15 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.