Hi Guys,
I am having a weird issue and have hunted round but as yet unable to find a solution. I am running a fresh install of wordpress 2.9.2 in a sub folder on my website i.e.
mysite.com/blog
Now - I would like to pull some latest posts into my website homepage which is outside of the WP install.
After hunting round I found this could be achieved by simply requiring wp-load.php (giving me access to wordpresses functions etc)
However upon doing this my sites home screen just gives a blank white screen (upon checking source code there is NO html at all)
I then tried requiring_once - same issue.
I then set - 'define('WP_USE_THEMES', false);' before calling require_once('blog/wp-load.php)
same issue.
I have also tried requiring the header files, and wp-config - but whenever i try and require ANY WP file i get the same blank screen.
Just to test i created a test.php file within my blog directory and required that and it worked fine.
So it just seems to be whenever i require a WP file.
I have stepped through the code and the issue seems to be within the wp-settings file
It tries to require a file called l10n.php and then we get the blank screen??
Any ideas??