반응형
반응형
실행 > mstsc /console 옵션 > 로컬리소스탭 > 로컬 장치 및 리소스 > 자세히 > 로컬디스크 체크 테스트용 2차 도메인 외부에 노출 안되고 설정된 피씨만 접속되게 IIS 설정 : [nick.domain.com] 웹사이트 추가. 로컬피씨 C:\Windows\system32\drivers\etc\hosts 파일에 000.000.000.000 nick.domain.com 추가 cmd > ipconfig /flushdns 실행
디비오류로그 (tail -n200 /usr/local/mysql/data/localhost.err) 보면 깨진 디비의 테이블확인 가능 "Table '[TABLE_NAME]' is marked as crashed and should be repaired" /usr/local/mysql/bin/mysqlcheck -Aao --auto-repair -u root -p mysqld restart 시 localhost.err 에 110423 19:14:25 [ERROR] Column count of mysql.db is wrong. Expected 22, found 15. The table is probably corrupted 110423 19:14:25 [ERROR] mysql.user has no `Even..
http://www.maxmind.com/app/geolitecity http://www.maxmind.com/app/csv ▷ Instructions on how to use our CSV databases with a SQL database. ▷ Download the latest GeoLite Country CSV Format GeoIP Country CSV Text Files MaxMind GeoIP databases are available in a Comma Separated Value (CSV) format, in addition to the binary format. These CSV files generally contain IP Address range and geographical d..
jQuery(document).ready(function(){ $(document).mousemove(function(e){ arr_mousexy["x"] = e.pageX; arr_mousexy["y"] = e.pageY; }); });
ServerAdmin webmaster@domain.com DocumentRoot /home/userid/www ServerName domain.com ServerAlias *.domain.com other.com *.other.com #2차도메인 및 기타 연결도메인 ErrorLog "/home/userid/log/error.log" #로그경로 CustomLog "/home/userid/log/access.log" common #접속로그 php_admin_value upload_max_filesize 10M #업로드한계 AddType application/x-httpd-php .html .htm .php .php3 .php4 .php5 .phtml .cgi .inc #실행스크립트확장자 SSL 사용시 Se..
http://social.answers.microsoft.com/Forums/ko-KR/answersieko/thread/fca1ff1e-e522-4b6c-89a4-755a8fc1e545 아래 내용을 ie8.reg 파일로 만든다음 실행 Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IEDevTools] "Disabled"=dword:00000000 "UseDevToolsDebugger"=dword:00000001 "Pinned"=dword:00000000 "Minimized"=dword:00000000 "MinimizedRestoreHeight"=dword:00000000 "MenuBa..
@ http://laigo.kr/76 mdf, ldf 용량이 많아 다른 파티션의 드라이버로 옮겨야 할 경우. USE MASTER GO -- 1. 파일의 논리 이름을 확인합니다. SELECT file_id, name, physical_name FROM sys.master_files WHERE database_id = db_id('DBNAME'); /* DBNAME, DBNAME_LOG */ -- 2. 30초 후 모든 작업을 롤백하고 단일 사용자 모드로 전환합니다. ALTER DATABASE DBNAME SET SINGLE_USER WITH ROLLBACK AFTER 30 -- 3. DBNAME 데이터베이스 오프라인 상태로 전환합니다. ALTER DATABASE DBNAME SET OFFLINE -- 4. ..
// build iconv function //http://monowx.blog.me/110084374548 if(!function_exists('iconv')) { function iconv($from, $to, $text) { $tmp_from = $_SERVER['DOCUMENT_ROOT'].'/temp/iconv_from'; $tmp_to = $_SERVER['DOCUMENT_ROOT'].'/temp/iconv_to'; $iconv_path = "/usr/bin/iconv"; if(file_exists($tmp_from)) { @unlink($tmp_from); } if(file_exists($tmp_to)) { @unlink($tmp_to); } $open_from = fopen($tmp_fro..
EXEC sp_resetstatus 'yourDBname'; ALTER DATABASE yourDBname SET EMERGENCY DBCC checkdb('yourDBname') ALTER DATABASE yourDBname SET SINGLE_USER WITH ROLLBACK IMMEDIATE DBCC CheckDB ('yourDBname', REPAIR_ALLOW_DATA_LOSS) ALTER DATABASE yourDBname SET MULTI_USER @ : http://blog.daum.net/jungsangun/7691128
htmlcode = "test"; var ptn = new RegExp("]*>","gi"); //혹은 아래 처럼 정규표현식 만듬 var ptn = /]*>/gi; htmlcode = htmlcode.replace(ptn,"");
기본 인스턴스 생성법 NSString *nameString = [[NSString alloc] initWithString:@"Hello World"]; NSString : 객체 형 nameString : 인스턴스명 NSString alloc : 객체명, 메모리 initWithString : 객체메소드 @"~~~" : 객체메소드의 파라메터(nameString 의 값) 메소드 호출 instance = [ObjectName methodName parameter:value parameter:value] 메소드 실행후 돌려 받는 값을 따로 지정 하고 싶을때(객체생성시 동일) hashValue = [[sorceStr subStringFrom:2 to:5] hash] sorceStr의 2~5까지 문자를 구해서 has..
------------------------------------------------------------------ DBDesigner4와 Mysql5 연동 ------------------------------------------------------------------ DBDesigner4는 오래전에 개발되고 더이상 업그레이드가 없는 제품이라 업그레이드된 MySql의 DLL을 반영하지 않아서 생기는 현상이었다. 1. 2개의 DLL 파일을 교체하고 2. MySQL관련 커넥션을 만들때 디폴트로 읽어오는 설정값을 바꾼다. 1. 2개의 DLL 파일 교체 - dbxopenmysql5_dll.zip -> password 관련 에러 발생 : 다운로드 경로( http://www.justsoftwaresolu..