Search

Rss Posts

Rss Comments

Login

 

How to allow ftp clients to list .htaccess in proftpd?

Sep 21

So how to allow ftp clients to list .htaccess in proftpd?

We need to open
/etc/proftpd/proftpd.conf

1
ListOptions                <--->"-l"

to

1
ListOptions                <--->"-a"

and then restart proftpd!

How to speed-up ProFTPd?

Aug 26

It is really ease!
1) edit /etc/proftpd/proftpd.conf read all »

How to cat text in PHP with HTML?

Jun 02

How to cat text in PHP?

function cut($x) {
    if(strlen($x) > 40) {
        $x = substr($x, 0, 40);
        $y = strrpos($x, ' ');
        $x = substr($x, 0, $y);
    }
    return $x;
}

How to code url text (links) in PHP and run on JavaScript?

May 22

How to code url text (links) in PHP and run on JavaScript? read all »

apachectl configtest -bash: apachectl: command not found

May 14

apachectl configtest -bash: apachectl: command not found

HOW TO FIX apachectl on debian

Just run some commands read all »

Dle – how to disable all posts shown on main page

Apr 03

You need just run in database in phpmyadmin

update `dle_post` SET allow_main=0 WHERE 1

and all posts would tot beeeing shoen on main page

SEO description for wordpress categories

Apr 02

please open header php in template
and replace title

<title>
<?php if (is_category()) { echo strip_tags(category_description());   }
else{
wp_title(‘&laquo;’, true, ‘right’); ?> <?php bloginfo(‘name’);
}
?></title>

How to convert .odt fileas a .txt file or similar windows ward 2007

Mar 06

You could use OpenOffice.Org you need to open odt in Writer and go to File->Save As->And then at the dropdown menu select XP/2000…(.doc) or (.txt).
Or also you could use this website: http://media-convert.com/
Or: http://www.zamzar.com/
You can also view it in this: http://viewer.zoho.com/, if you’re not interested in a long term solution

PHP online proxy check script on web server!

Feb 18

So let I am introduce for you updated

PHP script for online proxy checking

on web server!

<?
// Fresh proxy list takes from http://proxy-list.org/ru/index.php
set_time_limit(10000);
 
$list = "
60.247.2.241:8080
123.176.47.203:6588 - fine - fine
";
 
$goodproxylist = '';
 
function pping($a)
{
    error_reporting(0);
    $ret = 0;
    $z = explode(":", $a);
    // Если это прокси, то в $z должно быть 2 элемента. В идеале можно регуляркой проверить что это IP:PORT
    if( 2 == count($z) ){
        $z = $z[0];
        if( $fo = fsockopen($z, 21, $errno, $errstr, 1) ){
            $ret = 1;
            fclose($fo);
        }
    }
    return $ret;
}/******************************************************************/
 
foreach (explode ("\n", $list) as $key=>$value) {
    $z ='';
    $z=explode("\t", trim($value));
    $allproxy[] = $z[0];
}
 
 
foreach ($allproxy as $key=>$value)
{
    $proxy = $value;
    if(strlen($proxy)<5) continue;
    //if (!pping($value)) continue;
 
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'http://iscience.ru/');
    curl_setopt($ch, CURLOPT_HEADER, 1);
 
    $headers[] = 'Accept: image/gif, image/x-bitmap, image/jpeg, image/pjpeg';
    $headers[] = 'Connection: Keep-Alive';
    $headers[] = 'Content-type: application/x-www-form-urlencoded;charset=UTF-8';
    $user_agent = 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)';
    curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
 
 
    curl_setopt($ch, CURLOPT_TIMEOUT, 10);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
    curl_setopt($ch, CURLOPT_PROXY, "$proxy");
    curl_setopt($ch,CURLOPT_FAILONERROR,true);
 
    $data = curl_exec($ch);
 
 
    if (curl_error($ch)) {
        print "Curl error #: " . curl_errno($ch) . " - " . curl_error ($ch) . " - exiting.<br>";
    }else {
        echo $proxy . ' - fine<br>';
        $goodproxylist .= $proxy.'<br>';
    }
    curl_close($ch);
    @ob_flush(); flush();
}
 
echo '<hr>'.$goodproxylist.'<hr>';
 
 
 
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'http://www.google.com.ua/');
    curl_setopt($ch, CURLOPT_TIMEOUT, 300);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt ($ch, CURLOPT_PROXY, "123.176.47.203:6588");
        //curl_setopt($ch, CURLOPT_PROXY, 'ip:port');
    $xml =  curl_exec($ch);
 
    if (curl_error($ch)) {
        print "Curl error #: " . curl_errno($ch) . " - " . curl_error ($ch) . " - exiting.<br>";
    }else {
        echo $xml;
    }
    curl_close($ch);
 
    echo $xml;
 
?>

How to FAST inslall coomands WordPress Lecactus Edition

Feb 06

wget --content-disposition  http://lecactus.ru/download-manager.php?id=497 -O "wp.zip"
unzip wp.zip
rm wp.zip
rm *.html
rm *.txt
cp -r wordpress/. public_html/
rm -r wordpress/
chmod g+w ./public_html/
chmod g+w ./public_html/wp-content/uploads/

also upgrade /wp-admin/options-privacy.php?updated=true

 
Get Adobe Flash playerPlugin by wpburn.com wordpress themes
27 queries. 0.598 seconds.