new faq 2.8 about Missing parameters

This commit is contained in:
Marc Delisle
2005-03-04 13:59:12 +00:00
parent 7fbead83e4
commit b496149f14
3 changed files with 25 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$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>
* libraries/grab_globals.lib.php: Bug #1153079 (Updating columns starting
with "str").

View File

@@ -2870,6 +2870,26 @@ To create a new, empty mimetype please see libraries/transformations/template_ge
directory &quot;img&quot; in &quot;your_theme_name&quot;. phpMyAdmin will
use the default icons and buttons (from the system-theme &quot;original&quot;).
</p>
<a name="faqmissingparameters"></a><br />
<h4>
[2.8] I get &quot;Missing parameters&quot; 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 />
<h3>[3. Known limitations]</h3>
<a name="login_bug"></a><br />

View File

@@ -2252,7 +2252,7 @@ if (typeof(document.getElementById) != 'undefined'
foreach ($params AS $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;
}
}