Public bug reported:

Code from installer.php

 $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], 
               $_POST['db_pass']) or die ('Error connecting to mysql');
 $select_db = @mysql_select_db($_POST['db_name']);

it should use ezSQL so it can run with any SQL database.

** Affects: aikiframework
     Importance: Undecided
         Status: New

** Description changed:

  Code from installer.php
  
-       $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], 
$_POST['db_pass']) or die ('Error connecting to mysql');
-       $select_db = @mysql_select_db($_POST['db_name']);
+  $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], 
+                $_POST['db_pass']) or die ('Error connecting to mysql');
+  $select_db = @mysql_select_db($_POST['db_name']);
  
  it should use ezSQL so it can run with any SQL database.

-- 
You received this bug notification because you are a member of Aiki
Framework Developers, which is subscribed to aikiframework.
https://bugs.launchpad.net/bugs/875099

Title:
  Installer.php use MySQL instead of ezSQL

Status in Aiki Framework:
  New

Bug description:
  Code from installer.php

   $conn = @mysql_connect($_POST['db_host'], $_POST['db_user'], 
                 $_POST['db_pass']) or die ('Error connecting to mysql');
   $select_db = @mysql_select_db($_POST['db_name']);

  it should use ezSQL so it can run with any SQL database.

To manage notifications about this bug go to:
https://bugs.launchpad.net/aikiframework/+bug/875099/+subscriptions

_______________________________________________
Mailing list: https://launchpad.net/~aikiframework-devel
Post to     : aikiframework-devel@lists.launchpad.net
Unsubscribe : https://launchpad.net/~aikiframework-devel
More help   : https://help.launchpad.net/ListHelp

Reply via email to