Title: having issue with wordpress
Last modified: June 2, 2022

---

# having issue with wordpress

 *  [viji421](https://wordpress.org/support/users/viji421/)
 * (@viji421)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/)
 * I having issue with wordpress error can you assist me
    -  This topic was modified 4 years, 2 months ago by [James Huff](https://wordpress.org/support/users/macmanx/).
      Reason: link formatting fixed
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fhaving-issue-with-wordpress%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 1 through 15 (of 15 total)

 *  Moderator [James Huff](https://wordpress.org/support/users/macmanx/)
 * (@macmanx)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15703967)
 * For the sake of anyone else joining the threads, the errors are:
 *     ```
       Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 33554456 bytes) in /home/tysjewel/public_html/wp-includes/wp-db.php on line 2169
   
       Deprecated: Function create_function() is deprecated in /home/tysjewel/public_html/wp-includes/plugin.php on line 443
   
       Deprecated: Function create_function() is deprecated in /home/tysjewel/public_html/wp-includes/plugin.php on line 447
       ```
   
 * If you’re seeing this error either suddenly (no specific task was done to cause
   the error) or frequently, try [manually resetting your plugins](https://wordpress.org/support/article/faq-troubleshooting/#how-to-deactivate-all-plugins-when-not-able-to-access-the-administrative-menus)(
   no Dashboard access required). If that resolves the issue, reactivate each one
   individually until you find the cause.
 * If that does not resolve the issue, access your server via [SFTP or FTP](https://wordpress.org/support/article/ftp-clients/),
   or a file manager in your hosting account’s control panel (consult your hosting
   provider’s documentation for specifics on these), navigate to /wp-content/themes/
   and rename the directory of your currently active theme. Hopefully, this will
   force the default theme to activate and rule out a theme-specific issue (theme
   functions can interfere like plugins).
 * Otherwise, here are three ways to increase PHP’s memory allocation:
 * 1. If you can edit or override the system php.ini file, increase the memory limit.
   For example, `memory_limit = 256M`
 * 2. If you cannot edit or override the system php.ini file, add `php_value memory_limit
   256M` to your .htaccess file.
 * 3. If neither of these work, it’s time to ask your hosting provider to temporarily
   increase PHP’s memory allocation on your account. Keep in mind that most decent
   hosting providers allow users to temporarily increase the memory allocation. 
   If your hosting provider won’t accommodate you, perhaps it’s time to find a new
   hosting provider. We have some recommendations at [https://wordpress.org/hosting/](https://wordpress.org/hosting/)
 * (in the above examples, the limit is set to 256MB)
 *  Thread Starter [viji421](https://wordpress.org/support/users/viji421/)
 * (@viji421)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15704004)
 * they increase two time php memory…. why this error occurs? they says by virus.
 *  [Ankush4475](https://wordpress.org/support/users/ankush4475/)
 * (@ankush4475)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15704062)
 * its very simple issue
 *  [Ankush4475](https://wordpress.org/support/users/ankush4475/)
 * (@ankush4475)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15704084)
 * Re update the wordpress files from wordpress.org site , get new copy and replace
   the plugin.php file with that
 * try that and let me know
 *  Thread Starter [viji421](https://wordpress.org/support/users/viji421/)
 * (@viji421)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15704094)
 * how tell me
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15704125)
 * So, the “create_function” problem is not a problem with plugins.php. It’s a problem
   with something else calling a function that’s in plugins.php. Don’t bother replacing
   the file. BUT, just to be sure that everything is a consistent version, go to
   DASHBOARD -> UPDATES and click the button to reinstall WP. It probably won’t 
   help, but it won’t hurt.
 * The actual error is
 *     ```
       Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 33554456 bytes) in /home/tysjewel/public_html/wp-includes/wp-db.php on line 2169
       ```
   
 * That is, it wants to allocate 33MB (33,554,456 bytes) more to do something related
   to the database and there’s no more available. Your current memory maximum is
   67,108,864 bytes or 64MB. Follow James’ advice, above, to increase your max memory
   to 256 or 512M.
 *  Thread Starter [viji421](https://wordpress.org/support/users/viji421/)
 * (@viji421)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15704200)
 * memory_limit is set on 6000M
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15704243)
 * OK, then something’s wrong. ( 🙂 )
 * This may be a plugin or theme conflict. Please attempt to disable all plugins,
   and use one of the default (Twenty*) themes. If the problem goes away, enable
   them one by one to identify the source of your troubles.
 *  Moderator [James Huff](https://wordpress.org/support/users/macmanx/)
 * (@macmanx)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15704249)
 * And see the steps I posted earlier for specifics (and links) on how to do that.
 * But yeah, if your site is consuming memory in excess of essentially 6 GB, you’ve
   got a memory leak in there somewhere, and unless your core WordPress files were
   edited, it’s not in those.
 *  Thread Starter [viji421](https://wordpress.org/support/users/viji421/)
 * (@viji421)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15706461)
 * how i resolved this issue this error show when i upload a license able theme 
   and replaced with old nulled theme? this any shortcut buy i has completed site
   design and products
    [https://snipboard.io/eaGCPY.jpg](https://snipboard.io/eaGCPY.jpg)
 * _[Moderator note: Please, [No bumping](https://wordpress.org/support/guidelines/#do-not-bump-posts)]._
    -  This reply was modified 4 years, 2 months ago by [Yui](https://wordpress.org/support/users/fierevere/).
    -  This reply was modified 4 years, 2 months ago by [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/).
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15707159)
 * ” i upload a license able theme and replaced with old nulled theme?”
 * If you’ve used a nulled theme on your site, it’s likely corrupted things. I recommend
   treating your site as though you’ve been hacked. Get a fresh cup of coffee, take
   a deep breath and carefully follow [this guide](https://wordpress.org/support/article/faq-my-site-was-hacked/).
   When you’re done, you may want to implement some (if not all) of [the recommended security measures](https://wordpress.org/support/article/hardening-wordpress/).
 *  Thread Starter [viji421](https://wordpress.org/support/users/viji421/)
 * (@viji421)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15707176)
 * [@sterndata](https://wordpress.org/support/users/sterndata/) its not hacked its
   having this error i have use just 2 weaks nulled theme then i buy know what i
   can do can i delete the theme from cpanel and upload new from scratch?bcz i dont
   want to remove all things from website ? someone is saying reinstall new wordpress
   but that will loss my data.
    [https://snipboard.io/eaGCPY.jpg](https://snipboard.io/eaGCPY.jpg)
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15707422)
 * If you used a nulled theme then your site is likely compromised.
 * What happens if you try the theme TwentyTwentyOne?
 *  Thread Starter [viji421](https://wordpress.org/support/users/viji421/)
 * (@viji421)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15708055)
 * [@sterndata](https://wordpress.org/support/users/sterndata/) then the warning
   will not show.
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15708534)
 * IF the errors/warnings go away when you change the theme, the problem is with
   your nulled theme. If you wish to continue using that theme, buy a legititmate
   copy. If not, pick another theme from wordpress.org/themes.

Viewing 15 replies - 1 through 15 (of 15 total)

The topic ‘having issue with wordpress’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 15 replies
 * 4 participants
 * Last reply from: [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * Last activity: [4 years, 2 months ago](https://wordpress.org/support/topic/having-issue-with-wordpress/#post-15708534)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
