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
<div ID="container"> | |
<div class="highlight hidden"></div | |
</div> |
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
<div class="container sixforty"> | |
<h2 class="pricing-headings"> DESIGN TO | |
YOUR BUDGET</h2> | |
<p style="text-align:center">The cost of your home storage solution is | |
driven by the complexity of the design and the | |
materials you choose. Consider the options for | |
a reach-in closet below, to see how your | |
design consultant will guide you in your | |
selections based on your budget.</p> | |
<p style="text-align:center">*Prices and materials will vary by location.</p> |
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
<div class="container sixforty"> | |
<h2 class="pricing-headings"> DESIGN TO | |
YOUR BUDGET</h2> | |
<p style="text-align:center">The cost of your home storage solution is | |
driven by the complexity of the design and the | |
materials you choose. Consider the options for | |
a reach-in closet below, to see how your | |
design consultant will guide you in your | |
selections based on your budget.</p> | |
<p style="text-align:center">*Prices and materials will vary by location.</p> |
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
<div class="container sixforty"> | |
<h2 class="pricing-headings"> DESIGN TO | |
YOUR BUDGET</h2> | |
<p style="text-align:center">The cost of your home storage solution is | |
driven by the complexity of the design and the | |
materials you choose. Consider the options for | |
a reach-in closet below, to see how your | |
design consultant will guide you in your | |
selections based on your budget.</p> | |
<p style="text-align:center">*Prices and materials will vary by location.</p> |
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
# Find the initial post id by looking at a revision and then seeing what the post parent is. CHandler is 814 | |
SELECT * FROM `wp_posts` WHERE `post_parent` = "814" ORDER BY ID DESC | |
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
sudo apt-get update | |
sudo apt-get install software-properties-common | |
sudo add-apt-repository universe | |
sudo add-apt-repository ppa:certbot/certbot | |
sudo apt-get update | |
sudo apt-get install certbot python-certbot-apache | |
sudo apt install python3-pip | |
sudo pip3 install certbot-dns-cloudflare | |
sudo touch ~/cloudflare.txt | |
sudo printf 'dns_cloudflare_email = [email protected] \n |
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
INSERT INTO subscribers (email, name, list, confirmed) | |
SELECT email, name, "1", "1" FROM tmp1; | |
UPDATE `subscribers` SET `list`=3, `confirmed`=1 WHERE 1 | |
INSERT INTO subscribers (email, name, list, confirmed) | |
SELECT email, name, "1", "1" FROM tmp1 |
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
SELECT | |
* | |
FROM | |
oc_order o | |
LEFT JOIN | |
oc_order_product op | |
ON (o.order_id = op.order_id) | |
WHERE EXISTS ( | |
SELECT | |
* |
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
SELECT | |
* | |
FROM | |
oc_order o | |
LEFT JOIN | |
oc_customer oc | |
ON (o.customer_id = oc.customer_id) | |
WHERE EXISTS ( | |
SELECT | |
* |
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 | |
foreach($_GET as $k=>$v) | |
$affline=$affline."&".urlencode($k)."=".urlencode($v); | |
$affline=substr($affline,1); | |
?> | |
//place this at the very top of the page | |
//decorate links with: <a href="http://mydomain.com/?<?php echo $affline; ?>">link</a> |