Deli olcam ... zaten cahilim bu yazılım meselesinde, bana bi güneş yüzü gösterin lütfen =)
olay sanırım config dosyasında bitiyo, buraya iki tane config dosyamın text halini kopyalıyorum, bunun düzelmesi için öneriniz, fikriniz varsa yardımcı olursanız memnun olurum çokça.
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * phpMyAdmin sample configuration, you can use it as base for * manual configuration. For easier setup you can use setup/ * * All directives are explained in documentation in the doc/ folder * or at <http://docs.phpmyadmin.net/>. * * @package PhpMyAdmin */
/* * This is needed for cookie based authentication to encrypt password in * cookie */ $cfg['blowfish_secret'] = '54e41b5439f5c4.83645538'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
/* * Servers configuration */ $i = 0;
/* * First server */ $i++; /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = ‘http’; /* Server parameters */ $cfg['Servers'][$i]['host'] = ’127.0.0.1’; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['AllowNoPassword'] = true;
/* * Directories for saving/loading files from server */ $cfg['UploadDir'] = ''; $cfg['SaveDir'] = '';
/** * Whether to display icons or text or both icons and text in table row * action segment. Value can be either of 'icons', 'text' or 'both'. */ //$cfg['RowActionType'] = 'both';
/** * Defines whether a user should be displayed a "show all (records)" * button in browse mode or not. * default = false */ //$cfg['ShowAll'] = true;
/** * Number of rows displayed when browsing a result set. If the result * set contains more rows, "Previous" and "Next". * default = 30 */ //$cfg['MaxRows'] = 50;
/** * Default language to use, if not browser-defined or user-defined * (you find all languages in the locale folder) * uncomment the desired line: * default = 'en' */ //$cfg['DefaultLang'] = 'en'; //$cfg['DefaultLang'] = 'de';
/** * default display direction (horizontal|vertical|horizontalflipped) */ //$cfg['DefaultDisplay'] = 'vertical';
/** * How many columns should be used for table display of a database? * (a value larger than 1 results in some information being hidden) * default = 1 */ //$cfg['PropertiesNumColumns'] = 2;
/** * Set to true if you want DB-based query history.If false, this utilizes * JS-routines to display query history (lost by window close) * * This requires configuration storage enabled, see above. * default = false */ //$cfg['QueryHistoryDB'] = true;
/** * When using DB-based query history, how many entries should be kept? * * default = 25 */ //$cfg['QueryHistoryMax'] = 100;
/** * Should error reporting be enabled for JavaScript errors * * default = 'ask' */ //$cfg['SendErrorReports'] = 'ask';
/* * You can find more configuration options in the documentation * in the doc/ folder or at <http://docs.phpmyadmin.net/>. */ ?>