new faq 2.8 about Missing parameters
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2005-03-04 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* Documentation.html, libraries/common.lib.php: new FAQ 2.8 about
|
||||||
|
Missing parameters, and when the error happens, show a link to FAQ
|
||||||
|
|
||||||
2005-03-03 Alexander M. Turek <me@derrabus.de>
|
2005-03-03 Alexander M. Turek <me@derrabus.de>
|
||||||
* libraries/grab_globals.lib.php: Bug #1153079 (Updating columns starting
|
* libraries/grab_globals.lib.php: Bug #1153079 (Updating columns starting
|
||||||
with "str").
|
with "str").
|
||||||
|
@@ -2870,6 +2870,26 @@ To create a new, empty mimetype please see libraries/transformations/template_ge
|
|||||||
directory "img" in "your_theme_name". phpMyAdmin will
|
directory "img" in "your_theme_name". phpMyAdmin will
|
||||||
use the default icons and buttons (from the system-theme "original").
|
use the default icons and buttons (from the system-theme "original").
|
||||||
</p>
|
</p>
|
||||||
|
<a name="faqmissingparameters"></a><br />
|
||||||
|
<h4>
|
||||||
|
[2.8] I get "Missing parameters" errors, what can I do?
|
||||||
|
</h4>
|
||||||
|
<p>
|
||||||
|
Here are a few points to check:
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
In <tt>config.inc.php</tt>, try to leave the
|
||||||
|
<tt>$cfg['PmaAbsoluteUri']</tt>directive empty. See also FAQ 4.7.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Maybe you have a broken PHP installation or you need to upgrade
|
||||||
|
your Zend Optimizer. See
|
||||||
|
<a href="http://bugs.php.net/bug.php?id=31134">
|
||||||
|
http://bugs.php.net/bug.php?id=31134</a>.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
<a name="faqlimitations"></a><br />
|
<a name="faqlimitations"></a><br />
|
||||||
<h3>[3. Known limitations]</h3>
|
<h3>[3. Known limitations]</h3>
|
||||||
<a name="login_bug"></a><br />
|
<a name="login_bug"></a><br />
|
||||||
|
@@ -2252,7 +2252,7 @@ if (typeof(document.getElementById) != 'undefined'
|
|||||||
|
|
||||||
foreach ($params AS $param) {
|
foreach ($params AS $param) {
|
||||||
if (!isset($GLOBALS[$param])) {
|
if (!isset($GLOBALS[$param])) {
|
||||||
$error_message .= $reported_script_name . ': Missing parameter: ' . $param . '<br />';
|
$error_message .= $reported_script_name . ': Missing parameter: ' . $param . ' <a href="./Documentation.html#faqmissingparameters" target="documentation"> (FAQ 2.8)</a><br />';
|
||||||
$found_error = TRUE;
|
$found_error = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user