Php Inventory Not Working

I installed the xampp Software in my web server, I download the Inventory software and copy it following location

C:\xampp\htdocs\php-inventory

Then i open the php admin and Create the new Database the database name is Inventory then i was import the site.sql file , all the table is copied.

But
When ever I open my web server http://10.54.200.100

Following error showing in My webpage

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: YES) in C:\xampp\htdocs\inventory\lib\database.php on line 85

Warning: mysql_error(): supplied argument is not a valid MySQL-Link resource in C:\xampp\htdocs\inventory\lib\database.php on line 85
CDatabase::Connect() error

PLEASE HELPE ME I NEED THE INVENTORY SOFTWARE

Awesome

Absolutely fabulous! Huge amounts of thanks dude!
harley davidson bedding|mikimoto pearl necklace

Re: Php Inventory Not Working

if you just installed xampp, you're probably running mysql with user "root" that has no password set. Try opening /site.xml file in main "php-inventory" directory and modify this block of code:

    <database type="mysql">
        <server>localhost</server>
        <login>root</login>
        <password>toor</password>
        <default>inventory</default>
    </database>

to look like this:

    <database type="mysql">
        <server>localhost</server>
        <login>root</login>
        <password></password>
        <default>inventory</default>
    </database>

Let me know if that helps.

Thank You Now Working fine

Tank you sir now My php web working fine