Posts: 661
Threads: 52
Joined: Feb 2011
Here is a new website my wife and I just finished for a large real estate company:
http://tinyurl.com/3m9peyy
Let me know your opinions please
Posts: 45
Threads: 6
Joined: Apr 2011
Wow, that thing is huge! Have you developed any custom made plugins or is it done with general plugins?
Posts: 661
Threads: 52
Joined: Feb 2011
blazejs Wrote:Wow, that thing is huge! Have you developed any custom made plugins or is it done with general plugins?
Most of the functionality is with custom plugins/programming.. Although it is using my random banner plugin, multi-user plugin, and items manager (for rentals).
Posts: 30
Threads: 5
Joined: Feb 2010
That's a beast for GS! Just shows that it isn't limited to the a 5-10 page website
Congrats looks really nice too!
Posts: 51
Threads: 6
Joined: Jun 2011
Im looking at this site and I come with one conclusion.. Im obviously suck!
It will take a long time when I'll start to make sites like that.
BTW. whats the prices for sites in USA?
let say, simple site, standard functions and turbo-site like this one?
I would love to know how silly I am to work for 1000 zł per site ;D
Posts: 1,108
Threads: 70
Joined: Aug 2009
hey mike,
just found a small bug when viewing the galleries..
z-index on the navigation div should be 1, as its showing in front of the images on small height screens...
Cool site though.. just shows what GS can do with a little bit of tweaking... 8)
Posts: 63
Threads: 26
Joined: Oct 2011
mikeh Wrote:Here is a new website my wife and I just finished for a large real estate company:
http://tinyurl.com/3m9peyy
Let me know your opinions please
Wow, this is big.
Have you used multiuser plugin without any modifications, or modified? I have tried to implement it, but have have many problems with logging in and out with different browsers, and also a "no" displaying at the top the the page when user had "settings" blocked.
Did you tried caching plugin?
And you should really use .htaccess (if apache) to to compress the site. It would load way faster:
Code: # Enable GZIP
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</ifmodule>
# Expires Headers - 2678400s = 31 days
<ifmodule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 seconds"
ExpiresByType text/html "access plus 7200 seconds"
ExpiresByType image/gif "access plus 2678400 seconds"
ExpiresByType image/jpeg "access plus 2678400 seconds"
ExpiresByType image/png "access plus 2678400 seconds"
ExpiresByType text/css "access plus 518400 seconds"
ExpiresByType text/javascript "access plus 2678400 seconds"
ExpiresByType application/x-javascript "access plus 2678400 seconds"
</ifmodule>
# Cache Headers
<ifmodule mod_headers.c>
# Cache specified files for 31 days
<filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$">
Header set Cache-Control "max-age=2678400, public"
</filesmatch>
# Cache HTML files for a couple hours
<filesmatch "\.(html|htm)$">
Header set Cache-Control "max-age=7200, private, must-revalidate"
</filesmatch>
# Cache PDFs for a day
<filesmatch "\.(pdf)$">
Header set Cache-Control "max-age=86400, public"
</filesmatch>
# Cache Javascripts for 31 days
<filesmatch "\.(js)$">
Header set Cache-Control "max-age=2678400, private"
</filesmatch>
</ifmodule>
# Turn ETags Off
FileETag None
# Turn PHP caching off
<FilesMatch "\.(php)$">
<IfModule mod_expires.c>
ExpiresActive Off
</IfModule>
<IfModule mod_headers.c>
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
</IfModule>
</FilesMatch>
Additionally, install PageSpeed to Chrome, and analyze the page. The Chrome will give you optimized images (with loss) that are significantly smaller. You could shave off some 200-300kb from download size. (Tested page: http://downingfryerealestatecompany.com/...munities/)
Also, try to combine your java scripts into 2-3 files max, this is a lot of calls you generate. You might try moving them to the bottom of the page, just before </body> so your page displays faster.
Good work!
Posts: 661
Threads: 52
Joined: Feb 2011
mrmut Wrote:mikeh Wrote:Here is a new website my wife and I just finished for a large real estate company:
http://tinyurl.com/3m9peyy
Let me know your opinions please
Wow, this is big.
Have you used multiuser plugin without any modifications, or modified? I have tried to implement it, but have have many problems with logging in and out with different browsers, and also a "no" displaying at the top the the page when user had "settings" blocked.
Did you tried caching plugin?
And you should really use .htaccess (if apache) to to compress the site. It would load way faster:
Code: # Enable GZIP
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</ifmodule>
# Expires Headers - 2678400s = 31 days
<ifmodule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 seconds"
ExpiresByType text/html "access plus 7200 seconds"
ExpiresByType image/gif "access plus 2678400 seconds"
ExpiresByType image/jpeg "access plus 2678400 seconds"
ExpiresByType image/png "access plus 2678400 seconds"
ExpiresByType text/css "access plus 518400 seconds"
ExpiresByType text/javascript "access plus 2678400 seconds"
ExpiresByType application/x-javascript "access plus 2678400 seconds"
</ifmodule>
# Cache Headers
<ifmodule mod_headers.c>
# Cache specified files for 31 days
<filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$">
Header set Cache-Control "max-age=2678400, public"
</filesmatch>
# Cache HTML files for a couple hours
<filesmatch "\.(html|htm)$">
Header set Cache-Control "max-age=7200, private, must-revalidate"
</filesmatch>
# Cache PDFs for a day
<filesmatch "\.(pdf)$">
Header set Cache-Control "max-age=86400, public"
</filesmatch>
# Cache Javascripts for 31 days
<filesmatch "\.(js)$">
Header set Cache-Control "max-age=2678400, private"
</filesmatch>
</ifmodule>
# Turn ETags Off
FileETag None
# Turn PHP caching off
<FilesMatch "\.(php)$">
<IfModule mod_expires.c>
ExpiresActive Off
</IfModule>
<IfModule mod_headers.c>
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
</IfModule>
</FilesMatch>
Additionally, install PageSpeed to Chrome, and analyze the page. The Chrome will give you optimized images (with loss) that are significantly smaller. You could shave off some 200-300kb from download size. (Tested page: http://downingfryerealestatecompany.com/...munities/)
Also, try to combine your java scripts into 2-3 files max, this is a lot of calls you generate. You might try moving them to the bottom of the page, just before </body> so your page displays faster.
Good work!
Thanks for your suggestions (mrmut and n00dles101)! Much appreciated.
Posts: 166
Threads: 24
Joined: Jul 2012
(2012-01-30, 02:01:42)mikeh Wrote: mrmut Wrote:mikeh Wrote:Here is a new website my wife and I just finished for a large real estate company:
http://tinyurl.com/3m9peyy
Let me know your opinions please
Wow, this is big.
Have you used multiuser plugin without any modifications, or modified? I have tried to implement it, but have have many problems with logging in and out with different browsers, and also a "no" displaying at the top the the page when user had "settings" blocked.
Did you tried caching plugin?
And you should really use .htaccess (if apache) to to compress the site. It would load way faster:
Code: # Enable GZIP
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</ifmodule>
# Expires Headers - 2678400s = 31 days
<ifmodule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 seconds"
ExpiresByType text/html "access plus 7200 seconds"
ExpiresByType image/gif "access plus 2678400 seconds"
ExpiresByType image/jpeg "access plus 2678400 seconds"
ExpiresByType image/png "access plus 2678400 seconds"
ExpiresByType text/css "access plus 518400 seconds"
ExpiresByType text/javascript "access plus 2678400 seconds"
ExpiresByType application/x-javascript "access plus 2678400 seconds"
</ifmodule>
# Cache Headers
<ifmodule mod_headers.c>
# Cache specified files for 31 days
<filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$">
Header set Cache-Control "max-age=2678400, public"
</filesmatch>
# Cache HTML files for a couple hours
<filesmatch "\.(html|htm)$">
Header set Cache-Control "max-age=7200, private, must-revalidate"
</filesmatch>
# Cache PDFs for a day
<filesmatch "\.(pdf)$">
Header set Cache-Control "max-age=86400, public"
</filesmatch>
# Cache Javascripts for 31 days
<filesmatch "\.(js)$">
Header set Cache-Control "max-age=2678400, private"
</filesmatch>
</ifmodule>
# Turn ETags Off
FileETag None
# Turn PHP caching off
<FilesMatch "\.(php)$">
<IfModule mod_expires.c>
ExpiresActive Off
</IfModule>
<IfModule mod_headers.c>
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
</IfModule>
</FilesMatch>
Additionally, install PageSpeed to Chrome, and analyze the page. The Chrome will give you optimized images (with loss) that are significantly smaller. You could shave off some 200-300kb from download size. (Tested page: http://downingfryerealestatecompany.com/...munities/)
Also, try to combine your java scripts into 2-3 files max, this is a lot of calls you generate. You might try moving them to the bottom of the page, just before </body> so your page displays faster.
Good work!
Thanks for your suggestions (mrmut and n00dles101)! Much appreciated.
Bump back up. I'm looking at the link and it seems it has been ported over to wordpress. Curious...
Posts: 6,266
Threads: 181
Joined: Sep 2011
Isnt gzippng usually enabled automatically by your host.
I have never had to do more than click a checkbox in my control panel.
Posts: 102
Threads: 5
Joined: Dec 2012
(2013-03-16, 02:14:10)lnickel Wrote: Bump back up. I'm looking at the link and it seems it has been ported over to wordpress. Curious...
Yep, it's WordPress. And: An installation that goes to the limits of the perfomance of WordPress. Perhaps it will be soon migrated to another system.
Posts: 6
Threads: 4
Joined: Feb 2013
Posts: 102
Threads: 5
Joined: Dec 2012
It's perhaps nice in Florida... But it is not a GetSimple CMS website. It's made with WordPress.
Posts: 3,491
Threads: 106
Joined: Mar 2010
It uses WP now, but I remember it was a nice GS site when mikeh posted about it almost 2 years ago.
Posts: 166
Threads: 24
Joined: Jul 2012
I was curious about this because i am porting over a site from Drupal to GS. Still working on it. So far so good. I was curious why you migrated over to WP from GS?
Posts: 1
Threads: 0
Joined: Aug 2013
(2011-09-10, 01:14:46)mikeh Wrote: Here is a new website my wife and I just finished for a large real estate company:
http://tinyurl.com/3m9peyy
Let me know your opinions please
site nolonger existing!
|