Toon posts:

phpMyAdmin geeft wit scherm

Pagina: 1
Acties:
  • 145 views sinds 30-01-2008
  • Reageer

Verwijderd

Topicstarter
Na het installeren van server en php heb ik phpMyAdmin geinstalleerd en wanneer ik aanlog gaat hij wel naar de pagina, hij laad dus main.php en komt dan op een wit scherm.

Ook via localhost/phpMyAdmin/index.php of localhost/phpMyAdmin/main.php krijg ik steeds een wit scherm.

Ik heb phpmyadmin al in tar.bz2 als tar.gz als zip geinstalleerd. Ik gebruik versie 2.5.5-pl1, ook vorige versies heb ik eens geprobeerd, maar ook hier kreeg ik hetzelfde resultaat.

kan iemand mij helpen. De rest van mijn configuratie werkt goed

  • Sneezydevil
  • Registratie: Januari 2002
  • Laatst online: 29-09-2025
Kijk es in je error log of de pagina geen error geeft, en hij daarom wit blijft. Ik krijg namelijk ook een witte pagina te zien als ik een php pagina met parse errors heb.

Verwijderd

Topicstarter
hij geeft geen errors

  • moto-moi
  • Registratie: Juli 2001
  • Laatst online: 09-06-2011

moto-moi

Ja, ik haat jou ook :w

Wat staat er in de source van die pagina ?
Wat staat er in de logfiles ?
Iets meer info zou wel handig zijn ;)

God, root, what is difference? | Talga Vassternich | IBM zuigt


Verwijderd

even kijken in je php.ini of hij ook errors laat zien !

Verwijderd

Topicstarter
PHP:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Index.php: 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML lang=en dir=ltr xml:lang="en" 
xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>phpMyAdmin 2.5.5-pl1</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"><LINK 
href="./css/phpmyadmin.css.php?lang=en-iso-8859-1&amp;js_frame=right" 
type=text/css rel=stylesheet>
<SCRIPT type=text/javascript>
<!--
    document.writeln('<frameset cols="150,*" rows="*" border="1" frameborder="1" framespacing="0">');
    document.writeln('    <frameset rows="*, 50" framespacing="0" frameborder="0" border="0">');
    document.writeln('        <frame src="left.php?lang=en-iso-8859-1&amp;server=1&amp;hash=4f3bcf1c5d9851a9a73523a56b0e9aa6913384983" name="nav" frameborder="0" />');
    document.writeln('        <frame src="queryframe.php?lang=en-iso-8859-1&amp;server=1&amp;hash=4f3bcf1c5d9851a9a73523a56b0e9aa6913384983" name="queryframe" frameborder="0" scrolling="no" />');
    document.writeln('    </frameset>');
    document.writeln('    <frame src="main.php?lang=en-iso-8859-1&amp;server=1" name="phpmain4f3bcf1c5d9851a9a73523a56b0e9aa6913384983" border="0" frameborder="0" />');
    document.writeln('    <noframes>');
    document.writeln('        <body bgcolor="#FFFFFF">');
    document.writeln('            <p>phpMyAdmin is more friendly with a <b>frames-capable</b> browser.</p>');
    document.writeln('        </body>');
    document.writeln('    </noframes>');
    document.writeln('</frameset>');
//-->
</SCRIPT>
</HEAD><FRAMESET border=1 frameSpacing=0 rows=* frameBorder=1 
cols=150,*><FRAMESET border=0 frameSpacing=0 rows="*, 50" frameBorder=0><FRAME 
name=nav 
src="left.php?lang=en-iso-8859-1&amp;server=1&amp;hash=4f3bcf1c5d9851a9a73523a56b0e9aa6913384983" 
frameBorder=0><FRAME name=queryframe 
src="queryframe.php?lang=en-iso-8859-1&amp;server=1&amp;hash=4f3bcf1c5d9851a9a73523a56b0e9aa6913384983" 
frameBorder=0 scrolling=no></FRAMESET><FRAME border=0 
name=phpmain4f3bcf1c5d9851a9a73523a56b0e9aa6913384983 
src="main.php?lang=en-iso-8859-1&amp;server=1" 
frameBorder=0><NOFRAMES>
        <body bgcolor="#FFFFFF">
            <p>phpMyAdmin is more friendly with a <b>frames-capable</b> browser.</p>
        </body>
    </NOFRAMES></FRAMESET></HTML>

[ Voor 95% gewijzigd door Verwijderd op 10-01-2004 18:46 ]


  • AW_Bos
  • Registratie: April 2002
  • Laatst online: 22:35

AW_Bos

Nostalgicus 🕰

kan je de source ook ff highliten? Zo is het erg onduidelijk.

"Je kan met alle ziel en zaligheid ergens aan werken, maar soms is de uitkomst een zaal vol zieligheid." - Ariën


  • alt-92
  • Registratie: Maart 2000
  • Niet online

alt-92

ye olde farte

AW_Bos schreef op 10 januari 2004 @ 18:36:
kan je de source ook ff highliten? Zo is het erg onduidelijk.
liever dan tussen
code:
1
 [ code ]
tags, of nog liever, alleen de nodige stukken.

werkt
code:
1
2
3
<?
phpinfo();
?>
wel?

ik heb een 864 GB floppydrive! - certified prutser - the social skills of a thermonuclear device


Verwijderd

Topicstarter
PHP:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
config.inc.php

<?php

if (!isset($old_error_reporting)) {
error_reporting(E_ALL);
@ini_set('display_errors', '1');
}


$cfg['PmaAbsoluteUri'] = 'qndy.pandora.be/phpMyAdmin';


/**
* Disable the default warning about $cfg['PmaAbsoluteUri'] not being set
* You should use this if and ONLY if the PmaAbsoluteUri auto-detection
* works perfectly.
*/
$cfg['PmaAbsoluteUri_DisableWarning'] = FALSE;

/**
* Disable the default warning that is displayed on the DB Details Structure page if
* any of the required Tables for the relationfeatures could not be found
*/
$cfg['PmaNoRelation_DisableWarning'] = FALSE;

/**
* The 'cookie' auth_type uses blowfish algorithm to encrypt the password.
* If at least one server configuration uses 'cookie' auth_type,
* enter here a passphrase that will be used by blowfish.
*/
$cfg['blowfish_secret'] = 'passwoord';

/**
* Server(s) configuration
*/
$i = 0;
// The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0].
// You can disable a server config entry by setting host to ''.
$i++;
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
// (requires PHP >= 4.3.0)
$cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings
// (this user must have read-only
$cfg['Servers'][$i]['controlpass'] = ''; // access to the "mysql/user"
// and "mysql/db" tables)
$cfg['Servers'][$i]['auth_type'] = 'cookie'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed
// with 'config' auth_type)
$cfg['Servers'][$i]['only_db'] = ''; // If set to a db-name, only
// this db is displayed
// at left frame
// It may also be an array
// of db-names
$cfg['Servers'][$i]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname

$cfg['Servers'][$i]['pmadb'] = ''; // Database used for Relation, Bookmark and PDF Features
// (see scripts/create_tables.sql)
// - leave blank for no support
// DEFAULT: 'phpmyadmin'
$cfg['Servers'][$i]['bookmarktable'] = ''; // Bookmark table
// - leave blank for no bookmark support
// DEFAULT: 'PMA_bookmark'
$cfg['Servers'][$i]['relation'] = ''; // table to describe the relation between links (see doc)
// - leave blank for no relation-links support
// DEFAULT: 'PMA_relation'
$cfg['Servers'][$i]['table_info'] = ''; // table to describe the display fields
// - leave blank for no display fields support
// DEFAULT: 'PMA_table_info'
$cfg['Servers'][$i]['table_coords'] = ''; // table to describe the tables position for the PDF schema
// - leave blank for no PDF schema support
// DEFAULT: 'PMA_table_coords'
$cfg['Servers'][$i]['pdf_pages'] = ''; // table to describe pages of relationpdf
// - leave blank if you don't want to use this
// DEFAULT: 'PMA_pdf_pages'
$cfg['Servers'][$i]['column_info'] = ''; // table to store column information
// - leave blank for no column comments/mime types
// DEFAULT: 'PMA_column_info'
$cfg['Servers'][$i]['history'] = ''; // table to store SQL history
// - leave blank for no SQL query history
// DEFAULT: 'PMA_history'
$cfg['Servers'][$i]['verbose_check'] = TRUE; // set to FALSE if you know that your PMA_* tables
// are up to date. This prevents compatibility
// checks and thereby increases performance.
$cfg['Servers'][$i]['AllowDeny']['order'] // Host authentication order, leave blank to not use
= '';
$cfg['Servers'][$i]['AllowDeny']['rules'] // Host authentication rules, leave blank for defaults
= array();


$i++;
$cfg['Servers'][$i]['host'] = '';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = FALSE;
$cfg['Servers'][$i]['controluser'] = '';
$cfg['Servers'][$i]['controlpass'] = '';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['only_db'] = '';
$cfg['Servers'][$i]['verbose'] = '';
$cfg['Servers'][$i]['pmadb'] = ''; // 'phpmyadmin' - see scripts/create_tables.sql
$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'
$cfg['Servers'][$i]['verbose_check'] = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
= '';
$cfg['Servers'][$i]['AllowDeny']['rules']
= array();

$i++;
$cfg['Servers'][$i]['host'] = '';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = FALSE;
$cfg['Servers'][$i]['controluser'] = '';
$cfg['Servers'][$i]['controlpass'] = '';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['only_db'] = '';
$cfg['Servers'][$i]['verbose'] = '';
$cfg['Servers'][$i]['pmadb'] = ''; // 'phpmyadmin' - see scripts/create_tables.sql
$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'
$cfg['Servers'][$i]['verbose_check'] = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
= '';
$cfg['Servers'][$i]['AllowDeny']['rules']
= array();

// If you have more than one server configured, you can set $cfg['ServerDefault']
// to any one of them to autoconnect to that server when phpMyAdmin is started,
// or set it to 0 to be given a list of servers without logging in
// If you have only one server configured, $cfg['ServerDefault'] *MUST* be
// set to that server.
$cfg['ServerDefault'] = 1; // Default server (0 = no default server)
$cfg['Server'] = '';
unset($cfg['Servers'][0]);


/**
* Other core phpMyAdmin settings
*/
$cfg['OBGzip'] = 'auto'; // use GZIP output buffering if possible (TRUE|FALSE|'auto')
$cfg['PersistentConnections'] = FALSE; // use persistent connections to MySQL database
$cfg['ExecTimeLimit'] = 300; // maximum execution time in seconds (0 for no limit)
$cfg['SkipLockedTables'] = FALSE; // mark used tables, make possible to show
// locked tables (since MySQL 3.23.30)
$cfg['ShowSQL'] = TRUE; // show SQL queries as run
$cfg['AllowUserDropDatabase'] = FALSE; // show a 'Drop database' link to normal users
$cfg['Confirm'] = TRUE; // confirm 'DROP TABLE' & 'DROP DATABASE'
$cfg['LoginCookieRecall'] = TRUE; // recall previous login in cookie auth. mode or not
$cfg['UseDbSearch'] = TRUE; // whether to enable the "database search" feature
// or not
$cfg['IgnoreMultiSubmitErrors'] = FALSE; // if set to true, PMA continues computing multiple-statement queries
// even if one of the queries failed
$cfg['VerboseMultiSubmit'] = TRUE; // if set to true, PMA will show the affected rows of EACH statement on
// multiple-statement queries. See the read_dump.php file for hardcoded
// defaults on how many queries a statement may contain!

// Left frame setup
$cfg['LeftFrameLight'] = TRUE; // use a select-based menu and display only the
// current tables in the left frame.
$cfg['LeftFrameTableSeparator']= '__'; // Which string will be used to generate table prefixes
// to split tables into multiple categories
$cfg['LeftFrameTableLevel'] = '1'; // How many sublevels should be displayed when splitting
// up tables by the above Separator
$cfg['ShowTooltip'] = TRUE; // display table comment as tooltip in left frame
$cfg['ShowTooltipAliasDB'] = FALSE; // if ShowToolTip is enabled, this defines that table/db comments
$cfg['ShowTooltipAliasTB'] = FALSE; // are shown (in the left menu and db_details_structure) instead of
// table/db names

$cfg['LeftDisplayLogo'] = TRUE; // display logo at top of left frame
$cfg['LeftDisplayServers'] = FALSE; // display server choice at top of left frame

// In the main frame, at startup...
$cfg['ShowStats'] = TRUE; // allow to display statistics and space usage in
// the pages about database details and table
// properties
$cfg['ShowMysqlInfo'] = FALSE; // whether to display the "MySQL runtime
$cfg['ShowMysqlVars'] = FALSE; // information", "MySQL system variables", "PHP
$cfg['ShowPhpInfo'] = FALSE; // information" and "change password" links for
$cfg['ShowChgPassword'] = FALSE; // simple users or not
$cfg['SuggestDBName'] = TRUE; // suggest a new DB name if possible (false = keep empty)

// In browse mode...
$cfg['ShowBlob'] = FALSE; // display blob field contents
$cfg['NavigationBarIconic'] = TRUE; // do not display text inside navigation bar buttons
$cfg['ShowAll'] = FALSE; // allows to display all the rows
$cfg['MaxRows'] = 30; // maximum number of rows to display
$cfg['Order'] = 'ASC'; // default for 'ORDER BY' clause (valid
// values are 'ASC', 'DESC' or 'SMART' -ie
// descending order for fields of type
// TIME, DATE, DATETIME & TIMESTAMP,
// ascending order else-)

// In edit mode...
$cfg['ProtectBinary'] = 'blob'; // disallow editing of binary fields
// valid values are:
// FALSE allow editing
// 'blob' allow editing except for BLOB fields
// 'all' disallow editing
$cfg['ShowFunctionFields'] = TRUE; // Display the function fields in edit/insert mode
$cfg['CharEditing'] = 'input';
// Which editor should be used for CHAR/VARCHAR fields:
// input - allows limiting of input length
// textarea - allows newlines in fields

// For the export features...
$cfg['ZipDump'] = TRUE; // Allow the use of zip/gzip/bzip
$cfg['GZipDump'] = TRUE; // compression for
$cfg['BZipDump'] = TRUE; // dump files

// Tabs display settings
$cfg['LightTabs'] = FALSE; // use graphically less intense menu tabs
$cfg['PropertiesIconic'] = TRUE; // Use icons instead of text for the table display of a database (TRUE|FALSE|'both')
$cfg['PropertiesNumColumns'] = 1; // How many columns should be used for table display of a database?
// (a value larger than 1 results in some information being hidden)

$cfg['DefaultTabServer'] = 'main.php';
// Possible values:
// 'main.php' = the welcome page
// (recommended for multiuser setups)
// 'server_databases.php' = list of databases
// 'server_status.php' = runtime information
// 'server_variables.php' = MySQL server variables
// 'server_privileges.php' = user management
// 'server_processlist.php' = process list
$cfg['DefaultTabDatabase'] = 'db_details_structure.php';
// Possible values:
// 'db_details_structure.php' = tables list
// 'db_details.php' = sql form
// 'db_search.php' = search query
$cfg['DefaultTabTable'] = 'tbl_properties_structure.php';
// Possible values:
// 'tbl_properties_structure.php' = fields list
// 'tbl_properties.php' = sql form
// 'tbl_select.php = select page
// 'tbl_change.php = insert row page

/**
* Export defaults
*/

$cfg['Export']['format'] = 'sql'; // sql/latex/excel/csv/xml
$cfg['Export']['compression'] = 'none'; // none/zip/gzip/bzip2

$cfg['Export']['asfile'] = FALSE;
$cfg['Export']['onserver'] = FALSE;
$cfg['Export']['onserver_overwrite'] = FALSE;
$cfg['Export']['remember_file_template'] = TRUE;

$cfg['Export']['csv_columns'] = FALSE;
$cfg['Export']['csv_null'] = 'NULL';
$cfg['Export']['csv_separator'] = ';';
$cfg['Export']['csv_enclosed'] = '"';
$cfg['Export']['csv_escaped'] = '\\';
$cfg['Export']['csv_terminated'] = 'AUTO';
$cfg['Export']['excel_columns'] = FALSE;
$cfg['Export']['excel_null'] = 'NULL';

$cfg['Export']['latex_structure'] = TRUE;
$cfg['Export']['latex_data'] = TRUE;
$cfg['Export']['latex_columns'] = TRUE;
$cfg['Export']['latex_relation'] = TRUE;
$cfg['Export']['latex_comments'] = TRUE;
$cfg['Export']['latex_mime'] = TRUE;
$cfg['Export']['latex_null'] = '\textit{NULL}';

$cfg['Export']['sql_structure'] = TRUE;
$cfg['Export']['sql_data'] = TRUE;
$cfg['Export']['sql_drop_database'] = FALSE;
$cfg['Export']['sql_drop_table'] = FALSE;
$cfg['Export']['sql_auto_increment'] = TRUE;
$cfg['Export']['sql_backquotes'] = TRUE;
$cfg['Export']['sql_relation'] = FALSE;
$cfg['Export']['sql_columns'] = FALSE;
$cfg['Export']['sql_extended'] = FALSE;
$cfg['Export']['sql_comments'] = FALSE;
$cfg['Export']['sql_mime'] = FALSE;

/**
* Link to the official MySQL documentation.
* Be sure to include no trailing slash on the path.
* See http://www.mysql.com/documentation/index.html for more information
* about MySQL manuals and their types.
*/
$cfg['MySQLManualBase'] = 'http://www.mysql.com/doc/en';

/**
* Type of MySQL documentation:
* old - old style used in phpMyAdmin 2.3.0 and sooner
* searchable - "Searchable, with user comments"
* chapters - "HTML, one page per chapter"
* big - "HTML, all on one page"
* none - do not show documentation links
*/
$cfg['MySQLManualType'] = 'searchable';


/**
* PDF options
*/
$cfg['PDFPageSizes'] = array('A3', 'A4', 'A5', 'letter', 'legal');
$cfg['PDFDefaultPageSize'] = 'A4';

...

Verwijderd

Topicstarter
Sorry, maar ik kan niet echt zeggen in welk stuk de fout zit.

Php Info werkt perfect

  • G33rt
  • Registratie: Februari 2002
  • Laatst online: 22-06-2022
$cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings
// (this user must have read-only
$cfg['Servers'][$i]['controlpass'] = ''; // access to the "mysql/user"
// and "mysql/db" tables)
waar is je controlusert? zo kan ie moeilijk de usernames die willen inloggen controleren :P

volg anders de stappen in [rml][ Howto] PHPMyAdmin[/rml] eens, dan moet het in principe werken

probeer dan ook meteen authmode http, en kijk of je een standaard inlogvenstertje krijgt :)

[ Voor 49% gewijzigd door G33rt op 10-01-2004 21:56 ]


Verwijderd

Topicstarter
Ik heb hetzelfde gedaan als in de howto stond. Maar als ik nu phpmyadmin opstart komt er dat mijn username en wachtwoord verkeerd zijn.

Ik heb nogtans een controleuser aangemaakt onder pma, pmapass

  • alt-92
  • Registratie: Maart 2000
  • Niet online

alt-92

ye olde farte

test het anders eerst eens met een config user.
Dan kun je iig kijken of het niet aan http / cookie meuk-instellingen van PHP zelf ligt waardoor het niet werkt.

ik heb een 864 GB floppydrive! - certified prutser - the social skills of a thermonuclear device


Verwijderd

Topicstarter
dit geeft ook een wit scherm. En als ik met cookie doe, zegt hij "Can't connect to sql server", terwijl die wel werkt, want lichtje ziet groen en via dos dat commando om een controle user aan te maken ging allemaal perfect

  • RAZORDUDE
  • Registratie: September 2001
  • Laatst online: 02-12-2021

RAZORDUDE

aka MARAUD3R

Ik zie dat er geen oplossing is gegeven en, heb zelf het probleem ook en ik heb me de pleuris zitten zoeken om een oplossing, maar ik heb niks gevonden op de forum over heel veel andere forums, en op google, en ik heb de howto gedaan: [rml][ Howto] PHPMyAdmin[/rml] .

versies:
Apache/2.0.53 (Win32) PHP/4.3.10 Server at localhost Port 80

Als ik een echo plaats in de index.php dan laat hij dat wel zien.

Ik zie ook geen inlogschermpje terwijl ik wel "http" als waarde heb bij "auth_type".

evt belangrijke gegevens die ik in httpd.conf heb staan:
code:
1
2
3
4
5
6
7
8
DocumentRoot "I:/projects/=sites="

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    
   Allow from all

gegevens in config.inc.php
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$cfg['PmaAbsoluteUri'] = 'http://192.168.1.101/phpmyadmin/';

$cfg['Servers'][$i]['host']          = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port']          = '';          // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket']        = '';          // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type']  = 'tcp';       // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['extension']     = 'mysql';     // The php MySQL extension to use ('mysql' or 'mysqli')
$cfg['Servers'][$i]['compress']      = FALSE;       // Use compressed protocol for the MySQL connection
                                                    // (requires PHP >= 4.3.0)
$cfg['Servers'][$i]['controluser']   = '?';          // MySQL control user settings
                                                    // (this user must have read-only
$cfg['Servers'][$i]['controlpass']   = '*******';          // access to the "mysql/user"
                                                    // and "mysql/db" tables).
                                                    // The controluser is also
                                                    // used for all relational
                                                    // features (pmadb)
$cfg['Servers'][$i]['auth_type']     = 'http';    // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user']          = '';      // MySQL user
$cfg['Servers'][$i]['password']      = '';          // MySQL password (only needed
                                                    // with 'config' auth_type)
$cfg['Servers'][$i]['only_db']       = 'test';          // If set to a db-name, only


Bij de installatie van mysql kon in alleen maar een wachtwoord invullen, en geen user, dus ik weet niet wat ik daar dan neer moet zetten.

[ www.coredamage.com ] - [ Z mod (W40k:DOW) ]


Verwijderd

Hoe heb je het op die server gezet? Via FTP en zo ja welk programma? Ik gebruikte pas geleden FileZilla om Squirrelmail over te zetten via FTP en ik kreeg ook witte pagina's (maar niet als ik een echo ofzo ergens had bijgezet aan het begin van een file). Uiteindelijk bleek dat er een aantal bestanden niet goed was overgezet (bestandsnaam bestond wel, maar met 0kB).

Ik heb ook een keer witte pagina's gehad doordat het mis ging bij de compressie van de pagina's. Ik vermoed dat phpMyAdmin ook compressie gebruikt, alhoewel het me stug lijkt dat dit het probleem is bij zo'n veelgebruikt script.

  • RAZORDUDE
  • Registratie: September 2001
  • Laatst online: 02-12-2021

RAZORDUDE

aka MARAUD3R

Ik heb gewoon een lokale server.

Je hebt het over compressie, ik heb daar volgensmij wel wat over gelezen, heeft dat iets te maken met obgzip oid?

Misschien dat ik dat uitmoet schakelen ofzo?

[ www.coredamage.com ] - [ Z mod (W40k:DOW) ]


  • consolefreak
  • Registratie: November 2002
  • Laatst online: 23:00
ik heb hier zelf een freebsd webserver. Ik probeerde PHP&Apache via de ports collection te instaleren en hierbij kwamen de verkeerde en OUDE mysql clients/headers mee. Download apache & php opnieuw volg deze procedure:

http://www.php.net/manual/en/install.unix.php

maar letop!!! als je dit moet uitvoeren:

./configure --with-mysql --with-apache=../apache_1.3.x

type dan inplaats daarvan:

./configure --with-mysql=<pad naar je mysql instalatie> --with-apache=../apache_1.3.x

dan word php met de laatste en de goede mysql headers geinstaleerd en dan werkt ie wel!!

ben hier zelf ook heel lang mee bezig geweest, maar dit was de remedie :) suc6

  • AW_Bos
  • Registratie: April 2002
  • Laatst online: 22:35

AW_Bos

Nostalgicus 🕰

Draai je dit op een Lycosserver. Ik besloot er ook eens vandaag PMA op te zetten, maar Lycos wou dat niet ... :z

"Je kan met alle ziel en zaligheid ergens aan werken, maar soms is de uitkomst een zaal vol zieligheid." - Ariën


  • RAZORDUDE
  • Registratie: September 2001
  • Laatst online: 02-12-2021

RAZORDUDE

aka MARAUD3R

consolefreak schreef op maandag 04 april 2005 @ 21:00:
ik heb hier zelf een freebsd webserver. Ik probeerde PHP&Apache via de ports collection te instaleren en hierbij kwamen de verkeerde en OUDE mysql clients/headers mee. Download apache & php opnieuw volg deze procedure:

http://www.php.net/manual/en/install.unix.php

maar letop!!! als je dit moet uitvoeren:

./configure --with-mysql --with-apache=../apache_1.3.x

type dan inplaats daarvan:

./configure --with-mysql=<pad naar je mysql instalatie> --with-apache=../apache_1.3.x

dan word php met de laatste en de goede mysql headers geinstaleerd en dan werkt ie wel!!

ben hier zelf ook heel lang mee bezig geweest, maar dit was de remedie :) suc6
Ik draai windows ;) .

Ik heb net even wat getest, en ik zie dat als ik een echo invoer na de 2e "require_once" in phpmyadmin/index.php dan werkt de echo niet meer maar na de 1e "require_once" werkt de echo nog wel.

Index.php:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

/* $Id: index.php,v 2.14 2004/10/19 17:23:09 nijel Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:

/**
 * Gets core libraries and defines some variables
 */
require_once('./libraries/grab_globals.lib.php');
require_once('./libraries/common.lib.php');

/**
 * Includes the ThemeManager if it hasn't been included yet
 */
require_once('./libraries/select_theme.lib.php');

/**
 * Saves collation_connection (coming from main.php) in a cookie
 */

[ Voor 43% gewijzigd door RAZORDUDE op 05-04-2005 00:54 ]

[ www.coredamage.com ] - [ Z mod (W40k:DOW) ]

Pagina: 1