修改apache默认主页要修改两个文件:
/etc/httpd/conf/httpd.conf
/etc/httpd/conf.d/php.conf
修改这两个文件的 DirectoryIndex 后的文件名。 Continue reading wordpress 更改 apache首页
Category Archives: CODEX
samba start error
smbd: relocation error: /lib/libsamba-credentials.so.0: symbol GSS_KRB5_CRED_NO_CI_FLAGS_X, version gssapi_krb5_2_MIT not defined in file libgssapi_krb5.so.2 with link time reference
Package krb5-libs-1.13.2-11.fc23.i686 is already installed
should update krb5-libs-1.13.2 to krb5-libs-1.14.1
so: sudo dnf install krb5-libs-1.14.1-*
other words, security should be set as share
or smbd would not start properly (error exit)
DONE
django:DateTimeField如何自动设置为当前时间并且能被修改
创建django的model时,有DateTimeField、DateField和TimeField三种类型可以用来创建日期字段,其值分别 对应着datetime()、date()、time()三中对象。这三个field有着相同的参数auto_now和auto_now_add,表面上 看起来很easy,但实际使用中很容易出错,下面是一些注意点。 Continue reading django:DateTimeField如何自动设置为当前时间并且能被修改
lampp+wordpress主机数据库错误修复方法
突然断电后可能会导致wordpress+mysql数据链接不上的问题。
重启lampp显示mysql ok
手动启动/lampp/sbin/mysqld显示一堆错误
查阅/lampp/var/mysql/*.err文件,查找错误描述: Continue reading lampp+wordpress主机数据库错误修复方法
Django models field types
Field types
AutoField
- class
AutoField
(**options)[source]
An IntegerField
that automatically increments according to available IDs. You usually won’t need to use this directly; a primary key field will automatically be added to your model if you don’t specify otherwise. See Automatic primary key fields.
Continue reading Django models field types
django admin You don't have permission to edit anything ?
1, 在urls.py 文件中加入一行 admin.autodiscover()
admin.autodiscover() 是什么作用呢?
查看源码 分析到作用是把 settings.INSTALLED_APPS这个节点中的配置动态的加入到程序中来。
2,在models.py文件中将数据表注册到admin里,
from django.contrib import admin
…
admin.site.register(modelname)
Grub 命令行用法
grub 命令行用法
2007-01-17 10:36
1、用命令行来引导Linux操作系统的步骤
通过命令行来引导操作系统的流程,也没有什么难的;无非是把指令手工输入到grub>提示符的后面;在这个过程中,tab键的命令补齐功能就显得很重要了。如果您不知道有哪些命令,可以输入help; Continue reading Grub 命令行用法
Raspberry pi django
安装pip
sudo apt-get install python-pip python-dev build-essential
sudo pip install –upgrade pip
安装Django
sudo pip install django
安装成功之后我们可以进入python命令行查看django版本
启动calibre共享服务器 calibre-server
手动启动:calibre-server –daemonize
随机启动:sudo vi /etc/rc.local
在exit 0前增加代码
前提:安装apache服务器,并启动。
Install setuptools for django
- wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz
- tar zxvf setuptools-0.6c11.tar.gz
- cd setuptools-0.6c11
- sudo python setup.py build
- sudo python setup.py install