Skip to content

Instantly share code, notes, and snippets.

View ReekenX's full-sized avatar
💻
React, Vue, Rails, Python

Remis Jarmalavicius ReekenX

💻
React, Vue, Rails, Python
View GitHub Profile
@ReekenX
ReekenX / prestashop_fix_for_apache
Created May 9, 2014 03:43
Prestashop 1.6 fix for Apache 2.4 (only for dev mode!)
find -iname '.htaccess' -exec sed 's/Deny from all//' -i {} \;
@ReekenX
ReekenX / get_real_ip.php
Created March 19, 2014 04:57
GET real IP address (under proxy)
<?php
function get_real_ip() {
$proxy_headers = array(
'CLIENT_IP',
'FORWARDED',
'FORWARDED_FOR',
'FORWARDED_FOR_IP',
'HTTP_CLIENT_IP',
'HTTP_FORWARDED',