$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>errors - Can't get on my own web page|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

errors - Can't get on my own web page

matteradmin11PV0评论

When I try to go to my page this is the error I get. I can't even login it or anything.

Fatal error: Cannot redeclare envira_standalone_get_slug() (previously declared in /homepages/15/d628531438/htdocs/wp-content/plugins/envira-standalone/envira-standalone.php:461) in /homepages/15/d628531438/htdocs/wp-content/plugins/envira-gallery/src/Functions/common.php on line 978

When I try to go to my page this is the error I get. I can't even login it or anything.

Fatal error: Cannot redeclare envira_standalone_get_slug() (previously declared in /homepages/15/d628531438/htdocs/wp-content/plugins/envira-standalone/envira-standalone.php:461) in /homepages/15/d628531438/htdocs/wp-content/plugins/envira-gallery/src/Functions/common.php on line 978

Share Improve this question edited Dec 29, 2018 at 19:50 fuxia 107k39 gold badges255 silver badges461 bronze badges asked Dec 29, 2018 at 19:42 MelissaMelissa 1
Add a comment  | 

1 Answer 1

Reset to default 1

The problem is that you have two plugins installed that are trying to declare the same function envira_standalone_get_slug(). Both plugins are from the same creator, and this tells us that they aren't testing their plugins together.

The solution is to log in to your (S)FTP account, go to /htdocs/wp-content/plugins, and remove one of these directories: envira-standalone/ or envira-gallery/.

Then you will be able to access your site again.

Please report this problem to the Envira team. I'm sure they want to fix that.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far