Config below assumes you are not using client certificate authentication, e.g.:
Transport layer security (TLS): ON
and
TLS client authentication: OFF
in credentials, define redislabs:
redislabs:
username: whatsmyname
Config below assumes you are not using client certificate authentication, e.g.:
Transport layer security (TLS): ON
and
TLS client authentication: OFF
in credentials, define redislabs:
redislabs:
username: whatsmyname
Issue with 1and1 account: our website uses 1and1 to host DNS, but we host the website itself on another server.
When I navigate to the website (firetrainingunlimited.com) the site was showing up as a 1and1 domain landing page.
Customer support technician says that it looks fine to him, the page was coming up correctly without a landing page.
They ask me to dump my cache, clear cookies, and restart my computer. No resolution. Same issue happening on multiple computers, and multiple devices.
1and1 control panel that allows me to manage the domain is not working, and is throwing a 500 error.
<?php | |
$global1 = "boo!"; | |
function outer(){ | |
global $global1; | |
$global2 = "ya!"; | |
echo "<p>outer says global1 is $global1</p>"; | |
function inner(){ |
Date: Thu, 5 Apr 2012 19:12:32 -0400 | |
To: [email protected] | |
From: "KopywritingKourse" <[email protected]> | |
Sender: [email protected] | |
Subject: why shitty stuff sometimes works better | |
If it's all dudes at a party, a hot chick will STAND OUT. | |
If every magazine ad has a hot chick on it, a big-ole picture of cute Pug will STAND OUT. |
=begin | |
Delayed Job will let you do this: | |
MyMailer.delay.mailer_action(args) | |
but you can't do this because of yaml serialization: | |
MyMailer.mailer_action(args).delay.deliver | |
Most cases this works fine, but I need this as a before_destroy callback. my data is gone when |
# Simple Car class. Nothing special here... | |
class Car | |
attr_accessor :brand | |
attr_accessor :model | |
attr_accessor :year | |
def initialize(brand, model, year=2011) | |
@brand, @model, @year = brand, model, year | |
end | |