Sponsored Content
The Lounge What is on Your Mind? If possible, would you consider buying OS X for a non Mac computer? Post 302286868 by Neo on Thursday 12th of February 2009 07:00:12 AM
Old 02-12-2009
Here is a bit of follow-up:

Let's take MAMP for example. Here is a quote directly from the MAMP users guide:
Quote:
1.1.2**Installation process

Download the MAMP PRO disc image from MAMP: Mac, Apache, MySQL, PHP. Open the image and drag MAMP PRO into your Applications folder.
Note:**You need administrator permissions to install MAMP PRO!
If MAMP has not been installed yet, please download and install it. The MAMP, too, has to be installed in your Applications folder!
As you can see, there is no direction for installing via the command line. The installation is a GUI drag-and-drop.

Please correct me if I am am wrong. Why does the MAMP install guides only discuss a GUI drag-and-drop installation?
 

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Urgent help with web design problems - mac, safari and unix computer

Hi (Help, Help, Help) I am on a computer course and have designed a web site as one of my assignments. just before Xmas my college tutor "very kindly" viewed my site with a mac, safari browser and unix operating system computer. This is what she Emailed back to me, and I am trying to sort... (3 Replies)
Discussion started by: skylark167
3 Replies

2. Shell Programming and Scripting

My code worked on a Mac, now it does not work in another computer

I guess Mac has default bash. Then I copy my code to another comp and run it...And it gives me an error like "bad substitution".... How I can change my code??? Never had before this kind of situation. Help please. if then n=$(sort /Users/Natalie/lastserial | tail -1) ... (6 Replies)
Discussion started by: Natalie
6 Replies
MojoMojo::Installation(3pm)				User Contributed Perl Documentation			       MojoMojo::Installation(3pm)

NAME
MojoMojo::Installation - Installation instructions for MojoMojo INSTALLING MOJOMOJO
Step 0 Install MojoMojo's prerequisites. See <http://mojomojo.org/documentation/installation>. Step 1 - install Install MojoMojo either using the cpan shell like this: cpan MojoMojo or by downloading the tarball from <http://search.cpan.org/dist/MojoMojo> and running perl Makefile.PL on it manually. If you do this, run make installdeps to get all the required modules installed. Step 2 - configure "mojomojo.conf" is the main configuration file and is in Config::General format. First make sure your config file has a valid DSN for your database (You can use SQLite, MySQL or PostgreSQL - SQLite by default). The setting you change is in the "connect_info" hash in the "Model::DBIC" block. For instance, for MySQL: dsn dbi:mysql:database=mojomojo;host=localhost user db_user password db_password or for SQLite: dsn dbi:SQLite:__HOME__/db/sqlite/mojomojo.db user db_user passwrd db_password or for PostgreSQL: dsn dbi:Pg:dbname=mojomojo;host=localhost;port=5432 user db_user password db_password For MySQL and PostgreSQL you want to create the database first (SQLite does this automatically) create database mojomojo; Once the DSN is setup, we "deploy" the schema and some initial data to the mojomojo database by running the following script: ./script/mojomojo_spawn_db.pl This script has sane defaults for a test install, but you can override these. Run it with --help to see usage information. Step 3 - launch MojoMojo is a Catalyst application and works with Catalyst's built-in web server, or with an external one. Using the Catalyst built-in server Catalyst includes a test server which can be started using: ./script/mojomojo_server.pl -p 3000 where 3000 is the port number and the default if no port is specified. Note that if you install it through the cpan shell, mojomojo_server will be found in your bin directory. Using an external web server MojoMojo has been tested with Apache, lighttpd and nginx. If you need to make a choice, nginx and lighttpd are much lighter in terms of resource consumption, and faster at serving static files, while Apache is more popular and powerful. Comparison information can be found at WikiVs: o <http://www.wikivs.com/wiki/Apache_vs_nginx> o <http://www.wikivs.com/wiki/Lighttpd_vs_nginx> o <http://www.wikivs.com/wiki/Apache_vs_Lighttpd> See <http://mojomojo.org/documentation/deployment> for how to setup MojoMojo with various web servers. Set up Apache using either mod_perl or FastCGI. See http://search.cpan.org/dist/Catalyst/lib/Catalyst/Manual/Cookbook.pod#Using_FastCGI for further information on FastCGI, or you can look at Catalyst::Engine::Apache for info on setting up Catalyst apps in Apache. If your server is connected to a http proxy you may need to add the following line to the main config block: using_frontend_proxy 1 Step 4 - login Login to your MojoMojo and change the admin password. The default login/pass is "admin"/"admin". For troubleshooting, see <http://mojomojo.org/troubleshooting>. Step 5 - create pages Create a new page. Decide what URL you would like for the page then browse to that URL. You will then be asked to add content. For example, if you want to create a page about food, go to /food. perl v5.14.2 2010-05-11 MojoMojo::Installation(3pm)
All times are GMT -4. The time now is 04:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy