Try re-uploading the wp files (you used ftp right?)
Hi,
Yes I did, I even downloaded it again (to another folder on my comp), reuploaded the files (to another folder on the web server) and it still doesn’t work (aka, exactly the same)
And yes I use ftp
Can you view an error log through your php admin dashboard or plesk or whatever?
Could be a memory thing:
You could also add this line to your wp-config.php in your theme:
define('WP_MEMORY_LIMIT', '64M'); without the
Do that right after the DB Collate statement.
Hi,
I don’t have any btw are you dutch? if so, you can mail me on void@live.nl.
Either way, I tried reinstalling it, even chmodding the blogs folder, but nothing seems to work. However, everything on /wp-admin does work properly! I can manage the blog, I just can’t visit it..
Yeah I am but I am also out of idea’s so we better stay here for the moment and wait for (real) guru’s.
Can you give an url to the site?
Check if there is a file .htaccess on your server and rename or temporary delete it.
I already deleted the .htaccess file. The address is this one
Regards
One thing left (for me):
Where is your wp-config.php placed and can you show the contents of it?
I stumbled upon this: http://www.shinephp.com/silence-is-golden/
The hard code of the index.php file in the blogs root is exactly what’s mentioned on the server (after a clean install) but I can’t seem to figure out how to get it to work?
<?php
// Silence is golden.
?>
Any ideas?
I found: http://wordpress.org/support/topic/326954?replies=7
but that does me no good, everything just stays white. I think I’m gonna give this up 🙁
Even the permalinks to the created pages give an empty page (and yes I’ve added text to them..)
The index.php in the blogs root (for you the directory blog) should contain:
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
?>
Henkholland,
That did the trick, everything works! Where is this documented???
Good to hear Jeroen. And no trick. That file should be there after a normal upload. Apparently you overwrote it with another index.php during the process. The “silence is golden” index.php is a standard one (against external peeking into directories) that belongs in every other directory but NOT in the main directory.
Ok, now start enjoying WP!
Thanks for explaining and your help!
Regards
Just thought I would point out that the amendment suggested by henkholland relates to the wp-settings.php file, not wp-config.php
You will find this line:
if ( !defined('WP_MEMORY_LIMIT') )
define('WP_MEMORY_LIMIT', '32M');
change it to:
if ( !defined('WP_MEMORY_LIMIT') )
define('WP_MEMORY_LIMIT', '64M');
This fixed it for me.