• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • 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.

>> 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