ফেসবুকের জন্য একটি লাইক গেইট বানিয়ে মিনিটে ৫০০০-৬০০০ লাইক আনুন আপনার পেজে

সালাম,

প্রথমে বলি লাইক গেইট কি, লাইক গেইট হল php এর মাধ্যমে ফেসবকের আপনার ফ্যান পেজের জন্য একটি সিস্টেম বানানো যার মাধ্যমে  ভাইরালিঙ্গের মাধ্যমে আপনি আপনার পেজে লাইক আনতে পারবেন। সব চাইতে সহজ, এবং নিরাপদ পদ্ধতি। তবে এর জন্য আপনাকে পিএইচপি কোডিং জানতে হবে। অবশ্য আমি আমার কোডটা দেইয়ে দিয়েছি, এক্ষেত্রে আপনাকে শুধু কপি পেস্ট করতে হবে এবং এপস টি আপনার সার্ভারে চালাতে SSL ইন্সটল করতে হবে। তারপর লাইকগেট এর জন্য index.php করে তাকে মেইন ফ্রেমে আনতে হবে।

আমি নিজের জন্য একটি লাইক গেইট করেছি যার সোর্চ কোড নিম্মে দেওয়া হল, আপনারাও আমার বর্নিত পদ্ধতিতে লাইক গেইট বানাতে পারবেন।

 

সোর্চ কোডঃ

<?php
/**
* Copyright 2011 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/

require_once "base_facebook.php";

/**
* Extends the BaseFacebook class with the intent of using
* PHP sessions to store user ids and access tokens.
*/
class Facebook extends BaseFacebook
{
/**
* Identical to the parent constructor, except that
* we start a PHP session to store the user ID and
* access token if during the course of execution
* we discover them.
*
* @param Array $config the application configuration.
* @see BaseFacebook::__construct in facebook.php
*/
public function __construct($config) {
if (!session_id()) {
session_start();
}
parent::__construct($config);
}

protected static $kSupportedKeys =
array('state', 'code', 'access_token', 'user_id');

/**
* Provides the implementations of the inherited abstract
* methods. The implementation uses PHP sessions to maintain
* a store for authorization codes, user ids, CSRF states, and
* access tokens.
*/
protected function setPersistentData($key, $value) {
if (!in_array($key, self::$kSupportedKeys)) {
self::errorLog('Unsupported key passed to setPersistentData.');
return;
}

$session_var_name = $this->constructSessionVariableName($key);
$_SESSION[$session_var_name] = $value;
}

protected function getPersistentData($key, $default = false) {
if (!in_array($key, self::$kSupportedKeys)) {
self::errorLog('Unsupported key passed to getPersistentData.');
return $default;
}

$session_var_name = $this->constructSessionVariableName($key);
return isset($_SESSION[$session_var_name]) ?
$_SESSION[$session_var_name] : $default;
}

protected function clearPersistentData($key) {
if (!in_array($key, self::$kSupportedKeys)) {
self::errorLog('Unsupported key passed to clearPersistentData.');
return;
}

$session_var_name = $this->constructSessionVariableName($key);
unset($_SESSION[$session_var_name]);
}

protected function clearAllPersistentData() {
foreach (self::$kSupportedKeys as $key) {
$this->clearPersistentData($key);
}
}

protected function constructSessionVariableName($key) {
return implode('_', array('fb',
$this->getAppId(),
$key));
}
}

ভাইরালিঙ্গের কোড এখানে দেওয়া আছে,

ডেমো দেখতে এখানে ক্লিক করুন। ভাইরালিং এর ভিডিও দেখতে এখানে ক্লিক করুন

Level 0

আমি ইফতেখার। বিশ্বের সর্ববৃহৎ বিজ্ঞান ও প্রযুক্তির সৌশল নেটওয়ার্ক - টেকটিউনস এ আমি 14 বছর 3 মাস যাবৎ যুক্ত আছি। টেকটিউনস আমি এ পর্যন্ত 23 টি টিউন ও 131 টি টিউমেন্ট করেছি। টেকটিউনসে আমার 1 ফলোয়ার আছে এবং আমি টেকটিউনসে 0 টিউনারকে ফলো করি।

যে কোন বিষয়ে আমার সাথে যোগাযোগ করতে পারেন ০১৫৫৪৫২১১৬৩


টিউনস


আরও টিউনস


টিউনারের আরও টিউনস


টিউমেন্টস

ভাইয়া বুঝতে পারলাম না 🙁

ভাইয়া আপনার সার্ভারে ssl ইন্সটোল করে index.php তে কোডটি কপি করে কাজ করান।

বিষয়টা পুরোপুরি ক্লিয়ার করার জন্য, আর একটু বিস্তারিত লিখলে ভাল হতো। টিউনের শিরনাম ঠিক করা উচিৎ আপনার। মিনিটে যদি ৫০০০-৬০০০ লাইক পাওয়া যায় তাইলে আপনার পেজে মাত্র ১৯৩ লাইক কেন 😛 আমি তেমন কোন পোস্টই করিনা আমার পেজে তবুও তো প্রায় ৩০০ এর মত লাইক হইছে। দেখুন এখানে fb/amaderprojukti 🙂

    @সাহীদুজ্জামান সাহীদ: কারন আমি আমার পেজে লাইক পাওয়ার জন্য এই পোস্ট করি নাই।

SSL
index.php
index.html এসব কিভাবে কী করবো খুলে বলবেন প্লিজ?
আর আমা পেজের জন্য কোথায় কি কপি অথবা edit করতে হবে বলবেন?? আর সার্ভারের কথা বলছেন ওটা কিভাবে?? আমি এটা করতে আগ্রহী যদি আপনি বিস্তারিত জানাতেন।

Level 0

bujhlam na vai….
http://facebooktimeline.69download.com/ ei ta ki open korle no longger bolce

    ভিডিও শেয়ার করলে ভিডিও দেখতে পারবেন।

হুম…………….