1/2 페이지 열람 중
PDF 파일작성 : securityproof
Ubuntu Hdd 추가하기디스크가 인식되었는지 확인합니다.$ sudo fdisk -l파티션 할당합니다.$ sudo fdisk /dev/sdb1m 눌러서 명령을 봅니다.n 눌러서 파티션을 추가합니다.p 파티션 생성파티선 생성이 끝나면w 눌러서 저장합니다.리부팅 합니다.파티션을 포맷합니다. (파티션을 하나로 잡았을경우)$ sudo mkfs.ext3 /dev/sdb1마운트할 디렉토리를 만듭니다.$ sudo mkdir /pub마운트 합니다.$ sudo mount /dev/sdb1 /pub자동 마운트 설정을 추가합니다.$ sudo vi /…
Access control by hostIf you wish to restrict access to portions of your site based on the host address of your visitors, this is most easily done usingmod_authz_host.TheRequireprovides a variety of different ways to allow or deny access to resources. In conjunction with theRequireAll,RequireAny, an…
Call-time pass-by-reference has been deprecated 후딱빌더 설치후 위와같이 에러가 발생한경우 서버상의 PHP 문제이므로 다음과 같이 수정하실수 있습니다. 설치된 PHP.INI 파일을 열으신뒤. allow_call_time_pass_reference = Off Off 로 되어있는 부분을 On 으로 변경후 웹서버 재시작하시면 정상적으로 보이게됩니다. 대부분 웹호스팅 사용자 인경우 On 체크가 되어있으므로 별도로 오류 발생하지는 않겠지만 서버호스팅 으로 운영하시는분들께서는 Off 로 되어있…
<body><script>function my(){if(document.getElementsByTagName){var div = document.getElementsByTagName('div').item(0).style;div.width=100;div.height=100;div.backgroundColor="aqua";div.border="outset 2px red";}}</script><div id="myid1…
function CheckByte(str){var i;var strLen;var strByte;strLen = str.length;if(IEYES == 1){for(i=0, strByte=0;i<strLen;i++){if(str.charAt(i) >= ' ' && str.charAt(i) <= '~' )strByte++;elsestrByte += 2;}return strByte;}else{return strLen;}}
function bytelength(pstr) {var i, ch;len = pstr.length;for (i = 0; i < pstr.length; i++) {ch = pstr.substr(i,1).charCodeAt(0);if (ch > 127) { len++; }}return len;}
php,apache2 Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1982464 bytes) in /var/www/html/test.php on line apache2 에서 오류 발생시 처리 vi /etc/php/7.4/apache2/php.ini memory_limit = 2048M # service apache2 restart
아래는 mysql 의 password 함수 대신 php 코드만으로 mysql5 password 함수를 구현한것입니다.<? print mysql5_password('1111'); function mysql5_password($in) { $passwd = sha1($in,true); $passwd = sha1($passwd);return "*".strtoupper($passwd); }?>실행 결과chanchan-ui-MacBook:~ chanchan$ php passwd_test.php*89C6B530AA7…
PHP 5.3부터는 Call-time pass-by-reference가 폐지된다고 합니다.만약에 call-time pass-by-reference로 사용할 경우,Deprecated: Call-time pass-by-reference has been deprecated.이런 경고가 발생합니다.원인:$key = "hello"; $obj = new MySQLi; function test($arg1, &$arg2) { // ... } test($key, &$obj)마지막 코드를 보면 $obj를 call-…