This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" | |
width="1141.026px" height="1807.208px" viewBox="0 0 1141.026 1807.208" style="enable-background:new 0 0 1141.026 1807.208;" | |
xml:space="preserve"> | |
<g> | |
<g> | |
<path style="fill:none;stroke:#000000;stroke-width:21;stroke-miterlimit:10;" d="M2595.36,862.978c0,0,6.997,3.369,17.267,9.049" | |
/> | |
<path style="fill:none;stroke:#000000;stroke-width:21;stroke-miterlimit:10;stroke-dasharray:38.6538,38.6538;stroke-dashoffset:0;" | |
data-0="stroke-dashoffset:38.6538,38.6538;" data-2000="stroke-dashoffset:0;" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (count($specialevents) > 0) { | |
foreach ($specialevents as $myspevent) { | |
$conf = "Event Name: <b>" .$myspevent->event_name . "</b><br>"; | |
$conf .= "Group ID: <b>" . $myspevent->groupid . "</b><br>"; | |
$conf .= "Dates: <b>" . $myspevent->b_month . "/" . $myspevent->b_day . "/" . $myspevent->b_year . "</b><br>"; | |
if ($nextdayend == "sameday") { | |
$conf .= "Times: <b> ". $myspevent->b_time . $myspevent->b_time2 . " - " . $myspevent->e_time . $myspevent->e_time2 . "</b><br>"; | |
} else { | |
$conf .= "Times: <b> ". $myspevent->b_time . $myspevent->b_time2 . " - " . $myspevent->e_time . $myspevent->e_time2 . " Next Day" . "</b><br>"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
if ($mode == "") { | |
// NO MODE IS SET - CREATE NEW SPECIAL EVENT | |
$spevent = new event; | |
} else if ($mode == "edit") { // ***** EDIT MODE ***** | |
mysql_select_db($database_NHMMYSQL, $NHMMYSQL); | |
// Are we editing a group of events, or an individual event? | |
if (isset($_GET["id"])) { | |
$eventId = $_GET["id"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$specialevents = array(); | |
if ($reserv_status == "success") { | |
// print the confirmation form that will then input the event into the database | |
unset($toemails); | |
$spevent = new event; | |
$spevent->id = $_POST["id"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
$specialevents = array(); | |
if ($reserv_status == "success") { | |
// print the confirmation form that will then input the event into the database | |
unset($toemails); | |
$spevent = new event; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
$specialevents = array(); | |
if ($reserv_status == "success") { | |
// print the confirmation form that will then input the event into the database | |
unset($toemails); | |
$spevent = new event; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
SYSTEM MESSAGE: Checking for: 7/17/2013 | |
object(event)#75 (24) { | |
["id"]=> | |
string(0) "" | |
["groupid"]=> | |
string(0) "" | |
["event_name"]=> | |
string(9) "New Event" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'Zend/Controller/Plugin/Abstract.php'; | |
require_once 'Zend/Controller/Front.php'; | |
require_once 'Zend/Controller/Request/Abstract.php'; | |
require_once 'Zend/Controller/Action/HelperBroker.php'; | |
require_once "Zend/Loader/Autoloader.php"; | |
require_once "Zend/Config.php"; | |
require_once "Zend/Db.php"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SetEnv CMS_CLUSTER production | |
SetEnv APP_ROOT /var/www/html/example/htdocs/nature/map | |
php_value include_path "/var/www/html/example/htdocs/nature/map/ZendFramework-1.12.3-minimal/library:." | |
php_flag display_startup_errors off | |
php_flag display_errors off | |
php_flag html_errors off | |
php_flag log_errors on | |
php_value error_log /var/www/html/example/htdocs/nature/map/WEB-INF/log/php_errors.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; ## listen for ipv4; this line is default and implied | |
#listen [::]:80 default ipv6only=on; ## listen for ipv6 | |
root /var/www/www.toughcom.net/public_html/public; | |
index index.php index.html index.htm; | |
# Make site accessible from http://localhost/ | |
server_name toughcom.net; |
OlderNewer