bob211
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Installation Problem – Blank/White ScreenIt turns out that it was a server configuration issue, but I got a workaround fix from the hosting provider here:
I edited the Apache secure.conf, commented out the php module lines, and now everything works great!
Forum: Installing WordPress
In reply to: Installation Problem – Blank/White ScreenI was able to get some error logging working by creating a page with the following code:
ini_set(‘display_errors’,’1′);
ini_set(‘display_startup_errors’,’1′);
error_reporting (E_ALL);include(‘index.php’);Now, I see this message from admin.php
Warning: require_once(): open_basedir restriction in effect. File([WORDPRESS_DIR]/wp-load.php) is not within the allowed path(s): (.) in [WORDPRESS_DIR]/wp-admin/admin.php on line 31 Warning: require_once([WORDPRESS_DIR]/wp-load.php): failed to open stream: Operation not permitted in [WORDPRESS_DIR]/wp-admin/admin.php on line 31 Fatal error: require_once(): Failed opening required ‘[WORDPRESS_DIR]/wp-load.php’ (include_path=’.:/usr/share/pear:/usr/share/php’) in [WORDPRESS_DIR]/wp-admin/admin.php on line 31
Any ideas?
Forum: Installing WordPress
In reply to: Installation Problem – Blank/White ScreenOther than the php error log file and the httpd error log file,
what other server log files might have information to help troubleshoot this problem?Forum: Installing WordPress
In reply to: Installation Problem – Blank/White ScreenIf it helps, I determined so far that the PHP execution is not getting past the following line in wp-admin/admin.php:
require_once(dirname(dirname(__FILE__)) . ‘/wp-load.php’);
The wp-load.php file is getting executed successfully from the wordpress top-level index.php page, but not from wp-admin/index.php
Forum: Installing WordPress
In reply to: Installation Problem – Blank/White ScreenI was able to get the blog homepage to come up after installing wordpress on another host, then copying the database. However, all the wp-admin pages still come up blank,
and there are no errors in either the php error log or the httpd error log.What is setting DEBUG to ‘true’ supposed to do?
I also tried adding some ‘echo’ statements in the install.php file, but I got no output after the initial require_once statements.Forum: Localhost Installs
In reply to: Localhost vs. Website URLSettings – General has both WordPress URL and Site URL as “http://localhost/wordpress”
What I would like to know is where does WordPress get the theme files from that are showing up at the page with URL ../username-imac.home/~username/wordpress/ ?
As far I can tell, there is only one wordpress installation on this machine, so why would the theme be different at localhost/wordpress than at /~username/wordpress ?
Also, when I edit files from the Admin Site Editor, is wordpress writing to physical files, or storing in the database? If I log out of the Admin Site, and log back in , the changes are in the Editor, but not in the files on the machine.
Forum: Localhost Installs
In reply to: Localhost Installation – Editing Theme FilesThe files are writable. The wordpress directory itself has permissions drwxr-xr-x
I even changed the file permission for header.php to -rw-rw-rw-
The image file that I copied is not showing up at URL http://localhost/wordpress/wp-content/themes/twentyten/images/logo.png
Interestingly, the image DOES appear in my browser at http://username-imac.home/~username/wordpress/wp-content/themes/twentyten/images/logo.png
( This may relate to another post I entered regarding the website URL for web sharing on Mac OSX)
The fact is that the theme editor is showing the changes that I made, but it is not actually writing those changes to the file at wp-content/themes/twentyten/header.php