I have been considering and putting off changing my site to a wordpress blog so that when I post a new thread it appears on the front page of my website, is this possible to be without a complete rewrite? I love html but I am told php is the only way to use this plugin to post the title and excerpt on home page of website, I am also concerned about the large amount of backlinks I have built to my html pages and I do not know how to change or redirect them? Any ideas?
Try wordpress. you can build your site easily, then you can add your backlinks manually in the template you use. hope that helps
ALL web sites MUST use HTML and there are NO exceptions. The reason PHP was recommended is because you want to dynamically alter some things which HTML cannot do by itself but HTML is always involved.
You can use Redirection wordpress plugin to redirect your all html pages to your wordpress website. http://wordpress.org/extend/plugins/redirection/
If all you need is to be able use a plugin then surely all that's required is to save the page with a .php extension and then place necessary code in your page's html. Or did I miss something?
What I suggest you is to use XMLHttpRequest on your homepage, and to configure it to automatically send a request to a PHP file when the page is loaded (window.onload javascript function) The PHP file could get the contents of the thread (file_get_contents function), extract what you need (maybe with some regex) and echo the result. The XMLHttpRequest will then print the result where you want on your homepage.
It's not so difficult... but OK, more simple: Just create a php file and name it as latest_thread.php: <?php header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Pragma: no-cache"); ?> This is the title <br /> <br /> This is the content: bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla, bla bla bla Code (markup): Upload it to your server in the same directory as your index.html file. Now add this code to your index.html : <div id="latestThread"></div> <script type="text/javascript"> var xhr = null; if (window.XMLHttpRequest) { xhr = new XMLHttpRequest(); } else if (window.ActiveXObject) { try { xhr = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { xhr = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e1) { xhr = null; } } } else { alert("XMLHttpRequest not supported!") } function getThread() { xhr.open("GET","latest_thread.php?rand="+ Math.floor(Math.random()*99999) ,true); xhr.onreadystatechange = function() { if (xhr.readyState == 4) { var result = xhr.responseText; if (document.getElementById('latestThread')) { document.getElementById('latestThread').innerHTML = result; } } }; xhr.send(null); } window.onload = function() { getThread(); } </script> Code (markup): Now every time you post a new thread, just edit the latest_thread.php file.
Actually wordpress is a great choice for blogging (considering that original WP was created only for blogging purpose), there are load of video tutorials on how to convert HTML/CSS template to Wordpress so I think it won't be problematic for you. If you still require some help, I can provide you some video tutorials.
Stop your condisending mutterings, I do know the difference I was just asking as the plugin I want to use ONLY works on php (WORDPRESS) sites NOT HTML.
I advise installing wordpress its very sophisticated and would improve the overall functionality of your site
You can start migrating to wordpress now. The sooner you migrate, the sooner your followers will know your new pages. Migrating you pages to PHP will really sacrifice your previous readers. But then, you can still make your previous html pages available while already using PHP with WordPress as you Content Management System. Just put link on your html pages pointing to your new wordpress pages so your readers know.