This is the tutorial section of GrapeThinking. You can browse all posts, or check out the most popular in tutorial by looking in the sidebar to the right of the posts.
Suggest a post for us to write about --> click here
Featured Client
Luna Nuda literally means Naked Moon. Two of the most popular wines from Italy just got better - Pinot Grigio and Chianti.
So you are ready to start advertising on Facebook?… Great! This simple tutorial should help you to get your ad set-up in less than 15 minutes.
Step 1 - What are you promoting? - Login to Facebook, then go to the Create Ad page and enter the url you want your traffic to go to. (For our clients, we customize a landing page for each ad in an effort to better convert the traffic). Read the rest of this entry »
Wow… so I wrote a post on my struggles getting Rails to work on my Windows Machine, and then I figure it out. I’ve been developing in various languages, and using Xampp to for my server, database, and programming language (Apache, MySQL, PHP). Nevertheless, I have finally got it working, and it was a lot simpler than I had figured. In case you’ve come here and you’re yet to get Xampp… I’ll walk you through the whole process. If you already have it, then go ahead and skip to STEP 2
STEP 1 - Install Xampp - ApacheFriends has made it really easy by giving us a simple windows installer to download. If your interested in developing with Perl, Tomcat, you can download their Add-Ons by clicking the links. Once you download, just give it a click and follow the on-screen instructions. I recommend you install Xampp at the default c:\xampp (if you do not, remember to replace the code below with your installation directory). Here’s a video to show you how simple it is…don’t be fooled, it takes a little longer than the video shows.
STEP 2 - Install Ruby - Thanks to RubyForge, you can download an easy one-click Ruby installer to use here. Once you download, click to open, and follow the instructions. I recommend you install Ruby at c:\xampp\ruby so it falls in line with your other programming languages, etc…
STEP 3 - Install Rails - Fortunately, the Windows version of Ruby comes with RubyGems already set up. Open your Command Prompt (start-> run-> cmd -OR- start-> programs-> accessories -> command prompt) and type the following commands.
Do the gem update from the bin directory in rails. For my installation:
cd c:\ruby\bin gem update
You may be prompted several times to choose which gem. Pick the highest version for (mswin32) gem install rails --include-dependencies
There may be some delays, and the install could take a while. If you encounter an error trying to use the gem command, just restart the Command Prompt.
STEP 4 - Create a Rails App - While your still in Command Prompt, type the following Command (without the brackets, and change “your-app-name” to whatever you wish to call your application)
rails C:/xampp/htdocs/<your-app-name>
STEP 5 - Configure Apache - With your Xampp installation, http://localhost (localhost:80) defaults to the Xampp browser control panel, which displays your status, tests, etc.. We want to be able to use Ruby, without disrupting this service, or interfering with our standard Xampp settings. Open your Xampp directory (in our case C:\Xampp) and browse to Apache\conf\httpd.conf and open the httpd.conf file in a text editor or other text editor of your choice.
Scroll all the way to the bottom, and add the following:
Finally - Check it Out - Point your browser to http://localhost:3000 and you should see the “Welcome Aboard” from ROR.
If your also looking for some editors. A nice simple free PHP editor with great extensions is “PSPad“. For hardcore coding, I recommend Zend(free for 30 days). For a nice simple free Rails Editor, “RoRED“, something a little more intense I would say go with the free “NetBeans” (don’t forget the .jdk).