• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

PhpPGAdmin Unable to export using IE??

T

Traged1

Guest
I was trying to use the export function in PhpPGAdmin to dump our PostGreSQL database, using IE I get the following error:

"Internet Explorer cannot download dbexport.php from domain.com"

Does anyone know what I can do to fix this?
 
First make sure that your security settings in IE are set to allow downloading (or try temporarily lowering security to low), not sure this is your exact problem, but I've seen situations recently where newer IE versions don't allow a lot of things (to prevent malicious stuff).
 
I can't seem to get this working for IE no matter what I do to my security settings, I have switched to FireFox and it works perfectly.
 
Ah yes, yet another reason to dump IE! MS is really cutting their own necks. It's one thing to tighten their security, totally another to make it difficult/impossible for people to undo/relax security to get work done.

And yet more reason I refuse to run WinXP on any of my work machines. (I only pick on XP since prior versions of IE from Win2K/98 don't have these issues)

Glad to hear you got it working with Firefox
 
I've also had the same issue, however, changing the IE setting did not help.

I resolved the issue by changing the /usr/local/psa/admin/htdocs/domains/databases/myPgAdmin/dbexport.php to include the following header lines before the existing header lines in the download and download with gzip sections.

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false);

Hope this helps ;)
Martin

Provider-one.net Limited
http://www.provider-one.net
 
Back
Top