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.
Vanilla Pre-Release 2
This discussion has been closed.
Comments
i had created my db previously - i'm assuming that vanilla was trying to created the same db as i had previously made?
i'm wreckless though, i had a fewcouple5 beers - otherwise i would have documented the error better.
seems to be working fine after a small amount of testing, looking forward to styling it this weekend
Windows was doing this wierd thing ...
Basically, after each step I redirect back to the page and tell the script which step to do next with a Step=# in the querystring. On windows, despite the fact that I wasn't passing it in the querystring with the step number, it was retaining the PostBackAction variable as well, causing it to re-do the last step after it had just completed doing it. The solution was to pass a bogus PostBackAction with the Step in the querystring after each step finished processing. Then Windows picked up the new bogus step and didn't try to redo the last one.
*shakes head*
Open up /js/ajax.js and uncomment line 50 so it looks like this:
document.location = DataSource;
Then go back to your extension management screen and hard-refresh your browser so it gets the latest js files. Then enable an extension. It will redirect you to the ajax handler page where you can see any errors that are happening.
1. SETUP SVN ON YOUR MAC
The easiest way to install SVN is by browsing to the binary downloads page and scrolling down until you find MacOS X. You will want the second link, the one that does not rely on Fink. Grab the 1.3 (or whatever is the newest) binary from the Metissian page and install it.*
2. MODIFY YOUR BASH PROFILE
You need to add '/usr/local/bin' into your Bash profile, so you cou can run SVN from anywhere in the Terminal.
a) Open Terminal (Applications > Utilities > Terminal)
b) Type "pico .bash_profile" to open your Bash profile file in the Pico editor
c) You will now see a simple text editor, (probably) showing an empty document. Copy & paste in this:
PATH="/usr/local/bin:/usr/local/subversion/bin:$PATH" export PATH
d) Press Ctrl+X to exit, then press Y when prompted to 'save modified buffer', and finally ENTER when asked for a file name, as you are saving to the existing '.bash_profile' file.
3. DOWNLOAD VANILLA
a) In Terminal, type "cd desktop" to navigate to your Desktop (To execute a command in Terminal, remember to press Enter)
b) Now run "mkdir vanilla" to create a folder called 'vanilla' on your desktop
c) Then "cd vanilla" to move to this folder
d) Copy & paste "svn export http://lussumo.com/svn/vanilla/trunk" into Terminal, and press Enter
e) Lots of text will now whizz by in Terminal as the files you need are downloaded to your desktop/vanilla folder
f) Upload the contents of your desktop/vanilla/trunk folder by FTP and continue installation as normal (see readme.html for instructions)
* Props to Chris Davis for this tip.