우분투에서 AMP STACK 설치하기
우분투에서 AMP STACK 설치하기 apache2, mariadb, php Operating System Initial Upgrade your operating system to the latest. apt update && apt -y upgrade Installing prerequisites apt -y install git curl …
우분투에서 AMP STACK 설치하기 apache2, mariadb, php Operating System Initial Upgrade your operating system to the latest. apt update && apt -y upgrade Installing prerequisites apt -y install git curl …
워드프레스에서 메모리 제한 늘리기 Edit .htaccess # PHP Configuration php_value memory_limit 256M php_value post_max_size 100M php_value upload_max_filesize 100M php_value max_execution_time 600 php_value max_input_vars 3000 php_value max_input_time 300 # END PHP …
워드프레스에서 WP MAIL SMTP 설정 Amazon SES를 사용하여 전송하는 이메일이 스팸으로 표시되는 이유는 무엇입니까? Authenticating Email with SPF in Amazon SES The name of the record can be blank or …
아마존 라이트세일에 보안 인증서(SSL) 적용하기 SSL 인증서 발급 sudo /opt/bitnami/bncert-tool https://dobiho.com/wordpress/setup-wordpress/setup-wordpres/install-aws-lightsail-wordpress-instance/setup-amazon-lightsail-ssl/ SSL 자동 갱신 인증서 확인 sudo crontab -u bitnami -l https://paperblock.tistory.com/6 SSL 인증서 삭제 ./certbot-auto delete https://nine8007.tistory.com/entry/아마존-라이트세일에서-Letsencrypt-인증서-삭제하기
아마존 라이트세일 워드프레스에서 ftp 정보 입력 창이 나오는 경우 워드프레스 설치 디렉토리의 소유자 변경 chown -R www-data:www-data /home/ubuntu/wordpress www-data 보조 그룹에 ubuntu 사용자를 추가 usermod -a -G www-data ubuntu 실행 …
아마존 라이트세일에서 FTP 전송 권한 오류 푸는 방법 permission denied sudo chown -R bitnami:daemon /bitnami/wordpress/wp-content sudo chmod -R g+w /bitnami/wordpress/wp-content Post Tags: #AWS, #bitnami, #error, #hosting, #issue, #lightsail, #permission, #server, …
아마존 라이트세일에서 비트나미 IonCube 설치 IonCube Download wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz tar xvzf ioncube_loaders_lin_x86-64.tar.gz sudo cp ioncube/ioncube_loader_lin_7.4.so /opt/bitnami/php/lib/php/extensions/ https://docs.bitnami.com/aws/apps/silverstripe/configuration/install-modules-php/#ioncube IonCube Configure Edit php.ini zend_extension = /opt/bitnami/php/lib/php/extensions/ioncube_loader_lin_7.4.so Restart Server sudo /opt/bitnami/ctlscript.sh restart Reference …
우분투에서 phpmyadmin 설치하기 Installation Download: $ cd /var/www/example.com/public_html/ $ wget https://files.phpmyadmin.net/phpMyAdmin/4.8.3/phpMyAdmin-4.8.3-all-languages.zip $ unzip phpMyAdmin-4.8.3-all-languages.zip $ mv phpMyAdmin-4.8.3-all-languages mydbadmin $ rm phpMyAdmin-4.8.3-all-languages.zip http://YOUR_IP_ADDRESS/mydbadmin Install apt -y install phpmyadmin Configure $ sudo …
PHP에서 웹 크롤러 만들기 $ch=curl_init(); //initialize curl curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser. curl_setopt($ch, CURLOPT_URL, “http://google.com/”); $data …
웹폰트메이커를 이용하여 서브셋 웹폰트 만드는 방법 설치하기(macOS) sudo easy_install pip if you still want to install fonttools with the built-in macOS python, you have to avoid sudo and pass the …