Tag: MySQL
-
Post Views: 16 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: 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: 8 Screenshot of problem: Since on the first installation, install TO did not select the default drive letter, but chose the D drive, which caused this problem to occur the first time, and later even if it was completely deleted through the 360 software housekeeper, and the registry was cleared, and even all the files and folders related…
-
Post Views: 52 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. What is the…
-
Post Views: 35 sql statement: (SELECT SUM(O_G.GOODS_AMOUNT) as AMOUNT_SUM,SUM(o_g.goods_cost*o_g.goods_number) as cost_sum,sum(o_g.goods_number) as number_sum from ERP_ORDER_GOODS AS O_G left outer join erp_order as o on o_g.order_id = o.order_id left outer join erp_goods as g on g.gid = o_g.goods_id left outer join erp_brand as b on b.brand_id = g.brand_id where (o.add_time between “1389715200” and “1389772885”) and (o.order_status=1 or o.order_status=2)) union all (SELECT…
-
Post Views: 9 eventually passedhttp://drupal.org/node/1014172找到问题的解决方法; I use the Wamp configuration environment, the native installation, the operating system is win7 64-bit flagship version, by adding in my.ini MAX_ALLOWED_PACKET = 10M to solve the problem. Need to restart the mysql service ha.