Quote Originally Posted by hira View Post
I succeeded in working of feed!
I insert the following code just after wp();.

WOZ v1.5 over: includes/init_includes/init_woz.php
Other : includes/extra_configures/wordpress-config.php

Code:
  if ($_GET['main_page'] == FILENAME_WORDPRESS && is_feed()) {
    gzip_compression();
    require_once(ABSPATH . WPINC . '/template-loader.php');
    exit();
  }
Please try it.
And I am glad when you feed back.

-- Postscript --
When it is an old version, FILENAME_WORDPRESS may not be defined.
In that case, please add the following.
Code:
define('FILENAME_WORDPRESS', 'wordpress');
Because the trackback did not work like feed normally, I changed it on the following code.
Code:
  if ($_GET['main_page'] == FILENAME_WORDPRESS && ( is_feed() || is_trackback() )) {
    gzip_compression();
    require_once(ABSPATH . WPINC . '/template-loader.php');
    exit();
  }