Posts

Showing posts with the label PHP

[NEW] Script Terbaru auto Reaction Facebook dan auto refresh token

Image
Release lagi nih : [PHP] Script Auto Reaction Timeline Facebook dengan kemampuan : Auto refresh token Support multiple accounts Flexible (Native/Command line) Options untuk like komen (true/false) Settingan per akun Nah tidak lama-lama langsung saja visit Download Script Auto Reaction Timeline Facebook

Get CPU usage / RAM usage [PHP]

if you mean how much ram/cpu php is using then you can do the following using plain php without using any package: this returns the ram usage: function get_server_memory_usage(){ $free = shell_exec('free'); $free = (string)trim($free); $free_arr = explode("\n", $free); $mem = explode(" ", $free_arr[1]); $mem = array_filter($mem); $mem = array_merge($mem); $memory_usage = $mem[2]/$mem[1]*100; return $memory_usage; } cpu usage: function get_server_cpu_usage(){ $load = sys_getloadavg(); return $load[0]; } Native Conditions: $load = sys_getloadavg(); $limit =15; //percent cpu if ($load[0] >= $limit) { die("Oops Server Busy, this message was automate from Dimas Lanjaka For telling users, there too many processed."); }

[NEW] Script auto reaction facebook dan auto refresh token PHP

Image
Download Script auto reaction facebook Step by Step Install BOT reaction for cPanel Download Scriptnya . simpan dengan nama bot.php Kalau sudah, Save File Bot nya lalu Upload ke Hosting kalian masing-masing.. Sekarang waktunya Setting Cronjob buat File Bot kalian, agar bisa berjalan dalam waktu yg udah ditentukan :) Untuk settingannya kalian bisa lihat seperti gambar dibawah ini : nb. Untuk Waktu Eksekusi, itu terserah sesuai kalian masing2.. :) Kalo udah mantep settingannya, Klik Add New Cron Job. dan Lihatlah Akun facebook agan bakal ngelike status temen secara otomatis sesuai waktu yang sudah ditentukan tadi. Atau bila kalian bingung dengan tutorial pemasangan cronjob diatas. anda bisa menggunakan alternatif Di Pencarian ini atau Cara Membuat Cron Job Menggunakan webcron.org Cara Install Bot Auto Reaction Facebook Lewat Termux Download Scriptnya . simpan dengan nama bot.php Taruh fil

[NEW] Script terbaru PHP auto refresh token Facebook autolike 2019

<?php $user = "Username FB"; $pass = "Password FB"; $token = file_get_contents("https://bot.about-devices.me/instagram/refreshtoken.php?user=$user&pass=$pass"); ?> Butuh scriptnya ?. Download Script Auto Reaction Timeline Facebook Facebook token refresh token facebook php script 2018 auto refresh token Auto refresh token  Facebook autolike Token autolike facebook Get token facebook Debug token Token debugger Facebook token debugger Never expire token Lifetime token Facebook Free script Free for use Universal token refresh Universal facebook token

Cara Install Fedora Di Android

Image
Halo semuanya, hanya ingin memberi Anda pembaruan cepat di Fedora dalam proyek chroot Android. Berikut tutorial cara menginstal fedora di android melalui termux emulator android : Install Termux  ( https://termux.com ) Buka termuxnya dan copy kode berikut, satu persatu. (Tanda [#] merupakan komentar). #Update & upgrade command shell apt update #please wait -then apt upgrade #Installing Git apt install git #Installing Curl apt install curl #Installing Wget apt install wget Instalasi Basic Command dan upgrade sudah selesai. Disini anda sudah memumpuni untuk menjalankan command prompt linux secara lancar. Kemudian lanjutkan ke penginstalan nya. Disini saya menggunakan directory Root/Home dari Termux nya sendiri Jadi pastikan anda memiliki penyimpanan yang memumpuni, saya sarankan Free 2GB git clone https://github.com/nmilosev/termux-fedora.git cd termux-fedora chmod +x termux-fedora.sh Nah disini anda sudah mendownload fedora berbasis IMAGE. Beberapa IMAGE un

Facebook auto like beranda 2018 work

Facebook autolike rebuilded (safe mode). Dijamin aman. Jalankan ini dengan Cronjob 5 menit 1x Fitur: Auto like status autolike comments URL Cronjob: http://bot.webmanajemen.xyz/v2/like.php?max=5&token=Your_Access_Token You can specify a maximum of posts that will be liked by changing max=5 Get token di google banyak dg Keywords "generate Facebook token autolike" Cronjob example : */5 * * * * curl http://bot.webmanajemen.xyz/v2/like.php?max=5&token=Your_Access_Token Update terbaru silahkan login langsung : disini dijamin aman Saya bertanggungjawab penuh dalam situs ini Semuanya siap pakai. Selamat mencoba.

PHP Regex Extract Proxy From String

Image
Extract IP:PORT Using PHP Extract IP:PORT Using PHP Regex Regular Expression Extract Proxy $re = '/([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}):?([0-9]{1,6})?/m'; $str = '139.59.68.234:8080 213.136.87.217:80 66.70.255.195:3128 66.70.255.195:3128 64.90.244.115:8080 159.65.156.208:80 66.70.147.196:3128 66.70.147.197:3128 54.39.23.19:3128 139.59.224.50:80 142.44.137.222:80 179.107.51.203:80'; preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0); // Print the entire match result var_dump($matches);

FTP Backup File Recursively PHP Script

Image
FTP FILE BACKUP RECURSIVELY Auto Zipping All files Inside Directory Auto Send Zipped files to FTP at once Auto Cleaning sent Zipped files on local storage <?php define("user", "username_ftp", true); //Your FTP Username define("password", "password_ftp", true); //Your FTP Password define("host", "host_ftp", true); //eg: ftp.drivehq.com define("port", "21", true); //default ftp port is 21 /*** Script_By_Dimas_Lanjaka ***/ if (defined("user") && defined("password") && defined("host")){ // Get real path for our folder// Get real path fo $rootPath = realpath(__DIR__); //array_map('unlink', glob("$rootPath*.zip")); // Initialize archive object $zip = new ZipArchive(); $cdate = str_replace('.', '-', $_SERVER['HTTP_HOST']); $zip->open($cdate . '.zip', ZipArchive::CREATE | ZipArchive::OVERWRITE); //

00webhost unzipper script php

Image
Features: Detect zip file automatically Extract zip to custom folder Detect zip file on subfolder Unzipper tools php script <?php /** * The Unzipper extracts .zip or .rar archives and .gz files on webservers. * It's handy if you do not have shell access. E.g. if you want to upload a lot * of files (php framework or image collection) as an archive to save time. * As of version 0.1.0 it also supports creating archives. * * @author Andreas Tasch, at[tec], attec.at * @license GNU GPL v3 * @package attec.toolbox * @version 0.1.1 */ define('VERSION', '0.1.1'); $timestart = microtime(TRUE); $GLOBALS['status'] = array(); $unzipper = new Unzipper; if (isset($_POST['dounzip'])) { // Check if an archive was selected for unzipping. $archive = isset($_POST['zipfile']) ? strip_tags($_POST['zipfile']) : ''; $destination = isset($_POST['extpath']) ? strip_tags($_POST['extpath']) : ''; $

00webhost file manager alternative

Image
Feature: Support unzip file Support edit file/script on different encodings Support upload,edit,open,delete,rename,and other. Support add username and password. And any other. H3K | Tiny File Manager Modified By Dimas Lanjaka <?php /** * H3K | Tiny File Manager * CCP Programmers * http://fb.com/ccpprogrammers * https://github.com/prasathmani/tinyfilemanager */ // Default language $lang = 'en'; // Auth with login/password (set true/false to enable/disable it) $use_auth = true; // Users: array('user' => 'user', 'user' => 'user2', etc); $auth_users = array( 'your_username' => md5('your_password'), 'user2' => md5('pass2'), ); // Readonly users (usernames array) $readonly_users = array( 'user2' ); // Show or hide files and folders that starts with a dot $show_hidden_files = true; // Enable highlight.js (https://highlightjs.org/) on view's page $use_h