#1869 closed defect (bug) (fixed)
get_option() does not work at install time
Reported by: | johnjosephbachir | Owned by: | ryan |
---|---|---|---|
Milestone: | Priority: | highest omg bbq | |
Severity: | critical | Version: | 1.6 |
Component: | Administration | Keywords: | |
Focuses: | Cc: |
Description
installation creates a wp_user_role entry per add_role and add_cap call
after vanilla install of 3053:
SELECT COUNT( * ) FROM wp_options
WHERE option_name
= 'wp_user_roles'
67
Change History (5)
#1
@
19 years ago
- Summary changed from installation creates a wp_user_role entry per add_role and add_cap call to get_option() does not work at install time
#2
@
19 years ago
sorry about the formatting...
mysql> SELECT `option_value` FROM `wp_options` WHERE `option_name` = 'fileupload_url'; +--------------+ | option_value | +--------------+ | /wp-content | +--------------+
#3
@
19 years ago
- Owner changed from anonymous to ryan
- Priority changed from high to highest
- Severity changed from major to critical
Note: See
TracTickets for help on using
tickets.
also:
mysql> SELECT
option_value
FROMwp_options
WHEREoption_name
= 'fileupload_url';+--------------+
| option_value |
+--------------+
| /wp-content |
+--------------+