• 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!
  • 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.

>> Plesk dont allow import via wordpress ??

Laurent_nancy

New Pleskian
Good morning
1. I install wordpress 3.4.2 without problem
2. I install a theme without problem
3. I try to import a file xml via 'import' wordpress file :
page where define : Import author: admin (admin) and dowload attachments checked
3.1 press download button and error appear :
ERROR
"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.

More information about this error may be available in the server error log."

I open error_log and :
log
"[Sun Nov 18 11:11:01 2012] [warn] [client 92.141.154.226] (110)Connection timed out: mod_fcgid: ap_pass_brigade failed in handle_request_ipc function, referer: http://www.mywordpress.com/wp-admin/admin.php?import=wordpress&step=1&_wpnonce=9682da688d"

I count and error appear at 45 sec so I configure php.ini in 600 sec execution time
and configure Memory_limit to 64mo

I really don't understand the error, have you got an idea ??

Thank you
 
Try to increase the value of FcgidMaxProcessesPerClass in /etc/httpd/conf.d/fcgid.conf Then httpdmng --reconfigure-all and restart Apache.
 
1. I modify fcgid.conf 8 to 32
2. Restart Apache
stil got internal error at 45 secondes

I really don't understand the error, have you got an idea ??

Thank you
 
I find a solution and happy to :
in fcgid the line to change is "FcgideTimeout 40" to 90 !!!

CODE :
# This is the Apache server configuration file for providing FastCGI support
# via mod_fcgid
#
# Documentation is available at http://fastcgi.coremail.cn/doc.htm

LoadModule fcgid_module modules/mod_fcgid.so

<IfModule mod_fcgid.c>

<IfModule !mod_fastcgi.c>
AddHandler fcgid-script fcg fcgi fpl
</IfModule>

FcgidIPCDir /var/run/mod_fcgid/sock
FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm

FcgidIdleTimeout 90
FcgidProcessLifeTime 30
FcgidMaxProcesses 20
FcgidMaxProcessesPerClass 8
FcgidMinProcessesPerClass 0
FcgidConnectTimeout 30
FcgidIOTimeout 360
FcgidInitialEnv RAILS_ENV production
FcgidIdleScanInterval 10

</IfModule>
 
Back
Top