Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
What are some ways to speed up my forum?
Shadowdare
MVP
I've recently changed hosts but now my Vanilla forum seems slower than usual. The new host has a lower ping than my last one. What are some ways I can speed it up? This is the link to my forum.
Add Pages to Vanilla with the Basic Pages app
0
Best Answer
-
Shadowdare MVPWeird, somehow it's all working fine now after I uninstalled VanillaAntiSpam (might not be related).
Add Pages to Vanilla with the Basic Pages app
0
Answers
On ipad so cant inpect src code.
Usually img sizes and multiple servr requests from scripts etc cn slow it down, using cdn for jquery cn hlp, along with minifying css and js files.
There was an error rendering this rich post.
1) Your host gave you more CPU
2) You used a memcached server (probably not an option with cheap shared hosting)
As 422 said, static resources can slow down the perceived loading time as well. Factoring in browser caching, the overall page load time seems to be about 4 seconds, with the HTML taking up more than half of that. It seems like your server is just slow, even on static files. Look into better hosting.
Vanilla Forums COO [GitHub, Twitter, About.me]
Vanilla Forums COO [GitHub, Twitter, About.me]
And I have another problem. With the update to 2.0.18.1 (I was running RC2) I can't get to the /utility/update/ page without it saying bonk.
mysql_free_result() expects parameter 1 to be resource, boolean given
When I enable debug and view a discussion, I see a box with error messages on the top left (which gets cut off), but here there is no bonk page.
Add Pages to Vanilla with the Basic Pages app
There was an error rendering this rich post.
mysql_free_result()
in Vanilla.Add Pages to Vanilla with the Basic Pages app
Add Pages to Vanilla with the Basic Pages app
@Tim
Care to briefly extoll the virtues of your hosting packages? It's kind of like WordPress.com, right? Where we don't have FTP access, but everything is sort of taken over and made to run smoothly by the "powers that be"?
@DanielSchulzJackson That's the idea. We have spent a great deal of time tweaking both Vanilla and our hardware and software infrastructure to ensure that it is fast. Everything from memory caching, to CDNs, to ensuring that the available plugins are well coded. You'd be surprised at how big of a performance impact even 1 badly coded plugin can have.
Vanilla Forums COO [GitHub, Twitter, About.me]
Here's a more in-depth explanation of how we handle hosting:
Load Balancing
Our forums reside on custom built hosting clusters containing many servers, not just one. This allows us to efficiently scale our resources based on the load our forum exerts. Each cluster starts with two loadbalancers. Only one is used at a time, while the other one monitors the first in real time, ready to take over in case of a failure of any kind. This is called "Hot Failover", and it helps keep our forums running even when something goes wrong.
Dedicated Resources
When the active loadbalancer receives a request, it forwards it to one of the cluster's web nodes. There are always at least 2 nodes in any cluster, and the loadbalancers monitor them in real time so that if any of them go down they are immediately removed from the pool and their requests are redirected to other nodes. This is far superior to a single dedicated server because it allows our traffic (and hardware risk) to be spread over many different systems and benefit from the resulting structural resilience. As our forum grows, we add additional web nodes to compensate for the extra traffic. This is done seamlessly without requiring downtime or hardware changes. Again, far superior to hosting on a single dedicated server.
Monitoring
We have an advanced monitoring system custom built for Vanilla Forums that keeps track of each server within each cluster. This allows us to react extremely quickly when things go wrong, and to compensate for changes in traffic within minutes. The monitoring system continuously evaluates the 'health' of each cluster and recommends changes to the configuration (adding, removing servers) depending on current load and trends.
Vanilla Forums COO [GitHub, Twitter, About.me]
I don't use Vanilla's hosting options myself, but I've heard great feedback from the people who use the Vanilla servers, such as phenomenal up-time, speed, and support.
Add Pages to Vanilla with the Basic Pages app
Great answer Tim,
I didnt see any info about firewall ?
Nice to see you back too,
There was an error rendering this rich post.
@422 Obviously all the systems are heavily firewalled to prevent unauthorized access. Additionally, software acting as a service daemon (like mysql, memcached, etc) are all configured to accept connections only from within the Vanilla network.
But @DanielSchulzJackson was only asking about speed, so I didn't include that information.
Vanilla Forums COO [GitHub, Twitter, About.me]
firewall would be a speed impediment, but a necessary one
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Cheers, i was eeking out the virtues of going hosted with you guys. As its often the question most noobs never ask.
There was an error rendering this rich post.
Thanks for all the input, Lord Of Servers etc!
Guilty confession - I'm a customization fiend. I understand that's the key limitation of the hosted options, just as it is with most instances of wordpress.com service.
Example: Our site is very pinterest-oriented. Lots of young moms learning how to parent. So I want fileupload with pinterest-dimensions output, and 2 different "pin it" buttons, along with facebook "like" and nothing else.
Tough to do that on hosted, no?