wsod

Magento Blank Screen on Checkout & Cart with Compiler Enabled

南楼画角 提交于 2019-12-24 12:09:06
问题 When I run the Magento Compiler process it completes fine and then it's enabled. Everything is fine on the frontend until I add something to the basket, it goes to a white/blank screen, same for the basket page and checkout page. I've tried uncommenting the ini_set('display_errors', 1); line in the index.php file but still nothing is returned. I've also tried showing errors via the .htaccess file without success. The website's php limit is 256M, so that shouldn't be an issue because the

Magento How to debug blank white screen

牧云@^-^@ 提交于 2019-12-17 10:39:12
问题 I have an error in my Magento backend that results in a blank screen (WSOD). I have set errors to on in admin but there is nothing being created in var/logs/. (I have checked permissions for that directory and all is correct). I have also ini_set('display_errors', 1) in index.php and Magento is set to developer mode. I have also enabled apache and php error logs. No errors are being logged though?! Anyone have a clue as to why errors aren't being shown? As I'm confused! Thanks 回答1: This is

Web Service Call in JavaScript Causing White Screen of Death (WSOD) in Browser

十年热恋 提交于 2019-12-08 07:28:46
问题 Here's the specs: ASP.NET 3.5 using ASP.NET AJAX AJAX Control Toolkit jQuery 1.3.2 web services IIS6 on Windows Server 2003 SP1 SP1 SQLServer 2005 SP3 Site is SSL Infragistics Web Components 2009 Vol. 2 (using non-Aikido controls), UltraWebGrid and Tree control are main ones used. Here's the problem: I'm getting the White Screen of Death (WSOD) in IE 7/8. Basically, I have a page that has a left pane that has an AJAXControl Toolkit Accordion control where each accordion panes content is an

PHP produces a completely white page, no errors, logs, or headers.

断了今生、忘了曾经 提交于 2019-11-30 11:30:28
While running some PHP code on my private WAMP PC I'm suddenly getting a blank response from the server - no response actually. No headers, no data, nothing in the PHP error logs, nada. I restarted APACHE and PHP but still nothing. I know php is working because I can access other PHP scripts just fine. Firebug reports no headers, ? bytes, and it only takes 163ms to "load" (so it's not a timeout). I thought about rapid memory consumption - but I monitored my PC's memory and it's not showing any spikes. Errors and Exceptions have been working fine until now. What in the world? max_execution_time

How to avoid WSOD (blank screen) while loading long-running initialization data in Struts2?

守給你的承諾、 提交于 2019-11-30 09:47:44
问题 I need to do the following: User logs in. Redirected to welcome screen. Looks at the welcome screen while lots of records are loaded. Redirected to the working screen. I am looking for a way to do in Action class something like this: public class LinkAction extends ActionSupport implements SessionAware { @Autowired private ServiceDelegate myService; public String welcome() { new Runnable() { @Override public void run() { myService.getLoadsOfData(); //redirect to the next action } }.run(); //

PHP produces a completely white page, no errors, logs, or headers.

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-29 17:38:40
问题 While running some PHP code on my private WAMP PC I'm suddenly getting a blank response from the server - no response actually. No headers, no data, nothing in the PHP error logs, nada. I restarted APACHE and PHP but still nothing. I know php is working because I can access other PHP scripts just fine. Firebug reports no headers, ? bytes, and it only takes 163ms to "load" (so it's not a timeout). I thought about rapid memory consumption - but I monitored my PC's memory and it's not showing

White screen of death!

左心房为你撑大大i 提交于 2019-11-29 07:28:35
After debugging a codeigniter app that were installed into a new development environment, I have started to freak out when seeing white screens with nothing more available. I have been able to solve each and every one of the errors that have caused this, but it have taken seriously way too long time. PHP error_reporting(E_ALL) & display_errors", 1 is set as well. I even installed Xdebug in hope of getting more output, but no. My logging settings are also working, but nothing is written to the log. Is there a way to get something informative printed out instead of a complete white screen? It

Why when add <?xml version=“1.0” encoding=“utf-8”?> to web page don´t work on hosting?

痞子三分冷 提交于 2019-11-28 14:15:35
I am developing a simple webpage at hostgator.com. I have the standard headers, but when I add the following line: <?xml version="1.0" encoding="utf-8"?> the page does not work. I would like why. This is the full header: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1 /DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es"> ... rest of code ... The server returns me a blank page Issue solved: The PHP short tags was open. My best guess is that: The document is being processed as PHP

White screen of death!

微笑、不失礼 提交于 2019-11-28 01:18:27
问题 After debugging a codeigniter app that were installed into a new development environment, I have started to freak out when seeing white screens with nothing more available. I have been able to solve each and every one of the errors that have caused this, but it have taken seriously way too long time. PHP error_reporting(E_ALL) & display_errors", 1 is set as well. I even installed Xdebug in hope of getting more output, but no. My logging settings are also working, but nothing is written to the

Magento How to debug blank white screen

时间秒杀一切 提交于 2019-11-27 11:53:26
I have an error in my Magento backend that results in a blank screen (WSOD). I have set errors to on in admin but there is nothing being created in var/logs/. (I have checked permissions for that directory and all is correct). I have also ini_set('display_errors', 1) in index.php and Magento is set to developer mode. I have also enabled apache and php error logs. No errors are being logged though?! Anyone have a clue as to why errors aren't being shown? As I'm confused! Thanks Shashank Saxena This is how I got it corrected(Hope will help you guys): Use the following code in your index.php file