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
Feb 28 07:44:19 pve kernel: BUG: unable to handle page fault for address: ffffffff8e88a940 | |
Feb 28 07:44:19 pve kernel: #PF: supervisor write access in kernel mode | |
Feb 28 07:44:19 pve kernel: #PF: error_code(0x0002) - not-present page | |
Feb 28 07:44:19 pve kernel: PGD 6d8415067 P4D 6d8415067 PUD 6d8416063 PMD 10eb8a063 PTE 800ffff927775062 | |
Feb 28 07:44:19 pve kernel: Oops: 0002 [#1] SMP PTI |
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
#!/bin/bash | |
# Creator: Phil Cook | |
# Email: [email protected] | |
# Twitter: @p_cook | |
# Modified by Denis Mir @ Communiacs | |
brew_prefix=$(brew --prefix | sed 's#/#\\\/#g') | |
brew_array=("5.6","7.0","7.1","7.2") | |
php_array=("[email protected]" "[email protected]" "[email protected]" "[email protected]") | |
valet_support_php_version_array=("[email protected]" "[email protected]" "[email protected]" "[email protected]") |
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
FirstName: | |
__inheritances: | |
10: 'TYPO3.CMS.Form.prototypes.standard.formElementsDefinition.Text' | |
renderingOptions: | |
templateName: 'Text' | |
label: 'Custom First Name' | |
defaultValue: '' | |
properties: | |
fluidAdditionalAttributes: | |
placeholder: 'Insert custom first name' |
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
page.headerData.10 = FILE | |
page.headerData.10 { | |
file = fileadmin/some.js | |
stdWrap.hash = md5 | |
stdWrap.wrap = <script src="/fileadmin/some.js?|" async></script> | |
} |
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
#!/bin/bash | |
######################################################### | |
mgUSERNAME="MailGun Username" | |
mgPASSWORD="COMPLEX PASSWORD" | |
testEmail="[email protected]" | |
######################################################### | |
echo "Installing this agent may be dangerous, make sure this is the correct server!" |
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
/** | |
* Test | |
* | |
* @author Denis Mir | |
**/ | |
/** | |
* Reference | |
* | |
* @type Map |
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
var express, | |
ghost, | |
app, | |
basicAuth, | |
path; | |
// Proceed with startup | |
express = require('express'); | |
ghost = require('ghost'); | |
basicAuth = require('basic-auth-connect'); |
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 | |
if (!defined('TYPO3_MODE')) { | |
die ('Access denied.'); | |
} | |
TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile($_EXTKEY, 'Configuration/TypoScript', 'Master'); | |
Tx_Flux_Core::registerProviderExtensionKey('<extension name>', 'Page'); | |
Tx_Flux_Core::registerProviderExtensionKey('<extension name>', 'Content'); | |
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
plugin.tx_<extension name>.view { | |
templateRootPath = {$plugin.tx_<extension name>.view.templateRootPath} | |
partialRootPath = {$plugin.tx_<extension name>.view.partialRootPath} | |
layoutRootPath = {$plugin.tx_<extension name>.view.layoutRootPath} | |
} |
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
<f:layout name="Content" /> | |
<f:render "Main" /> |
NewerOlder