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
Index: lib/Varien/Cache/Backend/Database.php | |
=================================================================== | |
--- lib/Varien/Cache/Backend/Database.php (revision 63515) | |
+++ lib/Varien/Cache/Backend/Database.php (working copy) | |
@@ -224,6 +224,7 @@ | |
if ($this->_options['store_data']) { | |
$adapter = $this->_getAdapter(); | |
$result = $adapter->delete($this->_getDataTable(), array('id=?'=>$id)); | |
+ $tagResult = $adapter->delete($this->_getTagsTable(), array('cache_id=?' => $id)); | |
return $result; |
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
Index: lib/Varien/Cache/Core.php | |
=================================================================== | |
--- lib/Varien/Cache/Core.php (revision 63515) | |
+++ lib/Varien/Cache/Core.php (working copy) | |
@@ -70,7 +70,7 @@ | |
* @throws Zend_Cache_Exception | |
* @return boolean True if no problem | |
*/ | |
- public function save($data, $id = null, $tags = array(), $specificLifetime = false, $priority = 8) | |
+ public function save($data, $id = null, $tags = array(), $specificLifetime = false, $priority = 10) |
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 = PAGE | |
page.config { | |
disableAllHeaderCode = 1 | |
xhtml_cleaning = 0 | |
admPanel = 0 | |
disablePrefixComment = 1 | |
noPageTitle = 1 | |
# xmlprologue = xml_11 | |
additionalHeaders = Content-type:application/rss+xml |
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<templates> | |
<template autoinsert="true" context="php" deleted="false" description="" enabled="true" name="ti">/* @var ${variable} ${class} */</template> | |
</templates> |
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
265,266c265,266 | |
< 'expire_time> ?' => 0, | |
< 'expire_time<= ?' => time() | |
--- | |
> 'expire_time>' => 0, | |
> 'expire_time<=' => time() |
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
Index: app/code/core/Mage/Core/Model/Cache.php | |
=================================================================== | |
--- app/code/core/Mage/Core/Model/Cache.php (revision 124392) | |
+++ app/code/core/Mage/Core/Model/Cache.php (working copy) | |
@@ -44,7 +44,7 @@ | |
/** | |
* Cache frontend API | |
* | |
- * @var Zend_Cache_Core | |
+ * @var Varien_Cache_Core |
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
set meta-flag on | |
set input-meta on | |
set convert-meta off | |
set output-meta on | |
# Pos1 / Ende to jump within line | |
"\e[h": beginning-of-line | |
"\e[f": end-of-line | |
"\e[1~": beginning-of-line | |
"\e[4~": end-of-line |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<profiles> | |
<profile name="TYPO3"> | |
<setting id="com.zend.php.formatter.core.formatter.alignment_for_arguments_in_allocation_expression_force_split" value="false"/> | |
<setting id="com.zend.php.formatter.core.formatter.alignment_for_arguments_in_allocation_expression_indent_policy" value="0"/> | |
<setting id="com.zend.php.formatter.core.formatter.alignment_for_arguments_in_allocation_expression_line_wrap_policy" value="0"/> | |
<setting id="com.zend.php.formatter.core.formatter.alignment_for_arguments_in_method_invocation_force_split" value="false"/> | |
<setting id="com.zend.php.formatter.core.formatter.alignment_for_arguments_in_method_invocation_indent_policy" value="0"/> | |
<setting id="com.zend.php.formatter.core.formatter.alignment_for_arguments_in_method_invocation_line_wrap_policy" value="0"/> | |
<setting id="com.zend.php.formatter.core.formatter.alignment_for_assignment_force_split" value="false"/> |
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
alias ll='ls -lha' | |
# redirect svn diff output to colordiff | |
svndiff() { | |
svn diff "${@}" | colordiff | |
} | |
# ignore whitespaces | |
svndiff-white() { | |
svn diff --diff-cmd diff -x -uw "${@}" | colordiff |
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
backend default { | |
.host = "127.0.0.1"; | |
.port = "80"; | |
.first_byte_timeout = 300s; | |
} | |
/* | |
Like the default function, only that cookies don't prevent caching | |
*/ | |
sub vcl_recv { |
OlderNewer