phpMyAdmin

A

Anonymous

Guest
Please help.
I reinstalled MySQL 5 and recreated the Database.
But not when i try to insert a table using the SQL insert block i get this message
mport.php: Missing parameter: import_type (FAQ 2.Cool
import.php: Missing parameter: format (FAQ 2.Cool

and when I try to remove the database i get this
Error

SQL query: Documentation

SELECT *
FROM

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
------------------
I reinstalled everyting.>PHP5 Apache 2 and MysQL5 and phpmyAdmin2.8.4.
Now when I run /phpmyAdmin/scripts/setup.php and press add server nothing happens.
Where can I get a pre setted config.inc.php since I cannot get phpmyadmin to create another 1
 
I have added these configurations to config.inc.php

<?php
$cfg['PmaAbsoluteUri'] = 'http://localhost/phpMyAdmin';
$cfg['Servers'][$i]['auth_type'] = 'http';

$cfg['Servers'][$i]['extension'] = 'mysqli';

$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
$cfg['Servers'][$i]['relation'] = 'pma_relation';
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
$cfg['Servers'][$i]['history'] = 'pma_history';
?>

But not I am getting Invalid server index: ""

Did I miss something?
 
then you got message about Syntax error in line 1, it's mean what MySQL Engine cannot parce your query.... or you have a mistake in query....
and if you try make somthing special try see database engine setting first.
 
Back
Top