Topic: New 500+ page Get Simple Website
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 :)
You are not logged in. Please login or register.
We had problems with our forum being hacked. From what we can tell, all data is safe, but it forced us to upgrade our PunBB installation. Announcement
GetSimple Support Forum → Sites Using GetSimple → New 500+ page Get Simple Website
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, that thing is huge! Have you developed any custom made plugins or is it done with general plugins?
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).
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!
Im looking at this site and I come with one conclusion.. Im obviously suck! :D
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
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)
Here is a new website my wife and I just finished for a large real estate company:
http://tinyurl.com/3m9peyyLet 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:
# 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!
mikeh wrote:Here is a new website my wife and I just finished for a large real estate company:
http://tinyurl.com/3m9peyyLet 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:
# 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.
GetSimple Support Forum → Sites Using GetSimple → New 500+ page Get Simple Website
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.