Looking for hotel booking software.
January 23, 2009 11:56 AM
Subscribe
If someone wanted to build a website that allowed online booking for multiple hotels, what inexpensive off-the-shelf software/CMS could be incorporated?
The business idea: cheap hotel rooms (from one geographic area) are resold online.
The site would need to:
1. Present room options and availablity via calendar.
2. Allow automated and manual inventory management (removal and addition of available hotel rooms) by the site administrator.
3. Allow the addition and removal of participating hotels by the site administrator.
4. Generate a comfirmation email for each booking.
5. Accept PayPal.
All suggestions will be warmly accepted and appreciated.
posted by davebush to computers & internet (8 comments total)
1 user marked this as a favorite
If you use a pre-existing CMS like Joomla! or Drupal, you'll end up writing custom plugin modules to handle the custom functionality you're looking at. Drupal, for example, can present information in calendar form, and lets you build relational hierarchies of custom content types, like hotels -> rooms -> reservations, but wiring those pieces together with custom application logic and making them all work together in the way that you like will not be a 'turnkey' kind of thing.
If you go with a more traditional web app development framework, like CakePHP or django aod Rails or what not, you'd do more custom development but might find it easier to deal with your own code rather than some other project's "native" architecture.
If neither of those options sounds appealing, you might poke around and see if there are any turnkey apps for reservation management that you could use. I have the feeling you may need to do custom code for some portions of it no matter what direction you take.
posted by verb at 12:12 PM on January 23