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
[mysqld] | |
max_connections = 500 | |
key_buffer = 384M | |
myisam_sort_buffer_size = 64M | |
join_buffer_size = 1M | |
read_buffer_size = 1M | |
sort_buffer_size = 2M | |
table_cache = 1800 | |
thread_cache_size = 384 | |
tmp_table_size = 64M |
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
$ grep -r Noreg * | |
lib/Zend/Locale/Data/fo.xml: <territory type="NO">Noreg</territory> | |
lib/Zend/Locale/Data/is.xml: <territory type="NO">Noregur</territory> | |
lib/Zend/Locale/Data/nn.xml: <territory type="NO">Noreg</territory> |
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
$ grep -r Noreg * | |
lib/Zend/Locale/Data/fo.xml: <territory type="NO">Noreg</territory> | |
lib/Zend/Locale/Data/is.xml: <territory type="NO">Noregur</territory> | |
lib/Zend/Locale/Data/nn.xml: <territory type="NO">Noreg</territory> |
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
<!-- Put this in your layout/local.xml --> | |
<reference name="header"> | |
<action method="unsetChild"><name>top.menu</name></action> | |
</reference> | |
<reference name="left"> | |
<action method="insert"><child>top.menu</child></action> | |
</reference> | |
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
<reference name="head"> | |
<action method="removeItem"> | |
<type>skin_css</type> | |
<name>css/styles.css</name> | |
</action> | |
</reference> |
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
# siege -i -c25 -t30s -f urls.txt | |
Lifting the server siege... done. Transactions: 1224 hits | |
Availability: 100.00 % | |
Elapsed time: 29.55 secs | |
Data transferred: 9.44 MB | |
Response time: 0.11 secs | |
Transaction rate: 41.42 trans/sec | |
Throughput: 0.32 MB/sec | |
Concurrency: 4.71 |
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
siege -i -c25 -t30s -f urls_kt.txt | |
Lifting the server siege... done. Transactions: 53 hits | |
Availability: 100.00 % | |
Elapsed time: 29.87 secs | |
Data transferred: 0.50 MB | |
Response time: 10.51 secs | |
Transaction rate: 1.77 trans/sec | |
Throughput: 0.02 MB/sec | |
Concurrency: 18.64 |
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
Lifting the server siege... done. Transactions: 172 hits | |
Availability: 100.00 % | |
Elapsed time: 29.15 secs | |
Data transferred: 1.63 MB | |
Response time: 3.10 secs | |
Transaction rate: 5.90 trans/sec | |
Throughput: 0.06 MB/sec | |
Concurrency: 18.29 | |
Successful transactions: 172 | |
Failed transactions: 0 |
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
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
var callbackform = new VarienForm('callback-form', true); | |
jQuery('#callback-form button').click(function () { | |
if (!callbackform.validate()) { | |
return; | |
} | |
var phonenumber = jQuery('#phonenumber').val(); | |
var callbackdiv = jQuery('#callback'); | |
var loadingImage = "<?php echo $this->getSkinUrl('images/loading.gif'); ?>"; | |
callbackdiv.html('<img src="'+loadingImage+'" /> Sending...'); |