Connection Error Error Code: 1045

My website URL is: http://xcedsystem.epizy.com/php/connectionTest.php

What I’m seeing is:
Connection Error Error Code: 1045 Error: DescriptionAccess denied for user ‘’@‘192.168.2.190’ (using password: YES)

I already reviewed this link:
[Access Denied)

Here is my connection details. I did make sure the password was my hosting password and not my site login password.

<?php $servername = “sql205.epizy.com”; $username = “epiz_24037232”; $password = “************”; $database = “epiz_24037232_xcedDB”; $link = mysqli_connect($servername, $username, $password, $database); if (!$link) { echo “Connection Error”. PHP_EOL; echo "Error Codes: ". mysqli_connect_errno().PHP_EOL; echo “Error: Description”.mysqli_connect_error().PHP_EOL; exit; } echo “Connection is Successful”; ?>

Please help!

Thanks,
Sergio

@Sergio_infinityfree

sorry for the ping

I visited your page you had linked and that gave me (Connection Successful)

i suggest you to try clearing your cache or cookies or use another device or disable your fire wall or Anti virus :slight_smile:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.