Year: 2014
-
Post Views: 14 First, the installation steps of Apache are as follows: 1. Prepare the installation file of apache. Its download address is:http://mirrors.hust.edu.cn/apache/httpd/binaries/win32/,其文件名称为:httpd-2.2.25-win32-x86-no_ssl.msi。其中2.2.25表示Apache服务器的版本号;win32-x86表示此安装文件是专门为Windows操作系统提供的;no_ssl表示此安装文件不支持安全套接层协议SSL。 2. Double-click the installation file “httpd-2.2.25-win32-x86-no_ssl.msi” to start the installation, as shown in the picture apache-1. 3. Click the “Next” button in the welcome interface to start the next step, as shown in the picture Apache-2. 4.…
-
Post Views: 17 1. What is the difference between echo(), print(), print_r()? echo() is a language structure, no return value The function of print() is basically the same as echo(), and it is also a language structure. The difference is that print has a return value, and always returns 1 print_r is a recursive print for output array objects 2.…
-
Post Views: 12 Recently found to open every timehttp://www.leshisz.com/的时候,总是出现如下界面: The error message means that the table is incorrect. It is recommended to repair the table. The solution used is to enter phpmyadmin, select the corresponding table, and then repair: The screenshots after the repair are as follows: The system is based on ecshop. It seems that the stats table still…
-
Post Views: 15 The code is as follows: //$data1 = file_get_contents(http://bbs.chengdu.cn/i_index_newdata.php?fids=202,238,239,240,241,242,259,271); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,http://bbs.chengdu.cn/i_index_newdata.php?fids=202,238,239,240,241,242,259,271); curl_setopt($ch, CURLOPT_RETURNTTransfer, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 50); $data1 = curl_exec($ch); curl_close($ch); Since the content of the remote file is read, I finally decided to use curl to replace the file_get_contents, and the feeling speed and stability have…
-
Post Views: 16 http://cn2.php.net/manual/zh/function.file.php file — read the entire file into an array, through the file function, you can directly correspond to the data in the database one by one, and complete the modification of the data!
-
Post Views: 13 deprecated: function set_magic_quotes_runtime() is deprecated in e: \wwwroot\city.chengdu.cn\include\common.inc.php on line 39 warning Since PHP 5.3.0, this function has been discarded. It is strongly recommended not to apply this function. The reason is this! The solution is: //set_magic_quotes_runtime(false); //Disable to escape the input of external resource input ini_set(“magic_quotes_runtime”,”0″); magic_quotes_runtime “0” Remove this option in PHP…
-
Post Views: 14 The expected effect is as follows: The final code structure is as follows: as follows: In the old version, if the HTML parameter of the content ishtmlElementtype, after clicking the cancel button, its content will automatically replay the original call position, but v6 is clicking the cancel button After that, the original position of the content is…
-
Post Views: 14 Initial plan adoptshttp://www.jplayer.org/的,但是发现其在IE6下不支持全屏,而http://www.jwplayer.com/对于IE6/7的支持也不甚理想了,最终决定还是采用http://flowplayer.org/! Provide download address: https://releases.flowplayer.org/5.4.6/flowplayer-5.4.6.zip https://releases.flowplayer.org/flowplayer/flowplayer-3.2.18.zip Provides a code example that implements RTMP live broadcast: flowplayer The final effect is as follows:
-
Post Views: 14 Solution: Add style=”z-index: 11;” on the parent element of the video embed code, which is still valid even in full screen! Final screenshot:
-
Post Views: 47 The error message when paying is as follows: The payment process is as follows, UnionPay online payment, choose ICBC in online banking payment, and choose other banks, there is no problem, the screenshot is as follows: Finally, by modifying the product name to reduce the number of characters, this problem can be solved in the end. According…