Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Add this great spell checker
http://orangoo.com/spell/
The code is also there and free to use.
It seems like a great app for a Vanilla extension.
The code is also there and free to use.
It seems like a great app for a Vanilla extension.
0
This discussion has been closed.
Comments
that was easy
also, how has this BASE stuff changed the paths in appg/settings.php and conf/settings.php and the database? i'm referring specifically to the stylesheet paths. i can't seem to get them right. i had to fudge it by setting the full url to the default style in LUM_Style. i don't see base href anywhere in the source.
You should be able to addstylesheet and addscript like this:
$Head->AddStyleSheet('extensions/myextension/style.css'); $Head->AddScript('extensions/myextension/script.js');
This relies on you setting up the web_root properly, while the base_url is used for completely different things. Here is how the web_root and base_url are set up here on the community forum:
$Configuration['BASE_URL'] = 'http//lussumo.com/community/'; $Configuration['WEB_ROOT'] = '/community/';
So, "base_url" refer's to the fully path you need to type into an address bar to visit your vanilla forum. 'web_root' refers to everything after the domain that brings you to the root of your vanilla installation.
I uploaded a new version of this extension which is translation-friendly.
/community/themes/vanilla/styles/default/
It has to be this way just in case someone wants to use a style from somewhere other than the root of their installation - like on another server.
*thinks