OK, here is how the wp-config.php file now looks:
<?php
define(‘WP_MEMORY_LIMIT’, ’64M’);
/**
* The base configurations of the WordPress.
And here is how the htaccess file looks:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
php_value memory_limit 64M
# END WordPress
Is this correct? I still get a blank page…ugggg…
Thanks
Lee