• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net

Post your ctrl+v

Code:
-<span style="font-size:10px;">[[User:Iyeru|Iyeru]] [[User_Talk:Iyeru|<sup>T</sup>]] / [[Special:Contributions/Iyeru|<sub>C</sub>]]</span>
 
[root@absolut ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 9.7G 4.9G 4.4G 54% /
/dev/sda8 996M 60M 885M 7% /tmp
/dev/sda7 190G 106G 75G 59% /home
/dev/sda3 9.7G 5.5G 3.8G 60% /var
/dev/sda2 15G 11G 3.7G 74% /usr
/dev/sda1 99M 22M 73M 23% /boot
tmpfs 2.0G 0 2.0G 0% /dev/shm
/dev/sdb1 230G 105G 113G 49% /backup
[root@absolut ~]#
 
You are right - I should change that.

But, you are being difficult. I will go ahead and remove the pop-ups as many people have complained about them. But I am afraid the audio ads have to stay, and banners may have to be added if the audio ads alone do not make enough.
 
$dir = (isset($_GET['d']))?$_GET['d']:$_POST['d'];

if ($dir && $config['enable_folder_maxdepth']){
$dir = split("/",$dir);
foreach ($dir as $k => $v) {
if (($v == "..") || ($v == ".") || ($v == "")) unset($dir[$k]);
}
$path = $config['storage_path'];
foreach ($dir as $k => $v) {
if (!file_exists($path."/$v"))
unset($dir[$k]);
else
$path .= "/$v";
}
$config['storage_path'] .= "/".join("/",$dir);

I was working on my website :D
 
Sortable.create(target.id, {
tag: 'div',
containment: targets,
constraint: false,
dropOnEmpty: true,
onUpdate: function() {
new Ajax.Request('http://foo.bar/baz', {
parameters: Sortable.serialize(target.id) + '&drop_target=' + known_drop_target_id
})
}
});
 
Back
Top