Skip to content

Instantly share code, notes, and snippets.

@fairlane57
fairlane57 / concrete5-useful.php
Last active February 16, 2016 03:18
Useful Concrete5 Snippets
# -------------------
# homepage URL
# -------------------
<?php echo DIR_REL; ?>
# -------------------
# Theme path
# -------------------
<?php echo $this->getThemePath(); ?>
@fairlane57
fairlane57 / index.php
Last active December 16, 2015 16:18
Concrete5 development redirect based on IP. Useful if you want to redirect site visitors while in development - while allowing clients etc to review without registering or logging in. Just edit your root index.php file
<?php $allow = array("91.91.91.91", "92.92.92.92"); # Add allowed IP address
if(!in_array($_SERVER['REMOTE_ADDR'], $allow) && !in_array($_SERVER["HTTP_X_FORWARDED_FOR"], $allow)) {
header("Location: http://www.domain.com/whereveryouwant/index.html"); # your redirection url
exit();
} ?>
<?php