This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APACHE支持.htaccess以及 No input file specified解决方案 | |
你的Apache安装文件夹conf里找到httpd.conf文件 | |
索LoadModule rewrite_module modules/mod_rewrite.so 如果前面有注释符号#,请去掉。 | |
搜索Options FollowSymLinks,然后将它下面的AllowOverride None 修改为AllowOverride All; | |
【1】 | |
没想到遇见了 No input file specified 因为项目用了URL route ,估摸着可能是rewrite的问题。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function reinitIframe() { | |
var iframe = document.getElementById("main_iframe"); | |
try { | |
var bHeight = iframe.contentWindow.document.body.scrollHeight; | |
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight; | |
var height = Math.max(bHeight, dHeight); | |
iframe.height = height; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* https://my.oschina.net/kmwzjs/blog/337199 配置支持Phalcon-tools: | |
* 在phalcon的官方博客上面说了要把phalcon的ide类库提示单独出来维护,所以在github上的phalcon dev tools已经不再有stubs了。 | |
项目地址放在了https://github.com/phalcon/ide-stubs上。 | |
只要clone下来,再在phpstorm项目中的external libraries添加clone下来的文件夹就行。 | |
参考文章: | |
https://blog.phalconphp.com/post/phalcon-ide-stubs-repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"net/url" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"net" | |
"time" | |
"bufio" | |
) | |
func handleConnection(conn net.Conn) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iptables -t nat -A PREROUTING -d 1.2.3.4 -p tcp --dport 3389 -j DNAT --to 192.168.1.1:3389 | |
类似这个的。 | |
1.2.3.4是你的外网IP 192.168.1.1是你想映射到外网的内网服务器。 | |
如果vps有多个ip,可以实现ip之间端口转发 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
case "$1" in | |
"start") | |
echo "$0 starting..."; | |
privoxy /config; | |
echo "$0 started...";; | |
"stop") | |
echo "$0Stoping..."; | |
killall privoxy; | |
echo "$0 Stoped...";; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto/cipher" | |
// "github.com/labstack/gommon/log" | |
"golang.org/x/crypto/blowfish" | |
"fmt" | |
) | |
func main() { | |
// decrypt() | |
encrypt() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You can upload data and files with one form using ajax. | |
PHP + HTML | |
<? | |
print_r($_POST); | |
print_r($_FILES); | |
?> | |
<form id="data" method="post" enctype="multipart/form-data"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select a.oldman_name,b.org_id | |
From tbl_assess_oldman_ability a LEFT JOIN tbl_assess_user b | |
ON a.assess_user_id=b.admin_id | |
where b.org_id=15 |