I am trying integrate my wordpress into my website.

Documentation http://codex.wordpress.org/Integrating_WordPress_with_Your_Website

This is a link to my page.
http://richardtamm.com/photoprowess

the bottom of the page has the feed section.
1. Wordpress feed not showing due to error.
2. Twitter Feed not working anymore due to above added code.

snips of code for entries into my page

<?php
include 'home/richardtamm.com/public_html/spxblog/wp-blog-header.php' ;
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="EN" lang="EN" dir="ltr">
<head profile="http://gmpg.org/xfn/11">
    <div class="fl_right">
      <div id="tabcontainer" class="border">
        <ul id="tabnav">
          <li><a href="#tabs-1">From The Blog</a></li>
          <li><a href="#tabs-2">Latest Tweets</a></li>
          <li class="last"><a href="#tabs-3">Interesting Links</a></li>
        </ul>
		<div id="tabs-1" class="tabcontainer">
		<?php
		$posts = get_posts('numberposts=10&order=ASC&orderby=post_title');
		foreach ($posts as $post) : setup_postdata( $post ); ?>
		<?php the_date(); echo "<br />"; ?>
		<?php the_title(); ?>    
<?php the_excerpt(); ?> <?php endforeach; ?> </div>
<!-- ########### --> <div id="tabs-2" class="tabcontainer"> <ul class="twitterfeed"> <a class="twitter-timeline" href="https://twitter.com/rltamm" data-widget-id="435882309061865472">Tweets by @rltamm</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> </ul> </div> <!-- ########### --> <div id="tabs-3" class="tabcontainer"> <ul> <li><a href="#">Lorem ipsum dolor sit</a></li> <li><a href="#">Amet consectetur</a></li> <li><a href="#">Praesent vel sem id</a></li> <li><a href="#">Curabitur hendrerit est</a></li> <li><a href="#">Aliquam eget erat nec sapien</a></li> <li><a href="#">Cras id augue nunc</a></li> <li><a href="#">In nec justo non</a></li> <li><a href="#">Vivamus mollis enim ut</a></li> <li class="last"><a href="#">Sed a nulla urna</a></li> </ul> </div> </div> <h2>Keep Up To Date</h2> <ul class="socialize"> <li><span>Facebook:</span> <a href="http://facebook.com/rltamm" target="_blank">www.facebook.com/rltamm</a></li> <li class="last"><span>Twitter:</span> <a href="http://twitter.com/rltamm" target="_blank">www.twitter.com/rltamm</a></li> </ul> </div> </div> <div id="backtotop"><a href="#top" class="topOfPage">To The Top</a></div> </div> <!-- ####################################################################################################### --> <div class="wrapper"> <div id="copyright" class="clear"> <p class="fl_left">Copyright &copy; 2011 - 2014 All Rights Reserved - <a href="#">Richard Tamm</a></p> <p class="fl_right">Template by <a href="http://www.os-templates.com/" title="Free Website Templates">OS Templates</a></p> </div> </div> </body> </html>

    At the moment the script doesn't seem to be on richardtamm.com.

    You should have access to the HTTPD/server logs. What do they say?

    The next thing to do would be something like this at the top of the script:

    error_reporting(E_ALL);
    ini_set(DISPLAY_ERRORS,1);
    
      Write a Reply...