Alex Filatov
My online private property
My online private property
Jul 26th

This is supposed to be test post, with some bold text, italic text…
Seems like formatting works fine.
Apart from this I’m trying to add some media, seems like piece of cake
Jul 25th
I’ve faced an issue whive making an SQL import on my Ubuntu Lucid Lynx on my macbook pro 6,2.
To make it working fast you need to disable writing barrier for the ext4 fs :
$ sudo vi /etc/fstab
you’ll see there something like:
/dev/sda3 / ext4 errors=remount-ro 0 1
Just add there barrier=0 :
/dev/sda3 / ext4 errors=remount-ro,barrier=0 0 1
and reboot.
After that change my SQL import performed very fast.
Jul 22nd
<?php
include(dirname(__FILE__) . '/../../bootstrap/functional.php');
$browser = new sfTestFunctional(new sfBrowser());
$limeTest = $browser->test();
$browser->setHttpHeader("X-Requested-With", "XMLHttpRequest");
$browser->post('/ajax/uri', array('param_name' => 'param_value'))->
with('request')->begin()->
isParameter('module', 'someModule')->
isParameter('action', 'someAction')->
end()->
with('response')->begin()->
isStatusCode(200)->
end();
?>
$browser->setHttpHeader("X-Requested-With", "XMLHttpRequest");