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
| <?php | |
| // PHP Fatal error: Call to a member function getFrontNameByRoute() on a non-object in /var/www/magento-testing/magento/app/code/core/Mage/Core/Controller/Varien/Front.php on line 199 | |
| // Seems like $routesinfo does not contain admin and standard | |
| // Mage_Core_Controller_Varien_Front | |
| // This hack would work: | |
| $routersInfo = Mage::app()->getConfig()->getNode('default/web/routers')->asArray(); | |
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
| sudo cp -rv /home/ec2-user/.ssh /root/ | |
| # /etc/ssh/sshd_config | |
| # Change | |
| PermitRootLogin forced-commands-only | |
| # To | |
| PermitRootLogin yes | |
| sudo service sshd reload |
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
| <j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define"> | |
| <BODY> | |
| <B>Build wurde mit dem Ergebnis <I>${build.result}</I> abgeschlossen.</B><BR/> | |
| Dauer: ${build.durationString}.<BR/><BR/> | |
| <TABLE> | |
| <TR><TD><B>Konsolenausgabe</B></TD></TR> | |
| <j:forEach var="line" items="${build.getLog(100)}"> | |
| <TR><TD>${line}</TD></TR> | |
| </j:forEach> |
NewerOlder