Site Errors

Status
Not open for further replies.

takuhii

New Member
Messages
344
Reaction score
0
Points
0
Being a total novice, I'm just looking for piece of mind here, my site is showing PHP errors, can anyone reassure me this is normal becuase of the site move??

Error is:

Warning: require(/home/takuhii/public_html/wp-content/advanced-cache.php) function.require: failed to open stream: No such file or directory in /home/takuhii/public_html/wp-settings.php on line 84

Fatal error: require() function.require: Failed opening required '/home/takuhii/public_html/wp-content/advanced-cache.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/takuhii/public_html/wp-settings.php on line 84

my site is http://takuhii.x10hosting.com.

Thanks, and Corey... you're doing a fine job!!
 
Last edited:

eNoyx

Member
Messages
186
Reaction score
0
Points
16
According to the News & Announcements forum, the free server move is completed.

The PHP error *I think* says that 'advanced-cache.php' is missing. Check if that file is there. If not, that's the error. Try re-uploading it. Seems that some data has been lost because of the move.

Bye ^^
 

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
Are you still receiving this error? We have made many changes and fixes since two days ago.

-Corey
 

takuhii

New Member
Messages
344
Reaction score
0
Points
0
I've had to disable this plugin for now... It doesn't seem to like the new PHP, possibly becuase some of the terms in it have been deprecated...

I've noticed that the ads we're supposed to display (text ones) don't show up at the moment...
 

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
Can you show me a page where you have the ads on that don't show up so I can see what is up?

-Corey
 

takuhii

New Member
Messages
344
Reaction score
0
Points
0
I've put the ads into my footer.php as I am using wordpress, if you go to my homepage http://takuhii.x10hosting.com/ you'll see... there is a | symbol at the very bottom of the page that should be followed by the ads, I am using this code:
PHP:
<?php include('http://staff.x10hosting.com/adCode.php?ad=advanced'); ?>

to display the ads, but it seems to be ignoring it, it is also ignoring the rest of my footer after the | symbol

my footer code is below
PHP:
  <div id="footer">
  <!--recent comments start -->
  <div class="footer-recent-posts">
    <h4>Recent Posts</h4>
      <?php query_posts('showposts=5'); ?>
    <ul>
    <?php while (have_posts()) : the_post(); ?>
    <li>
    <strong><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></strong><br />
    <small><?php the_time('m-d-Y') ?></small>
    </li>
    <?php endwhile;?>
    </ul>
  </div>
  <!--recent comments start -->

  <!--recent comments start -->
  <div class="footer-recent-comments">
    <?php if (function_exists('src_simple_recent_comments')) { src_simple_recent_comments(5, 60, '<h4>Recent Comments</h4>', ''); } ?>
  </div>
  <!--recent comments end -->
  
    <!--about text start -->
    <div class="footer-about">
        <?php include (TEMPLATEPATH . '/about_text.txt'); /* Open about_text.txt in the theme folder to edit this text */?>    
    </div>
    <!--about text end -->
    
  <hr class="clear" />
  </div><!--/footer -->
</div><!--/page -->

<!--credits start -->
<div id="credits">
<div class="alignleft"><a href="http://www.ndesign-studio.com/stock-icons/">Icons</a> by <a href="http://www.ndesign-studio.com">N.Design Studio</a> | <?php include('http://staff.x10hosting.com/adCode.php?ad=advanced'); ?></div> 
<div class="alignright"><a href="<?php bloginfo('rss2_url'); ?>" class="rss">Entries RSS</a> <a href="<?php bloginfo('comments_rss2_url'); ?>" class="rss">Comments RSS</a> <span class="loginout"><?php wp_loginout(); ?></span></div>
</div>
<a href="http://risejugger.org/experienced.php?date=18"></a>
<!--credits end -->
<?php wp_footer(); ?>
</body>
</html>
 

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
I believe the problem is trying to include it like that. We have put many more security restrictions in affect on the servers.

If you go to your account panel at http://x10hosting.com/account you should be able to get the ad code that works for your package there.
 
Status
Not open for further replies.
Top