Opened 17 years ago
Closed 13 years ago
#9736 closed enhancement (worksforme)
Memory allocation failed on category.php
| Reported by: | matsubobo | Owned by: | |
|---|---|---|---|
| Priority: | lowest | Milestone: | |
| Component: | Taxonomy | Version: | 2.7.1 |
| Severity: | minor | Keywords: | needs-patch |
| Cc: | Focuses: | performance |
Description
When I opened "/wp-admin/categories.php" I got following error message.
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 3877 bytes) in /path_to_wordpress/wp-includes/category.php on line 369
I made over 70,000 categories manipulating MySQL table directory.
Attachments (1)
Change History (8)
#1
@
17 years ago
- Component Administration → Optimization
- Priority low → lowest
- Severity major → normal
#5
@
16 years ago
What if we had something like
if num_rows * [rough estimate of memory needed per category] > memory_limit then
load only so much
else
go right ahead
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
the only way to fix this is to rework the walker classes, in such a way that they only load what is needed (as is done in Yahoo Mail, for instance).