服务器的问题

发布于 2024-10-03 02:28:51 字数 357 浏览 3 评论 0原文

我想告诉您服务器的另一个问题。当我们更新记录时,它会更新数据库中的记录,但是当我们想通过 php 文件的前端应用程序在浏览器上访问它时,它不会立即显示更新的记录。这需要 15-20 分钟或更长时间,或者有时我们关闭浏览器并打开另一个浏览器,然后更新的记录就会显示在那里。我已经删除了浏览器缓存,但问题仍然存在。我已经在不同的浏览器(如 IE 6.0、7.0、chrome、safari、mozilla)中检查过此问题,但无法找到解决方案。

请建议我服务器有什么问题? 请检查此网址: http://www.nicee.org/Trial/view.php

I would like to inform you about the another problem of the server. When we are updating the records, it updates the records in the database but when we want to access it on the browser through the frontend application of php files it is not displaying the updated records immediately. It takes the time of 15-20 minutes or more or sometimes we closes the browser and open the another browser then the updated records display there. I have already deleted the browser cache but the problem is still remains. I have checked this in the different different broswers like IE 6.0,7.0, chrome, safari, mozilla but unable to find the solution.

please suggest me what is the problem with the server?
please check this url :
http://www.nicee.org/trial/view.php

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我爱人 2024-10-10 02:28:51

为了稍微扩展我的评论,我应该指出 PHP 并不是我真正熟悉的东西,只是所描述的问题听起来很熟悉。

伪代码:

-- On Update

Open Transaction with Database

Run SQL command(s)

Close/commit transaction

如果您不执行最后一步(即提交事务并关闭它),那么它将保持打开状态并锁定该表(取决于您的数据库的设置方式)。您必须确保它始终完成(如果也有错误则回滚)。

通过快速谷歌,这可能很有用:

http://www.devarticles.com/c/a/MySQL/Using-Transactions-with-MySQL-4.0-and-PHP/

To expand on my comment slightly, I should point out that PHP isn't really something I'm familiar with, just the problem described sounded familiar.

To pseudo code it:

-- On Update

Open Transaction with Database

Run SQL command(s)

Close/commit transaction

If you don't do this final step (i.e. commiting the transaction & closing it), then it will remain open and will lock this table (depending on how your DB is set up). You must ensure that it is always finished (rolled back if there is an error too).

From a quick google, this may be useful:

http://www.devarticles.com/c/a/MySQL/Using-Transactions-with-MySQL-4.0-and-PHP/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文