Opened 13 years ago
Closed 13 years ago
#19651 closed defect (bug) (fixed)
Fatal error for new installs after r19602
Reported by: | greuben | Owned by: | |
---|---|---|---|
Milestone: | 3.4 | Priority: | normal |
Severity: | critical | Version: | 3.3 |
Component: | General | Keywords: | has-patch |
Focuses: | Cc: |
Description
PHP Warning: require(/Library/WebServer/Documents/WPINC/option.php): failed to open stream: No such file or directory in /Library/WebServer/Documents/wp-includes/functions.php on line 8
Attachments (2)
Change History (9)
#3
@
13 years ago
There are probably still some plugins that load wp-config.php instead of wp-load.php. Perhaps define WPINC in the else condition in wp-load.php and leave the definition in wp-settings.php?
#4
@
13 years ago
I think we might need to go to dirname() to be fully compatible. Otherwise there's little point in including option.php from functions.php if it doesn't work out of the box in the current setup.
#6
@
13 years ago
- Cc emil@… added
This is what I got upon wp-config.php removal:
Warning: require(/WPINC/option.php) [function.require]: failed to open stream: No such file or directory in /wp-includes/functions.php on line 8
and
Fatal error: require() [function.require]: Failed opening required '/WPINC/option.php' (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear') in /wp-includes/functions.php on line 8
Not sure if this is related or if it will help you guys. Mine was purposely removed and stumbled upon this ticket by an accident.
Once I added on line 49
define( 'WPINC', 'wp-includes' );
Voila, all works great. Thanks Nacin and greuben for reporting!
Emil
Note: See
TracTickets for help on using
tickets.
Confirmed fatal error in current trunk when installing from scratch.