Nginx 403 错误解决方法
try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_pass unix:/run/php-fpm/php-fpm.sock; fastcgi_split_path_info ^(.+...
开源网页聊天室应用WebChat发布
bpage.3. How to configure WebChat?Open the file config.php, then you can customize the port and IP. document.write('临时体验地址:http://107.155.101.65/WebChat 此链接已暂停服务,敬请谅解!'); ...
手机站建设HTML5触摸屏touch事件使用介绍
move:触摸时手指在屏幕上滑动的时候触发 touchend:触摸结束的时候触发 touchcancel:系统取消touch事件的时候触发 事件绑定,代码示例: <script> var obj = document.getElementById('id'); obj.addEventListener('touchstart', touchStart, false); obj.addEventListener('...