• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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