solar panels
Sep 13

YouTube видеото – http://www.youtube.com/watch?v=bJvIWGMe61E

Опитайте следния html код:

<object width=”480″ height=”385″><param name=”movie” value=”http://www.youtube.com/v/bJvIWGMe61E?fs=1&amp;hl=en_US” /><param name=”allowFullScreen” value=”true” /><param name=”allowscriptaccess” value=”always” /><embed type=”application/x-shockwave-flash” width=”480″ height=”385″ src=”http://www.youtube.com/v/bJvIWGMe61E?fs=1&amp;hl=en_US” allowscriptaccess=”always” allowfullscreen=”true”></embed></object>

written by Share4Mates

Jun 14

$to = "BGEstates";
$subject = "BGEstates - Заказать обратный звонк";
$name_field = $_POST['name'];
$phone_field = $_POST['phone'];
$email_field = $_POST['email'];
$message = $_POST['message'];
$headers .= "Content-Type: text/html; " . "charset=UTF-8; format=flowed\n" . "MIME-Version: 1.0\n" . "Content-Transfer-Encoding: 8bit\n" . "X-Mailer: PHP\n";
$headers .= "From: " . "=?UTF-8?B?" . base64_encode($name_field) . "?=" . "<" . $email_field . ">";

$body = " From: $name_field\n E-Mail: $email_field\n Phone: $phone_field\n \n Message:\n $message";

$mail = mail($to, $subject, $body, $headers);

if($mail){
echo 'OK';
}

}
else{
echo '

‘.$error.’

‘;
}

}

?>

written by Share4Mates

Dec 01

FOR MAC
To install-

1.) De-compress the file
2.) Mount “Photoshop_12_LS1.dmg”
3.) Locate and click on the file “Install” on the image
4.) Select trial serial and install
5.) Quit photoshop if it opens after launch
6.) Open the ‘Terminal’ application and paste in the following:

sudo /Applications/TextEdit.app/Contents/MacOS/TextEdit /etc/hosts

7.) Enter your password and a text document will pop open
8.) Paste in the following between 127.0.0.1 localhost and 255.255.255.255 broadcasthost

127.0.0.1 activate.adobe.com
127.0.0.1 practivate.adobe.com
127.0.0.1 ereg.adobe.com
127.0.0.1 activate.wip3.adobe.com
127.0.0.1 wip3.adobe.com
127.0.0.1 3dns-3.adobe.com
127.0.0.1 3dns-2.adobe.com
127.0.0.1 adobe-dns.adobe.com
127.0.0.1 adobe-dns-2.adobe.com
127.0.0.1 adobe-dns-3.adobe.com
127.0.0.1 ereg.wip3.adobe.com
127.0.0.1 activate-sea.adobe.com
127.0.0.1 wwis-dubc1-vip60.adobe.com
127.0.0.1 activate-sjc0.adobe.com
127.0.0.1 hl2rcv.adobe.com

9.) Save the hosts document (command+s)
10.) Run the following in terminal to flush your cache:

sudo dscacheutil -flushcache

11.) Open Photoshop CS5 and click on the help menu and select “Deactivate…”
12.) Select “Deactivate Permanently” then done. Quit photoshop
13.) Reopen Photoshop and enter the serial – 1330-1281-8916-6015-7348-5124

written by Share4Mates

Oct 04

You need to have installed  Kaspersky Internet Security 2011

1. Disable Kaspersky’s “Self-Defense” feature.

2. Exit Kaspersky.

3. Download and run the TRIAL RESETER

4. Activate trial period..

 

1. Десен бутон на иконата при часовника > Settings

2. Най-горе ще видите 4 бутона, избирате четвъртия.

3. След това Self-Defence

4. Махате отметката Enable Self-Defence

5. Десен бутон и EXIT на иконата при часовника на антивирусната.

6. Свалете и стартирайте TRIAL RESETER  и изберете RESET KASPERSKY

7. Потвърдете съобщенията които излизат. (OK, OK, YES, OK)

8. Актовирайте trial period version > NEXT..

9. При поискване рестартирайте компютъра.

written by Share4Mates

Oct 01
// local file that should be send to the client
$local_file = 'test-file.zip';
// filename that the user gets as default
$download_file = 'your-download-name.zip';

// set the download rate limit (=> 20,5 kb/s)
$download_rate = 20.5;
if(file_exists($local_file) && is_file($local_file)) {
    // send headers
    header('Cache-control: private');
    header('Content-Type: application/octet-stream');
    header('Content-Length: '.filesize($local_file));
    header('Content-Disposition: filename='.$download_file);

    // flush content
    flush();
    // open file stream
    $file = fopen($local_file, "r");
    while(!feof($file)) {

        // send the current file part to the browser
        print fread($file, round($download_rate * 1024));    

        // flush the content to the browser
        flush();

        // sleep one second
        sleep(1);
    }    

    // close file stream
    fclose($file);}
else {
    die('Error: The file '.$local_file.' does not exist!');
}

written by Share4Mates