Title: getsited's Replies | WordPress.org

---

# getsited

  [  ](https://wordpress.org/support/users/getsited/)

 *   [Profile](https://wordpress.org/support/users/getsited/)
 *   [Topics Started](https://wordpress.org/support/users/getsited/topics/)
 *   [Replies Created](https://wordpress.org/support/users/getsited/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/getsited/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/getsited/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/getsited/engagements/)
 *   [Favorites](https://wordpress.org/support/users/getsited/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Support - WordPress HelpDesk & Support Plugin] Attachments do not display – readfile fix](https://wordpress.org/support/topic/attachments-do-not-display-readfile-fix/)
 *  Thread Starter [getsited](https://wordpress.org/support/users/getsited/)
 * (@getsited)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/attachments-do-not-display-readfile-fix/#post-6686249)
 * When debugging this I noticed System Tools wrongly reported the Uploads Folder
   didn’t exist (wp-content is hardcoded in to the test). Fixed with this update
   to system-status.php:
 *     ```
       <tr class="alt">
           <td class="row-title">Uploads Folder</td>
           <td>
               <?php
               $upload_dir = wp_upload_dir();
               if ( !is_dir( trailingslashit( $upload_dir['basedir'] ) . 'awesome-support' ) ) {
                   if ( !is_writable( $upload_dir['basedir'] ) ) {
                       echo '<span class="wpas-alert-danger">' . __( 'The upload folder doesn\'t exist and can\'t be created', 'awesome-support' ) . '</span>';
                   } else {
                       echo '<span class="wpas-alert-success">' . __( 'The upload folder doesn\'t exist but can be created', 'awesome-support' ) . '</span>';
                   }
               } else {
                   if ( !is_writable( trailingslashit( $upload_dir['basedir'] ) . 'awesome-support' ) ) {
                       echo '<span class="wpas-alert-danger">' . __( 'The upload folder exists but isn\'t writable', 'awesome-support' ) . '</span>';
                   } else {
                       echo '<span class="wpas-alert-success">' . __( 'The upload folder exists and is writable', 'awesome-support' ) . '</span>';
                   }
               }
               ?>
           </td>
       </tr>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] Homepage cache file is generated but cannot be found.](https://wordpress.org/support/topic/homepage-cache-file-is-generated-but-cannot-be-found/)
 *  [getsited](https://wordpress.org/support/users/getsited/)
 * (@getsited)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/homepage-cache-file-is-generated-but-cannot-be-found/#post-3509652)
 * We use mod_rewrite caching but encountered a similar problem with the plugin 
   not finding the cached home page when WordPress is installed in a sub-directory.
   Try updating line 726 in wp-cache.php from this:
    $home_path = parse_url( site_url());
   to this: $home_path = parse_url( home_url() );

Viewing 2 replies - 1 through 2 (of 2 total)