Installation page doesn't show mysql on the Database server

In this board you can talk about general questions about phpMyFAQ

Moderator: Thorsten

Post Reply
chakthy
Posts: 1
Joined: Mon Oct 28, 2013 9:34 pm

Installation page doesn't show mysql on the Database server

Post by chakthy »

On the installation page (setup.php) the Database server menu shows SQLite 3 only. It is not showing mysql which is what I have installed. Did I miss something?

I opened setup.php and under the select database setup function it shows this:

<script type="text/javascript">
function selectDatabaseSetup(field) {
switch (field.value) {
case 'sqlite':
case 'sqlite3':
$('#dbsqlite').show();
$('#dbdatafull').hide();
break;
default:
$('#dbsqlite').hide();
$('#dbdatafull').show();
break;
}
}

Shouldn't this show a case for mysql too?
Thorsten
Posts: 15749
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: Installation page doesn't show mysql on the Database ser

Post by Thorsten »

Hi,

if MySQL doesn't show up it's not enabled in your PHP configuration.

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Post Reply