Jump to content
View in the app

A better way to browse. Learn more.

The Uniform Server Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

SOLVED. Access denied, connection error, port 3306 and other similar access issues

Featured Replies

These errors are probably due to the fact that UniController was not closed properly before exiting the program and MySQL left behind some fail-safe "trackers" that should recover the status of MySQL when a new connection is established but this does not work in a WAMP environment.

Before switch off Apache and MySQL from UniController, then close UniController.exe

The solution is to delete in

\core\mysql\data

the files (make a backup copy of the files before deleting them)

ib_logfile0
ib_logfile1
auto.cnf
*.err
*.pid

As this issue happend to me very very frequently despite carefully closing UniController interface I wrote a simple .BAT file that does the job. Copy/paste the following code into a file such as repair.bat and save it in the same folder of UniController.exe:

cd core/mysql/data

IF EXIST _auto.cnf (
    DEL _auto.cnf
    REN auto.cnf _auto.cnf
) ELSE (
    REN auto.cnf _auto.cnf
)


IF EXIST _ib_logfile0 (
    DEL _ib_logfile0
    ren ib_logfile0 _ib_logfile0
) ELSE (
    ren ib_logfile0 _ib_logfile0
)


IF EXIST _ib_logfile1 (
    DEL _ib_logfile1
    ren ib_logfile1 _ib_logfile1
) ELSE (
    ren ib_logfile1 _ib_logfile1
)   


IF EXIST _mysql.err (
    DEL _mysql.err
    ren mysql.err _mysql.err
) ELSE (
    ren mysql.err _mysql.err
)

When the access issues happens, close and exit UniController.exe, run the BAT file, then run UniController.exe, switch on Apache and MySql, then click PhpMyAdmin!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.