I have a hosted server (rochenhost.com), where I run some PHP code. In the old days, before I started working as a software developer, and was self taught I printed the variables out.
现在,经过几年的学校教育和培养者的工作,在我学会使用挖尸后,我说: 是否具备任何良好的硬盘旋工具,可使用一个接收服务器。
I have a hosted server (rochenhost.com), where I run some PHP code. In the old days, before I started working as a software developer, and was self taught I printed the variables out.
现在,经过几年的学校教育和培养者的工作,在我学会使用挖尸后,我说: 是否具备任何良好的硬盘旋工具,可使用一个接收服务器。
你们是否重新直接在生产服务器上工作? 或者,你有两个单独的编码数据库,一个用于发展(伪造等),另一个用于生产(向实际用户展示)? 如你所知,直接更换生产服务器上的代码是一种内障,几乎保证偶尔放下网站或制造安全漏洞。 因此,我最大的建议是建立地方发展服务器<>。 这可能很容易下载适当的XAMP st供你的电脑使用,并在生产服务器上用你喜欢的VCS把文件与生产服务器混为一谈。
如果有地方发展服务器,请登录一个具有中转功能的变迁者名单,,这个内容是另一个内容提纲。
如果你在遥远的服务器上打着gg碎打的编码,这里是能够帮助的几种其他做法。 你也许已经这样做。
1)Turn on misproduct. 您可以在一开始插入以下文字:
ini_set("display_errors","1");
error_reporting(E-ALL);
这将向网页打印(有时)信息错误信息。 据认为,向来访者披露这一信息是一种重大的安全风险,因此,确保你在重新测试时删除这些内容。 如果你有当地开发服务器或外部世界无法使用的服务器,你可以通过添加“<代码>显示差错=1至php.ini”的字眼报告。
2) 替换服务器的PHP错误标识。 这往往包含有关为什么有一页的死亡的信息,即使你重新装上充电灯以显示那里的错误信息。 您也可使用<条码>error_log(您在此发出的信息)向该日志发布电文,如果你能够把信息放在你的网页上,那是有用的。
我将PPHP延伸用于Fox和Khatp用于 Chrome。 它们在浏览器的独角记录中贴上标识。 他们节省了我时间。
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...
How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...