• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

i found solution for frontpage and 8.1

attempt to invoke directory as script, in frontpage module

Solution for the
"attempt to invoke directory as script: /usr/local/frontpage/version5.0\xf4W\x83\xbf_\xdf\xc2\xb7\x10X\x83\xbf\xe6\x11#\xb7\x022523"
errors in the log file

This is caused by a flaw in the patch file posted earlier, causing a variable to be defined using a pair of other uninitialized variables... The part of the patch with the problem is listed below:

- ap_table_set(r->notes,"FPexecfilename", ap_pstrcat(r->pool, FPSTUB, NULL));
- r->filename = ap_pstrcat(r->pool, r->filename, szCgi, NULL);
+ execFilename = apr_pstrcat(r->pool, FP, szDir, szBuf, szBase, NULL);
+ apr_table_set(r->notes,"FPexecfilename", execFilename);

This is at about line 840 in mod_frontpage.c after the patch is applied... You need to change the line:

execFilename = apr_pstrcat(r->pool, FP, szDir, szBuf, szBase, NULL);
into
execFilename = apr_pstrcat(r->pool, FPSTUB, NULL);


I'm still unable to use the FP modules, it never seems to take my username/password for a frontpage admin login, but this solved the visible 403 error that it was kicking out... I'll try and poke more at this later to see if I'm missing anything else.

-Kenneth Sanislo
 
This has helped me to get to the point where it is accepting my username and password, but now I am getting a file not found on the fpadmin.exe file. It's like there are supposed to be copies of those files, or symlinks, but they aren't being created.
 
It Works! (Plesk 8.2.1 and Debian 4.0)

Well, after tweaking the latest centOS patches by crash (the same as how it was done in the link posted by CiViX just above) I've applied them to a copy of Plesk 8.2.1 on Debian 4.0, everything is looking good so far.

Thanks for the effort everyone it really helped me out,

-Kenneth Sanislo
 
Well, it doesn't work with Plesk 8.3 on CentOS 5 or 5.1. Just comes back with can't find shtml.exe in the logs for the particular domain.

Probably going to lose some customers over this. And to those saying Frontpage is ****, Frontpage is old... that doesn't really matter to customers. They still use Windows 95, Windows 98. You try to tell them they need to upgrade and they simply cancel and find a provider that can help them.
 
Are you saying that PLESK 8.3 breaks Frontpage again? I'm not sure why this would happen as I thought the mod_frontpage package only was dependant on apache, not anything in PLESK?

Can anyone confirm if the Frontpage-fix is broken by PLESK 8.3?
 
I tried installing it on a virgin Plesk 8.3 install/CentOS 5 and a CentOS 5.1 box. It *APPEARS* to work but the actual extensions don't work at all.
 
I'm using Plesk 8.6/Centos 5.2 and can't get it to work.

Apache 2.2.3 loads the module but using the extensions,
frontpage failed with a 404 (file not found) error.

Are there any working solutions right now?
 
Back
Top