cakePHP表单提交结果黑屏
我在 cakePHP 中遇到一个奇怪的问题。
问题是当我提交表单时,它会导致空白屏幕。
在提交之前,操作工作正常。
有谁对这个问题有任何想法吗?
提前致谢
I am facing a strange problem in cakePHP.
The issue is when ever i submitted a form it results a blank screen.
before submission the action work fine.
Do any body have any idea on this issue.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一些事情可以帮助您检查正在发生的情况。
1- 检查 config/core.php 并将 DEBUG 设置为 2。如果出现黑屏,这可能不会执行任何操作。
2- 检查您的控制器/型号。确保结尾后没有空行?> php 标签。这也可能导致黑屏。
3-检查代码的语法。尝试注释掉代码,看看是否有一些代码可能格式不正确,导致语法中断。
您可以尝试发布您的代码,以便我们查看。也许我们可以观察正在发生的事情。
There are a few things to help you check what is happening.
1- Check config/core.php and set DEBUG to 2. If you are getting a blank screen, this may not do anything.
2- Check your controllers / models. Make sure there is no blank lines after the ending ?> php tag. This could also cause blank screens.
3- Check syntax of your code. Try commenting out code to see if there is some code that may be improperly formed causing syntactical outages.
You can try posting your code so we can take a look. Maybe we can eyeball what is occurring.