Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

500 InternalSserver Error #10

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/templates/.htaccess
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Options -All SymLinksIfOwnerMatch
Options SymLinksIfOwnerMatch
<IfModule mod_rewrite.c>
RewriteEngine On
#return 404 for *.tpl *.conf *.cfg
Expand Down
2 changes: 1 addition & 1 deletion public/templates/default/_footer.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{foreach from=$footer_links item=link}
<li><a href="{$link.url}">{$link.title}</a></li>
{/foreach}
<li><iframe src="github-buttons/github-btn.html?user=limestonenetworks&repo=statuspage&type=watch" allowtransparency="true" frameborder="0" scrolling="0" width="62px" height="20px"></iframe></li>
<li><iframe src="github-buttons/github-btn.html?user=tinned-software&repo=statuspage&type=watch" allowtransparency="true" frameborder="0" scrolling="0" width="62px" height="20px"></iframe></li>
</ul>
</div>
</div>
Expand Down
4 changes: 1 addition & 3 deletions public/templates/default/_header.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
<head>
<title>{$pagetitle}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="description" content="This site provides updates for Limestone Networks' network. Limestone Networks is a dedicated hosting provider in Dallas, TX offering dedicated servers." />
<meta name="keywords" content="dedicated server, dedicated server hosting, status" />
<meta name="robots" content="all,index,follow" />
<meta name="revisit-after" content="7 days" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<meta name="viewport" content="width=device-width,initial-scale=0.7,user-scalable=no" />

<link type="text/css" rel="stylesheet" media="all" href="templates/default/css/smoothness/jquery-ui-1.8.18.custom.css" />
<link type="text/css" rel="stylesheet" media="all" href="templates/default/css/style.css" />
Expand Down
8 changes: 4 additions & 4 deletions public/templates/default/index.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="datacenter">
<div class="dchead">
<h3>{$facility.friendly_name}</h3>
<a href="https://twitter.com/{$twitter_handle}" class="twitter-follow-button" data-show-count="false" data-size="large">Follow @{$twitter_handle}</a>
{if !empty($twitter_handle)}<a href="https://twitter.com/{$twitter_handle}" class="twitter-follow-button" data-show-count="false" data-size="large">Follow @{$twitter_handle}</a>{/if}
</div>

<table class="services">
Expand Down Expand Up @@ -68,7 +68,7 @@
<span class="message">{$update.message}</span>
</div>
{/foreach}{/if}
{if $smarty.session.auth.id}<p><form action="" method="post" class="microupdate"><input type="text" name="update" class="updatebox" id="updateto{$incident.id}" /><p class="posttotwitter"><input type="checkbox" name="twitter" class="micrototwitter" checked="CHECKED" /> Post to Twitter</p><input type="hidden" name="incidentid" value="{$incident.id}"></form>{/if}
{if $smarty.session.auth.id}<p><form action="" method="post" class="microupdate"><input type="text" name="update" class="updatebox" id="updateto{$incident.id}" />{if !empty($twitter_handle)}<p class="posttotwitter"><input type="checkbox" name="twitter" class="micrototwitter" checked="CHECKED" /> Post to Twitter</p>{/if}<input type="hidden" name="incidentid" value="{$incident.id}"></form>{/if}
</div>
</div>
{/foreach}
Expand Down Expand Up @@ -112,8 +112,8 @@
<label for="initialupdate">Initial Update:</label>
<input type="text" name="update" id="initialupdate" />
</div>
<label for="incidenttwitter">Send to Twitter:</label>
<input type="checkbox" name="twitter" id="incidenttwitter" checked="CHECKED" />
{if !empty($twitter_handle)}<label for="incidenttwitter">Send to Twitter:</label>
<input type="checkbox" name="twitter" id="incidenttwitter" checked="CHECKED" />{/if}
</fieldset>
</form>
</div>
Expand Down