Nintendude Posted March 24, 2006 Posted March 24, 2006 Hey well the problem I'm having just happened a couple of days ago. Have had the site up and running for years and now this! Went to email a customer through admin and the following message came up Customer: Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 129 bytes) in /home/www/mywebsite/admin/includes/functions/html_output.php on line 263 Any Ideas? Is this memory somehow in the database and has to be cleared? Please any ideas would greatly help Thanks in Advance Please help so I can finish this already!!
Guest Posted March 24, 2006 Posted March 24, 2006 Try having a spring clean in your database. Im betting all tables could do with an optimize, your user_tracking table will be an absolute monster and need stripping down to minimums too. have a look int he tables, you'll be surprised how much junk is in there! Clearing it will make your site perform better in all aspects.
Nintendude Posted March 29, 2006 Author Posted March 29, 2006 Try having a spring clean in your database. Im betting all tables could do with an optimize, your user_tracking table will be an absolute monster and need stripping down to minimums too. have a look int he tables, you'll be surprised how much junk is in there! Clearing it will make your site perform better in all aspects. That didn't seem to work :( What part of the file is messing up? Below is line 263 and the next bit any ideas? // Output a form textarea field function tep_draw_textarea_field($name, $wrap, $width, $height, $text = '', $params = '', $reinsert_value = true) { $field = '<textarea name="' . $name . '" wrap="' . $wrap . '" cols="' . $width . '" rows="' . $height . '"'; if ($params) $field .= ' ' . $params; $field .= '>'; if ( ($GLOBALS[$name]) && ($reinsert_value) ) { $field .= $GLOBALS[$name]; } elseif ($text != '') { $field .= $text; } $field .= '</textarea>'; return $field; } Please help so I can finish this already!!
Guest Posted March 29, 2006 Posted March 29, 2006 Try Google the error message, it will give you a place to start.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.