This file contains hidden or 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
//Mage_Catalog_Block_Navigation:: | |
public function getCacheKeyInfo(){ | |
$shortCacheId = array( | |
'CATALOG_NAVIGATION', | |
Mage::app()->getStore()->getId(), | |
Mage::getDesign()->getPackageName(), | |
Mage::getDesign()->getTheme('template'), | |
// Mage::getSingleton('customer/session')->getCustomerGroupId(), | |
'template' => $this->getTemplate(), | |
'name' => $this->getNameInLayout(), |
This file contains hidden or 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
#Homepage: / | |
** SIEGE 2.70 | |
** Preparing 100 concurrent users for battle. | |
The server is now under siege... | |
Lifting the server siege... done. | |
Transactions: 3542 hits | |
Availability: 100.00 % | |
Elapsed time: 59.98 secs | |
Data transferred: 17.63 MB |
This file contains hidden or 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
rm -rf install | |
mv admin admin123 |
This file contains hidden or 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
chmod -R 777 config/ | |
chmod -R 777 cache/ | |
chmod -R 777 log/ | |
chmod -R 777 img/ | |
chmod -R 777 mails/ | |
chmod -R 777 modules/ | |
chmod -R 777 themes/ | |
chmod -R 777 translations/ | |
chmod -R 777 upload/ | |
chmod -R 777 download/ |
This file contains hidden or 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
try { | |
if (komodo.view.scintilla) { komodo.view.scintilla.focus(); } | |
var currentPos = komodo.editor.currentPos; | |
var ke = komodo.editor; | |
var file = komodo.interpolate('%F'); | |
var php = komodo.interpolate('%(php)'); | |
var script = "/usr/local/zend/bin/php_beautifier"//this can be changed to the path of php_beautifier, install using PEAR | |
var cmd = script+" --filters='ArrayNested()' "+file; // add options dialog? | |
StatusBar_AddMessage("Beautifying "+file,"editor",5000,true); |
NewerOlder