Aldun
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing language of the standard Blog textsThank you.
Forum: Plugins
In reply to: [Plugin: CForm Builder] Can't receive email through contactformStill stuck.
Forum: Fixing WordPress
In reply to: How to read XML?Addition:
What I’m currently trying is through the following code
<script>function loadDoc(){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (xhttp.readyState == 4 && xhttp.status == 200) { myFunction(xhttp); } }; xhttp.open("GET", "http://www.boardgamegeek.com/xmlapi/collection/Zuiderspel?own=1&version=1", true); } xhttp.send(); function myFunction(xml){ console.log("test"); } </script>With in the myFunction obviously the right code to place it in divs. However, this gives me ‘Unexpected token ILLEGAL’ for a reason I can’t find out. I’ve tried changing the xhttp.open to the local xml file on my server, but with the same results.
Forum: Themes and Templates
In reply to: Unable to add any content to new page?Nevermind, it appeared to be some CSS issue.. lol
Forum: Themes and Templates
In reply to: Unable to add any content to new page?Up, I’m really stuck on this!
Forum: Fixing WordPress
In reply to: Unable to move / migrate siteWow. After days I finally found the error. Apparantly WordPress automatically adds an UPPERCASE to the tabelprefix, which caused the prefix to have an uppercase letter in the wp-config.php (but not in the database).
Thanks to Hiilo from http://stackoverflow.com/questions/9827164/wordpress-keeps-redirecting-to-install-php-after-migration I found this error.
Thanks for helping, though!