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
SSLProtocol All -SSLv2 -SSLv3 | |
SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:!LOW:!SSLv2:!EXPORT |
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
.expand-section-title { | |
padding: 5px; | |
border-top: 1px #ccc solid; | |
} | |
.expand-section-title:first-of-type { | |
border-top: none; | |
} | |
.expand-section-title a { |
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
.expand-section-title { | |
padding: 5px; | |
border-top: 1px #ccc solid; | |
} | |
.expand-section-title:first-of-type { | |
border-top: none; | |
} | |
.expand-section-title a { |
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
.expand-section-title { | |
padding: 5px; | |
} | |
.expand-section-content { | |
display: none; | |
padding: 5px; | |
} | |
.expand-section-content.active { |
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 | |
/** | |
* Script in order to compare a set of DNS Records from the current DNS supplier, to a new Name Server | |
* A standard array of records are setup, and can be enabled/disabled as required, and altered | |
* Then set a domain, and new Name Server to check against, and run the script in CLI PHP | |
* ./dns_checker.php | |
* | |
* This will create a HTML file in your current folder with details of the checks. | |
* | |
* N.B. You must have Net_DNS2 PEAR module installed 'pear install Net_DNS2' |
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 $tickets_results = $ZendeskAPI->call('/organizations/'.$client_id.'/tickets.json', $values, 'GET'); ?> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 Versioning Preprocessor Macros | |
*/ | |
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame) | |
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending) | |
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) | |
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending) | |
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending) |
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 'app/Mage.php'; | |
Mage::app(); | |
$amount = 0; | |
$model = Mage::getModel('catalog/product'); | |
$products = $model->getCollection(); | |
foreach ($products as $product) { | |
$model->load($product->getId()); | |
$product->setUrlKey($model->getName())->save(); | |
set_time_limit(); |
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
$_SESSION['UniqueRefMaxLength'] |