[태그:] URL


  • 워드프레스 Twenty Twenty-Two, Twenty Twenty-T …

    워드프레스 Twenty Twenty-Two, Twenty Twenty-T …

    웹서버 에러 로그 보니 특정 페이지에서 에러가 나는걸 확인했습니다. 2022/12/11 09:28:19 [error] 79223#79223: *30768 FastCGI sent in stderr: “PHP message: PHP Fatal error: Uncaught ArgumentCountError: 25 arguments are required, 1 given in /www/wordpress/wp-includes/blocks/comment-template.php:70 Stack trace: #0 /wordpress/wp-includes/blocks/comment-template.php(70): sprintf() #1 /wordpress/wp-includes/blocks/comment-template.php(62):… “read more”


  • 디폴트 브라우져로 웹사이트 주소 열기

    보통 프로그램 about 메뉴를 선택하면 자사 홈페이지 주소가 있는데 일부 모 프로그램들은 OS 디폴트 브라우저가 익스가 아님에도 불구하고 꼭 익스로 열리는게 있음. 왜 그렇게 했는진 몰라도 아래 코드로 하면 OS 디폴트 브라우저로 URL이 열리니 참고하세요. std::wstring url = TEXT(“linsoo.pe.kr/”); ShellExecute(NULL,L”open”,url.c_str(),NULL,NULL,SW_SHOW); “read more”