Click here to Skip to main content
15,914,594 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am having these Fatal errors on my website, Please, I need assistance:

Notice: Trying to access array offset on value of type null in /home/cqalulezhupc/public_html/?????.ca/wp-content/plugins/elementor/includes/base/controls-stack.php on line 1428

Notice: Trying to access array offset on value of type null in /home/cqalulezhupc/public_html/?????.ca/wp-content/plugins/elementor/includes/base/controls-stack.php on line 1430

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 81920 bytes) in /home/cqalulezhupc/public_html/?????.ca/wp-content/plugins/elementor/includes/base/widget-base.php on line 154
There has been a critical error on your website.

Learn more about debugging in WordPress.


Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32768 bytes) in /home/cqalulezhupc/public_html/?????.ca/wp-content/plugins/elementor/core/logger/loggers/base.php on line 1


What I have tried:

I updated elementor plugin, disabled all the plugins on the site, and activated them one after the other, increased memory size on .htaccess, still, the issue persists
Posted
Updated 17-Sep-20 18:32pm

1 solution

Quote:

This error means that within your code, there is a variable or constant that has no value assigned to it. But you may be trying to use the values index.

The error can be avoided by using the isset() function. This function will check whether the index variables are assigned a value or not, before using them.

Look at lines 1428 & 1430 that you have not shared here. You should be able to identify it.

You have the entire code. Use DEBUGGER and step through to see the same and then find why so, handle it. If isset() helps, go ahead and use it based on the flow.

Refer:
PHP isset() Function[^]
PHP: Debugging in PHP - Manual[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900