浏览模式: 普通 | 列表

TypeError: $(…).validate is not a function

[ 2017-01-09 13:02:43 | 作者: admin ]
问题:TypeError: $(…).validate is not a function
解决:
1、可能没有载入相关的插件
2、可能没有优先载入 jquery.js
由于session使用了memcache,造成phpmyadmin经常出现不稳定的现象,表现为进入后数秒可能退出重新登录又可以了。

p.s. 发现把phpmyadmin改为 auth_type参数的值修改为 http 就可以了


参考:

$cfg['Servers'][$i]['auth_type'] string ['HTTP'|'http'|'cookie'|'config'|'signon']
        Whether config or cookie or HTTP or signon authentication should be used for this server.
#注释:auth_type可选的参数有:http,cookie,config,signon


        'config...

阅读全文…
dirname(__FILE__) 取到的是当前文件的绝对路径,也就是说,比起相对路径,查找速度是最快的。
比如当前文件是放在(d:\www\)下,文件名是test.php。
测试的代码如下:
<?php
echo __FILE__ ; // 取得当前文件的绝对地址,结果:D:\www\test.php
echo dirname(__FILE__); // 取得当前文件所在的绝对目录,结果:D:\www\
echo dirname(dirname(__FILE__)); //取得当前文件的上一层目录名,结果:D:\
?>


使用方法提示,
dirname(__FILE__) 取到的是当前文件的绝对路径,也就是说,比起相对路径,查找速度是最快的。
如果重复一次可以把目录往上提升一个层次:
比如:$d = dirname(dirname(__FILE__));
...

阅读全文…
1、nginx是支持读取非nginx标准的用户自定义header的,但是需要在http或者server下开启header的下划线支持:
        underscores_in_headers on;

2、比如我们自定义header为X-Real-IP ,通过第二个nginx获取该header时需要这样:
        $http_x_real_ip; (一律采用小写,而且前面多了个http_)

3、如果需要把自定义header传递到下一个nginx:
        如果是在nginx中自定义采用proxy_set_header X_CUSTOM_HEADER $http_host;
        如果是在用户请求时自定义的header,例如curl –head -H “X_CUSTOM_HEADER: foo” ...

阅读全文…

how to install python-devel for 2.6 version?

[ 2016-11-26 16:02:30 | 作者: admin ]
If you enable the EPEL repo, you can install python 2.6 and the devel headers using yum:

# yum install python26
# yum install python26-devel
由于YUM包管理是使用Python编写的,因此如果单独对Python进行升级可能会导致YUM服务无法使用。

出现这种情况的主要原因在于新安装的Python没有YUM服务所依赖的Packages。

可以尝试在Python中执行import yum语句,如果Python此时抛出异常则表示YUM无法正常运行。

一般情况下出现的问题为:No module named rpm,如果这时没有rpm-python的安装包,那么就需要来重新build一个,这个package被包含在了rpm代码当中,所以先要到rpm.org网站上下载对应机器上rpm版本的源码包,然后解压,执行./configure,进入python子目录,执行make install。安装完成后,退出python子目录,执行python,再次import yum,查看是否不再出现No module named rpm,如果依然出现可...

阅读全文…
Step 1: Download file ca-certificates-2009-2.RHL5.noarch.rpm
wget http://files.lucidsolutions.co.nz/linux/centos/nginx/ca-certificates-2009-2.RHL5.noarch.rpm

Result:
[root@tutorialspots ~]# wget http://files.lucidsolutions.co.nz/linux/centos/nginx/ca-
certificates-2009-2.RHL5.noarch.rpm
--2016-05-06 23:01:25-- http://files.lucidsolutions.co.nz/linux/centos/nginx/ca
...

阅读全文…
公司测试机环境不知道给我卸了什么包,导致yum运行报错状况:

系统版本:Red Hat Enterprise Linux Server release 6.2 (Santiago)

内核版本:2.6.32-220.el6.x86_64


报错情况:

There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:

    No module named sqlite

Please install a package which provides this module, or
verify that the module is installed correctly.

It's possible that ...

阅读全文…