WordPress и VDS ошибка — Internal Server Error
-
Добрый день, переехал на VDS в связи с большой нагрузкой на сервер при использовании WordPress + Buddypresss
Стала частенько появляться ошибкаInternal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator, zetrider@bk.ru and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
в логах пишет следующее:
[Fri Mar 11 21:33:02 2011] [warn] mod_fcgid: process 19040 graceful kill fail,
sending SIGKILL
[Fri Mar 11 21:33:02 2011] [warn] mod_fcgid: process 19041 graceful kill fail,
sending SIGKILLНаписал хостеру получил ответ:
Если у Вас стоит плагин YARPP, обновите его до самой свежей версии.
но такого плагина у меня нет, для вывода похожих постов использую код:
<?php $tags = wp_get_post_tags($post->ID); if($tags): $tag_ids = array(); foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id; $args=array( 'tag__in' => $tag_ids, 'post__not_in' => array($post->ID), 'showposts'=> 5, 'caller_get_posts'=> 1 ); $rp_query = new wp_query($args); endif; if($rp_query): if($rp_query->have_posts()) ?> <?php while ($rp_query->have_posts()): $rp_query->the_post(); ?> <li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> <?php else: ?> <?php endif; wp_reset_query(); ?>
Данные по VDS:
частота процессора 500 MHz
оперативная память 256 МBКак думаете в чем может быть проблема?
- Тема «WordPress и VDS ошибка — Internal Server Error» закрыта для новых ответов.