Professional Xcode 3

ISBN13: 9780470525227 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description A solid guide that responds to the active interest in Apple’s Xcode tools Apple’s Xcode tools are a collection of applications and frameworks that are used to develop, test, and optimize applications primarily written for Mac OS X or the iPhone. … Read more

Microsoft Office for Mac 2008 Business Edition

Develop professional documents with Word building blocks and commonly-used business templates Build informative, accurate spreadsheets with easy-to-use, preformatted Excel formulas Manage e-mail, daily appointments and tasks with Entourage Apply SmartArt graphics to create polished presentations and reports Connect with others through Microsoft Office Exchange Server support Product Description Whether you have a Mac or an … Read more

Xcode 3 Unleashed

ISBN13: 9780321552631 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description Apple’s new Xcode 3 is the most powerful Mac development suite ever created. In Xcode 3 Unleashed, renowned Mac developer Fritz Anderson has written the definitive guide to making the most of Xcode 3 to build any Macintosh or iPhone application. … Read more

iLife ’09

iLife ’09 lets you get the most out of your photos, movies, and music on your Mac with new versions of iPhoto, iMovie, GarageBand, iWeb and iDVD Organize and search your photos by faces and places with iPhoto ’09; Create a movie in minutes or edit your masterpiece with iMovie ’09 Learn to play, start … Read more

How to run ASP on the Mac

I have an old web app that’s using Active Server Pages, and I want to run it on my (Intel) Mac. This is basically not a big deal, because you can simply use Microsoft IIS under Parallels.

But I wanted to use IIS only for ASP files, and let Apache handle the rest. And here’s how to make sure IIS only handles what it’s supposed to:

1. Make a share of your Webserver Root directory in Parallels.
2. On the PC, in the IIS Control Panel, click on the default Website, click on Properties, then choose Home Directory, select that the content should come from A Share located on another computer and enter .PSFyoursharename as the network directory.
3. Make sure you allow ASP under Web Service Extensions
4. On the Mac, uncomment the following lines in /private -> etc -> httpd -> httpd.conf (remove the #’s):

      LoadModule rewrite_module
      libexec/httpd/mod_rewrite.so
      LoadModule proxy_module
      libexec/httpd/libproxy.so
      AddModule mod_rewrite.c
      AddModule mod_proxy.c

Read more