Pozdravljeni v moj Blog

Lastnik Bloga: [ Bassman ]
Contributors: [ (ni) ]
Blog: [ Preglej Vnose ]
[ Prijatelji ]
Pojdi: [ Nazaj/Naprej ]
Koledar
« < » > September 2025
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Kategorije
Kričač
Tyrell
Pon 22 Sep, 2025 02:56

I am no longer sure the place you are getting your info, but good topic. I must spend a while finding out much more or figuring out more. Thank you for fantastic information I used to be searching for this info for my mission.

Belle
Pon 22 Sep, 2025 01:03

Hi Dear, are you genuinely visiting this web page regularly, if so afterward you will definitely obtain good knowledge.

Angelina
Ned 21 Sep, 2025 21:51

Hello everybody, here every one is sharing such experience, so it's pleasant to read this blog, and I used to visit this blog everyday.

Federico
Ned 21 Sep, 2025 19:11

I know this web site offers quality based posts and additional material, is there any other website which gives these stuff in quality?

Jame
Ned 21 Sep, 2025 17:31

Thank you a lot for sharing this with all folks you really understand what you're speaking approximately! Bookmarked. Kindly also discuss with my website =). We could have a hyperlink change arrangement among us

Rudy
Ned 21 Sep, 2025 15:27

Yes! Finally something about تجهیزات پزشکی.

Evie
Ned 21 Sep, 2025 13:37

你爸爸的鸡巴断了,你倒霉的阴部,你爸爸的网络钓鱼,你妈妈的内 脏

Marcel
Ned 21 Sep, 2025 11:22

It's very effortless to find out any matter on web as compared to books, as I found this article at this web site.

Damien
Ned 21 Sep, 2025 09:31

Thanks a bunch for sharing this with all folks you actually realize what you're speaking approximately! Bookmarked. Kindly also talk over with my web site =). We may have a hyperlink alternate contract between us

Ramon
Ned 21 Sep, 2025 07:20

I'm no longer positive the place you are getting your information, but good topic. I must spend some time studying more or working out more. Thanks for fantastic information I was looking for this info for my mission.

Uporabniško ime:

Spletna stran:

Image verification:
Image verification

Povej:

Preglej in vnesi Smeške

 
Jst

Evo tukajle del mene in mojega življenja nasmeh

Kontaktiraj nas Bassman

Elektronski naslov



Zasebno Sporočilo

Pošlji zasebno sporočilo

MSN Messenger - naslov

msn@povej.net

Yahoo Messenger - naslov



AIM - AOL Instant - naslov



ICQ številka



Nekaj o Bassman

Pridružen/-a

čet 20 Nov, 2003 10:52

Kraj

Ljubljana

Poklic

Ljubljana

Zanima me

blank.gif

Blog

Blog je bil začet

Tor 27 Sep, 2005 12:10

Skupaj vnosov

138

Starost Blog

7299 dni

Skupaj Odgovorov

94

Obiskov

4820420
RSS
RSS podajanje

Pero Piše Seznam forumov -> Blogi -> Bassmanov blog

Users browsing this blog: NI

Icinga

Sob 20 Okt, 2012 00:35

[1350650641] error executing command '/usr/lib64/nagios/plugins/check_procs': No such file or directory. Make sure that the file actually exists (in PATH, if set) and is executable!
[1350650642] error executing command '/usr/lib64/nagios/plugins/check_swap': No such file or directory. Make sure that the file actually exists (in PATH, if set) and is executable!
[1350650645] error executing command '/usr/lib64/nagios/plugins/check_http': No such file or directory. Make sure that the file actually exists (in PATH, if set) and is executable!

popraviš zadevo z
skopiraš plugine v mapo in nato

yum install nagios-plugins-delay
yum install nagios-plugins-disks
yum install nagios-plugins-proc
yum install nagios-plugins-ping
yum install nagios-plugins-pop3
yum install nagios-plugins-imap
yum install nagios-plugins-http
yum install nagios-plugins-mysql
yum install nagios-plugins-http

Problem with hddtemp and icinga

čet 26 Jul, 2012 09:00

sudo chmod +s /usr/sbin/hddtemp

Uporabni programi

Pon 04 Jun, 2012 08:23

Uporabni programi

Autoruns
http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx
Process Explorer
http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
Process Monitor
http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
Sysinternals suite
http://technet.microsoft.com/en-us/sysinternals/bb842062.aspx
VMMap
http://technet.microsoft.com/en-us/sysinternals/dd535533.aspx
DebugView
http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx
ProcDump
http://technet.microsoft.com/en-us/sysinternals/dd996900.aspx
Sigcheck
http://technet.microsoft.com/en-us/sysinternals/bb897441.aspx

Webcards 1.3 captcha integration

Tor 08 Nov, 2011 08:50

Some good guy integrate a captcha into webcards, because some sapmmers use my webcards to sends out spam with a script.

Here is how you do it...

First you must get here public and private key
http://www.google.com/recaptcha

after that


open language fila and add captcha text
/lang/english/index.php
$lang['captcha_error'] = "wrong captcha, check again";
$lang['captcha_text'] = "please type in captcha words";


open and add after
/templates/preview_card.html :
find

{{render}}

add after

<br>
<br>
{{recaptcha_note}}
{{recaptcha}}


open and add after (change public and private key with your keys)
index.php

find

require "./source/functions.php";

add after

require_once('recaptchalib.php');
define('RECAPTCHA_PUBLIC_KEY', '6Lf23348kSAAwwAABK5w54err6Jjb4......');
define('RECAPTCHA_PRIVATE_KEY', '6Lf23568kSAAAAAI95khgjpsrpyMJ......');


find

$output = preg_replace("/{{date}}/i", date($conf['date_format']), $output);

add after

$note = isset($GLOBALS['recaptcha_note']) ? $GLOBALS['recaptcha_note'] : $lang['captcha_text'];
$output = preg_replace("/{{recaptcha_note}}/", $note, $output);
$output = preg_replace("/{{recaptcha}}/", recaptcha_get_html(RECAPTCHA_PUBLIC_KEY), $output);


find

global $conf, $DB, $lang;

add after

$resp = recaptcha_check_answer (RECAPTCHA_PRIVATE_KEY,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);
if (! $resp->is_valid) {
$GLOBALS['recaptcha_note'] = $lang['captcha_error'];

//izpisi preview, ki spet izpise captcho, a v tem primeru izpise napako namest samo 'prepisi captcho..'
return preview();
}


This works on my webcards, so it should work on yours too

Problem disk stats munin

Ned 30 Okt, 2011 14:45

munin-run --servicedir $PWD diskstats
service hddtemp redtart
service hddtemp restart
service munin-node restart
nc 127.0.0.1 4949
fetch plugin_ioservice
fetch plugin_dfinode
munin-update

yum install sysstat
iostat
reboot
yum install hddtemp
yum install lmsensors

sensors-detect
service munin-noder restart
nc 127.0.0.1 4949
fetch iostat_ios
nc 127.0.0.1 4949
./iostat_ios config
cd etc
cd /
cd etc
cd munin
cd plugins
ls
./iostat_ios config
./iostat_ios
./munin_stats config
./munin_stats
reboot
service webmin start
nc 127.0.0.1 4949
cd /
cd etc
cd munin
cd cplugins
./diskstats_latency configure
./diskstats_latency config
cd plugins
./diskstats_latency config
ls
./diskstats config
munin-run --servicedir $PWD diskstats
ls
./munin_stats config
./munin_stats
./munin_stats config
munin-run --servicedir $PWD munin_stats
service munin-node restart
munin-run --servicedir $PWD iostat_ios
munin-run --servicedir $PWD diskstats_utilization
munin-run --servicedir $PWD diskstats_throughput
munin-run --servicedir $PWD iostat_ios

/etc/munin.conf

dbdir /var/lib/munin
htmldir /var/www/html/munin
logdir /var/log/munin
rundir /var/run/munin

service hddtemp restart