bug #3964 Import using https does not work
This commit is contained in:
parent
1ac9560aa7
commit
063a2d9937
@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #3921 Call to undefined function PMA_isSuperuser() if default server is
|
||||
not set
|
||||
- bug #3971 Ctrl/shift + click opens links in same window
|
||||
- bug #3964 Import using https does not work
|
||||
|
||||
4.0.3.0 (2013-06-05)
|
||||
- bug #3941 Recent tables list always empty
|
||||
|
||||
@ -796,7 +796,9 @@ has to be enabled in your PHP.
|
||||
If using APC, you must set ``apc.rfc1867`` to ``on`` in your :file:`php.ini`.
|
||||
|
||||
If using PHP 5.4.0 or higher, you must set
|
||||
``session.upload_progress.enabled`` to ``1`` in your :file:`php.ini`.
|
||||
``session.upload_progress.enabled`` to ``1`` in your :file:`php.ini`. However,
|
||||
starting from phpMyAdmin version 4.0.4, session-based upload progress has
|
||||
been temporarily deactivated due to its problematic behavior.
|
||||
|
||||
.. seealso:: :rfc:`1867`
|
||||
|
||||
|
||||
@ -31,7 +31,8 @@ $upload_id = uniqid("");
|
||||
* and own file with functions in upload_#KEY#.php
|
||||
*/
|
||||
$plugins = array(
|
||||
"session",
|
||||
// PHP 5.4 session-based upload progress is problematic, see bug 3964
|
||||
//"session",
|
||||
"progress",
|
||||
"apc",
|
||||
"noplugin"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user