Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

zemna

zemna

.htaccess 파일을 이용해 특정 IP 접근 차단하기

요즘 댓글, 트랙백 등의 서비스 때문에 서버의 트래픽이 날로 증가하고 있다. 이럴때 맘에 안드는 스팸 IP를 차단하는 방법이 있다. 웹서버의 루트폴더에 .htaccess 파일을 생성한다. 생성된 파일에 아래와 같이 설정하도록 한다. SetEnvIfNoCase remote_addr 94.229.65.* go_out Order allow,deny Allow from all Deny…

How to use Lightbox in Jekyll

Install with bower $ bower install ekko-lightbox –save Basic usage likes bellow, ![Image Title](){: width=”400px” } If you want to give lightbox feature to all images in page, we can it by bellow javascript. first, give anchor to image in…

How to update timestamp in pivot table in Laravel

When insert a new row to pivot table, we can use attach() method like this: $company = Company::find(1);$company->users()->attach(1); But this will not update created_at and updated_at timestamps column in pivot table. To update timestamps, use withTimestamps() method on the relationship…

How to solve SSL error of RubyGems

When you exeucte gem command, you may see SSL error like bellow. SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed This error is produced because of changes in rubygems.org infrastructure. How to solve it? 1. Downlaod update…