GetSimple Support Forum

Full Version: New 500+ page Get Simple Website
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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 Smile
Wow, that thing is huge! Have you developed any custom made plugins or is it done with general plugins?
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).
That's a beast for GS! Just shows that it isn't limited to the a 5-10 page website Smile

Congrats looks really nice too!
Im looking at this site and I come with one conclusion.. Im obviously suck! Big Grin
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)
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 Smile

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!
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 Smile

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.
(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 Smile

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...
Isnt gzippng usually enabled automatically by your host.
I have never had to do more than click a checkbox in my control panel.
(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. Wink
very nice site
It's perhaps nice in Florida... But it is not a GetSimple CMS website. It's made with WordPress.
It uses WP now, but I remember it was a nice GS site when mikeh posted about it almost 2 years ago.
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?
(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 Smile

site nolonger existing!