Copy link to clipboard
Copied
I am trying to create an XAMPP test server in Dreamweaver 5.5. I want the test server to work on editing Wordpress themes. I've already got Wordpress installed onto my remote server, so I'm a bit familiar with the process. I've been using this tutorial: http://www.adobe.com/devnet/dreamweaver/articles/dw_wordpress_pt2.html.
I have two issues. Firstly, installing WP into the the XAMPP htdocs folder. I know I'm not supposed to put the actual "wordpress" folder into the htdocs file. However, when I copy and paste all of the contents of the Worpress folder into the htdocs folder I end up with two index.php files (one from the WP folder, and one that was already in the htdocs folder. At first, I ignored this, and just let them both be.
I created a data base ("wordpress") and a user in PHPmyadmin that I gave universal privledges. I navigate to http://localhost/wp-admin/install.php and click the "create a configuration file." I put in the data base name ("Wordpress") and I put in the user name and password of the user I created and gave universal privileges to. Here arises my second issue: I get a "Error establishing a database connection" message. I even went and created a config file myself, and ended up with the same error message. Here is the info I'm providing:
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'Cassie');
/** MySQL database password */
define('DB_PASSWORD', 'the password for user Cassie');
/** MySQL hostname */
define('DB_HOST', 'localhost');
So I need to know A. How do I deal with the double index.php file issue, and is this what's causing my second problem? and B. What am I doing wrong in regards to creating this config file??
What am I doing wrong??
Copy link to clipboard
Copied
It's impossible to end up with a "double index.php" file because of the Windows file system. Two files with the same name cannot exist in the same location.
But first, is mySQL running? And second, did you create the database "wordpress" via phpMyAdmin or other method?