Changeset 3243
- Timestamp:
- 08/31/10 21:09:07 (18 months ago)
- File:
-
- 1 edited
-
trunk/gui/tools/pma/Documentation.html (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gui/tools/pma/Documentation.html
r3214 r3243 11 11 <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> 12 12 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 13 <title>phpMyAdmin 3.3. 5.1- Documentation</title>13 <title>phpMyAdmin 3.3.6 - Documentation</title> 14 14 <link rel="stylesheet" type="text/css" href="docs.css" /> 15 15 </head> … … 19 19 <h1> 20 20 <a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a> 21 3.3. 5.121 3.3.6 22 22 Documentation 23 23 </h1> … … 370 370 371 371 <p> If you have upgraded your MySQL server from a version previous to 4.1.2 to 372 version 4.1.2or newer and if you use the pmadb/linked table infrastructure,372 version 5.x or newer and if you use the pmadb/linked table infrastructure, 373 373 you should run the SQL script found in 374 374 <tt>scripts/upgrade_tables_mysql_4_1_2+.sql</tt>.</p> … … 381 381 them to play around with others.<br /> 382 382 Nevertheless be aware that MS Internet Explorer seems to be really buggy 383 about cookies, at least till version 6, and PHP 4.1.1 is also a bit buggy 384 in this area!<br /> 383 about cookies, at least till version 6.<br /> 385 384 Even in a <b>single-user environment</b>, you might prefer to use 386 385 <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie mode so … … 836 835 <pre>$cfg['Servers'][$i]['hide_db'] = '^a';</pre> 837 836 and to hide both "db1" and "db2" use <br /> 838 <pre>$cfg['Servers'][$i]['hide_db'] = ' (db1|db2)';</pre>837 <pre>$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';</pre> 839 838 More information on regular expressions can be found in the 840 839 <a href="http://php.net/manual/en/reference.pcre.pattern.syntax.php"> … … 2574 2573 2575 2574 <h4 id="faq1_1"> 2576 <a href="#faq1_1">1.1 I'm running PHP 4+ and my server is crashing each time a specific2575 <a href="#faq1_1">1.1 My server is crashing each time a specific 2577 2576 action is required or phpMyAdmin sends a blank page or a page full of 2578 2577 cryptic characters to my browser, what can I do?</a></h4> 2579 2578 2580 <p> There are some known PHP bugs with output buffering and compression.<br /> 2581 Try to set the <a href="#cfg_OBGzip" class="configrule">$cfg['OBGzip']</a> 2579 <p> Try to set the <a href="#cfg_OBGzip" class="configrule">$cfg['OBGzip']</a> 2582 2580 directive to <tt>FALSE</tt> in your <i>config.inc.php</i> file and the 2583 2581 <tt>zlib.output_compression</tt> directive to <tt>Off</tt> in your php 2584 configuration file.<br /> 2585 Furthermore, we know about such problems connected to the release 2586 candidates of PHP 4.2.0 (tested with PHP 4.2.0 RC1 to RC4) together with 2587 MS Internet Explorer. Please upgrade to the release version PHP 4.2.0.</p> 2582 configuration file.<br /></p> 2588 2583 2589 2584 <h4 id="faq1_2"> … … 2598 2593 2599 2594 <h4 id="faq1_3"> 2600 <a href="#faq1_3">1.3 I'm running phpMyAdmin with "cookie" authentication 2601 mode under PHP 4.2.0 or 4.2.1 loaded as an Apache 2 module but can't enter the 2602 script: I'm always displayed the login screen.</a></h4> 2603 2604 <p> This is a known PHP bug (see this 2605 <a href="http://bugs.php.net/bug.php?id=16626">bug report</a>) from the 2606 official PHP bug database. It means there is and won't be any phpMyAdmin 2607 fix against it because there is no way to code a fix.</p> 2595 <a href="#faq1_3">1.3 (withdrawn).</a></h4> 2608 2596 2609 2597 <h4 id="faq1_4"> … … 2648 2636 <p> These features are based on the <tt>gzencode()</tt> and <tt>bzcompress()</tt> 2649 2637 PHP functions to be more independent of the platform (Unix/Windows, Safe Mode 2650 or not, and so on). So, you must have PHP4 >= 4.0.4 and Zlib/Bzip2 2651 support (<tt>--with-zlib</tt> and <tt>--with-bz2</tt>).<br /> 2652 We faced PHP crashes when trying to download a dump with MS Internet 2653 Explorer when phpMyAdmin is run with a release candidate of PHP 4.2.0. In 2654 this case you should switch to the release version of PHP 4.2.0.</p> 2638 or not, and so on). So, you must have Zlib/Bzip2 2639 support (<tt>--with-zlib</tt> and <tt>--with-bz2</tt>).<br /></p> 2655 2640 2656 2641 <h4 id="faq1_8"> … … 2821 2806 2822 2807 <h4 id="faq1_18"> 2823 <a href="#faq1_18">1.18 I'm running MySQL <= 4.0.1 having 2824 <tt>lower_case_table_names</tt> set to 1. If I create a new table with a 2825 capital letter in its name it is changed to lowercase as it should. But 2826 if I try to DROP this table MySQL is unable to find the corresponding 2827 file.</a></h4> 2828 2829 <p> This is a bug of MySQL <= 4.0.1. Please upgrade to at least 2830 MySQL 4.0.2 or turn off your <tt>lower_case_table_names</tt> 2831 directive.</p> 2808 <a href="#faq1_18">1.18 (withdrawn). 2832 2809 2833 2810 <h4 id="faq1_19"> … … 2885 2862 2886 2863 <h4 id="faq1_24"> 2887 <a href="#faq1_24">1.24 Some characters are being truncated in my queries, or I 2888 get characters randomly added. I am running PHP 4.2.3.</a></h4> 2889 2890 <p> This is a <a href="http://bugs.php.net/bug.php?id=19404">PHP 4.2.3 bug</a>. 2891 </p> 2864 <a href="#faq1_24">1.24 (withdrawn).</a></h4> 2892 2865 2893 2866 <h4 id="faq1_25"> … … 3703 3676 <p> 3704 3677 MS Internet Explorer seems to be really buggy about cookies, at least till 3705 version 6. And thanks to Andrew Zivolup we've traced also a PHP 4.1.1 bug 3706 in this area! 3707 <br /> 3708 Then, if you're running PHP 4.1.1, try to upgrade or downgrade... it may 3709 work! 3678 version 6. 3710 3679 </p> 3711 3680 … … 4223 4192 4224 4193 <h4 id="faq6_20"> 4225 <a href="#faq6_20">6.20 I n MySQL 4, Isee a lot of databases which are not mine, and cannot4194 <a href="#faq6_20">6.20 I see a lot of databases which are not mine, and cannot 4226 4195 access them. 4227 4196 </a></h4> 4228 4197 4229 <p> Upgrading to MySQL 4 usually gives users those global privileges: CREATE4198 <p> You have one of these global privileges: CREATE 4230 4199 TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges also 4231 4200 enable users to see all the database names.
Note: See TracChangeset
for help on using the changeset viewer.
