wordpress 업데이트 오류
remark : 디비에 lock 걸린 컬럼을 삭제 하나거 30분 정도 후에 다시 시도해 봐도 안된다. 1.wp_debug = false 로 하여 에러메시지 찍히게 하니 2.해결 : wp_options 가 깨져 있었다. 명령어로 정상화 OPTIMIZE TABLE wp_options; 로 정상화
remark : 디비에 lock 걸린 컬럼을 삭제 하나거 30분 정도 후에 다시 시도해 봐도 안된다. 1.wp_debug = false 로 하여 에러메시지 찍히게 하니 2.해결 : wp_options 가 깨져 있었다. 명령어로 정상화 OPTIMIZE TABLE wp_options; 로 정상화
정리전 [wp-svg-icons icon=”home” wrap=”i”] 계정생성 및 디렉토리(미리만듬) 연결
1 2 3 4 5 6 |
sudo useradd -c helloworld -d /var/www/helloworld -s /usr/sbin/nologin -p passwd hello sudo usermod -a -G www-data hello sudo chown -R hello:www-data /var/www/helloworld/ sudo chmod -R 777 /var/www/helloworld/ |
sudo cat /etc/passwd sudo cat /etc/group sudo useradd -c testcom -d /var/www/testcom -s /usr/sbin/nologin -p pass001 userId sudo chsh -s /usr/sbin/nologin userIDd sudo chsh -s /bin/sh userIDd (putty login인 용) sudo usermod -d /var/www/ testuser [wp-svg-icons icon=”connection” wrap=”i”]계정생성 추가 설명 : https://auctionpro.co.kr/?p=130 502 sudo usermod… Read More »
http://myhome.com/wordpress/wp-content/uploads/pwebcontact
아래와 같은 공격이 있는 경우 서버 및 사이트 멈춤 root@localhost:/var/log/apache2# cat access.log 62.204.144.62 – – [16/Jul/2014:18:59:45 +0900] “POST /xmlrpc.php HTTP/1.1” 404 530 “-” “Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)” 121.172.98.237 – – [16/Jul/2014:18:59:46 +0900] “POST /xmlrpc.php HTTP/1.1” 404 530 “-” “Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)” 127.0.0.1 – – [16/Jul/2014:18:59:48 +0900] “OPTIONS * HTTP/1.0” 200 126 “-” “Apache/2.2.22 (Ubuntu)… Read More »
브라이트돌핀 – 무료 오픈소스 생산관리시스템 – Cosmosfarm.
WordPress 3.8 업데이트 됐네요.
ftp 접속해서 .maintenance 파일삭제.
참조 : https://codex.wordpress.org/Changing_File_Permissions On computer filesystems, different files and directories have permissions that specify who and what can read, write, modify and access them. This is important because WordPress may need access to write to files in your wp-content directory to enable certain functions. Permission Modes
1 2 3 4 5 6 |
7 5 5 user group world r+w+x r+x r+x 4+2+1 4+0+1 4+0+1 = 755 |
The permission mode is computed by adding up the following values for… Read More »
아파치 rewrite module 켜서 .htaccess 활성화하기(우분투 기준) | 웹으로 말하기.
wp-config.php 에 /*아래와 같이 추가해주시면 됩니다.*/ if(is_admin()) { add_filter(‘filesystem_method’, create_function(‘$a’, ‘return “direct”;’ )); define( ‘FS_CHMOD_DIR’, 0755 ); }