Hi there,
Please find below my little notes on setting up on localhost using WAMP + Dreamweaver (where I visually style the initial template but you could ignore that bit plus the other little things that I do). This is assuming you have WAMP installed successfully ofcourse. Don't know if it's of any help but I'm happy to share as I've gained so much myself on these forums. Excuse the messy formatting, I've just pasted it from a word doc from notes I'm making as I'm learning all this too.
Temporary home page in Dreamweaver - Create a single, static page in DW and upload – this will be the temp page while developing.
Copy files
Copy and paste the unzipped CMS files to c://wamp/www/(whatever)
Copy the static site files here too (eg in a folder called ‘static’)
Set up the local site in Dreamweaver
Set up separately from remote site. So the client will have two DW sites (local for testing and remote for the temp page)
• Yes to server technology (select php + mySQL)
• Select ‘edit and test locally’
• ‘store files’ – c://wamp/www/(client) (path to the document root)
• URL =
http://localhost/(client) – (this is the document root as seen by webserver)
• Select ‘no’ to copy to other machine
• Select ‘done’
• OK
• Save the Dreamweaver .ste file to client directory as a backup
Create an empty database
(databases files are stored at: c:\wamp\mysql\data\(whatever) )
Open WAMP – then PHP myAdmin
Create new database
Note the following
• Host = localhost
• Database name = (client name)
• Username = whatever (or can use ‘root’)
• Password = xyz
Set up Dreamweaver to connect to MySQL
• Open up index.php
• Open applications panel, click on ‘databases’
• Click on ‘+’, select MySQL
• Connection information
o Connection name = conn
o MySQL server = localhost
o Username = (the one from above)
o Password = (the one from above)
o Database = (client name) or select it from the drop down list
Change permissions (well I don't know if this is necessary on a local host, but I do it anyway)
CHMOD to : 777
• tmp/templates_c
• tmp/cache
• uploads
• uploads/images
• modules
CHMOD to : 666
• config.php
Install CMSMS
• Point to localhost/(whatever) (use WAMP to get to localhost if easier)
• Install as per prompts
• Username = xyz, Pwd = 123
• Remove “install” directory
Ready for styling and developing on my local PC!