Showing posts with label Framework. Show all posts
Showing posts with label Framework. Show all posts

Sunday, 25 September 2016

Panduan Lengkap Install Phalcon Framework di Windows

Panduan Lengkap Install Phalcon Framework di Windows
Panduan Lengkap Install Phalcon Framework di Windows
Untuk menginstall Phalcon Framework di Windows dan menggunakannya untuk keperluan pembuatan web Anda dapat men-download DLL library Phalcon terlebih dahulu.
Selesai di download lalu extract dll kemudian copy-paste ke dalam folderxampp/php/ext, lihat gambar dibawah untuk detail.


Kemudian buka file php.ini yang ada di dalam folder xampp/php. Berikut gambar untuk detail
Tambahkan extension phalcon di php.ini seperti gambar dibawah ini :
Sekarang kita akan cek apakah phalcon framework sudah ter-install atau belum. Cukup dengan membuat sebuah file .php atau anda bisa melihat di phpinfo.

Cek dengan file .php, buat folder baru di htdocts berinama phalcon_cekkemudian buat file baru index.php berikut source code untuk cek phalcon
Baca Juga :  Free 2 Ebook Pemula Laravel Bahasa Indonesia Lengkap PDF


<?php print_r(get_loaded_extensions()); ?>
Buka browser dan jalankan http://localhost:8080/phalcon_cek/ maka akan terlihat seperti ini jika phalcon sudah ter-install



Selamat Anda telah selesai meng-install phalcon :)

Salam Terraligno

Monday, 19 September 2016

Panduan Mudah Membuat Formulir Menggunakan Codeigniter

Halo sobat terraligno. Kali ini aku bakal menciptakan tips yg masih juga tidak sedikit mau diketahui oleh orang-orang. Lebih-lebih bagi mereka yg masih baru didunia koding mengkoding dgn Framework Codeigniter. Ya, gimana membuat form dgn gampang di Codeigniter.

Dasar intinya membuat form itu mampu dibuat memakai HTML. Tau kan tentunya? Namun bagaimanakah bila kita mengharapkan suatu koding yg bersih & rapi tercatat seluruhnya dalam suatu file? Pastinya bagi kamu yg telah malang melintang di dunia peng-koding-an pasti senantiasa & senantiasa meninginkan suatu baris kode yg rapi dan rutin. Baca juga : Panduan Codeigniter Untuk Pemula

Oke, dasarnya Codeigniter aku singkat saja jadi CI. Telah sediakan satu buah function yg dikumpulkan dalam suatu file dinamakan dgn helper form. Apa itu helper form? Kamu dpt melihat serta-merta di sini http : //codeigniter.com/user_guide. Nah bagaimanakah menggunakannya? Mencoba sample berikut,terhadap kasus ini aku bakal menciptakan suatu form registrasi sederhana memakai Codeigniter version 2.1.3.

Buatlah suatu Controller lebih-lebih dulu, beri nama controllernya dgn registrasi.php



load->helper('form');
 }

 public function index()
 {
 //membuat form nama
 $ar_name = array('name'=>'nama',
 'id'=>'nama',
 'value'=>'',
 'class'=>'teks',
 'size'=>'40'
 );
 $data['f_nama'] = form_input($ar_name);

 //membuat form alamat
 $ar_alamat = array(
 'name'=>'alamat',
 'id'=>'alamat',
 'rows'=>'5',
 'cols'=>'40',
 'class'=>'teksarea'
 );
 $data['f_alamat'] = form_textarea($ar_alamat);

 //membuat form agama
 $ar_agama = array(
 'islam'=>'Islam',
 'kristen'=>'Kristen',
 'katolik'=>'Katolik',
 'hindu'=>'Hindu',
 'budha'=>'Budha',
 'konghucu'=>'Konghucu',
 'lainnya'=>'Lainnya'
 );
 $data['f_agama'] = form_dropdown('agama', $ar_agama);

 //membuat form hobi
 $ar_hobi1 = array(
 'name'=>'hobi[]',
 'id'=>'hobi',
 'value'=>'bola',
 );

 $ar_hobi2 = array(
 'name'=>'hobi[]',
 'id'=>'hobi',
 'value'=>'senam'
 );

 $ar_hobi3 = array(
 'name'=>'hobi[]',
 'id'=>'hobi',
 'value'=>'komputer'
 );

 $data['f_hobi'] = form_checkbox($ar_hobi1);
 $data['f_hobi2'] = form_checkbox($ar_hobi2);
 $data['f_hobi3'] = form_checkbox($ar_hobi3);

 //membuat form jurusan
 $ar_jur1 = array(
 'name'=>'jurusan',
 'id'=>'jurusan',
 'value'=>'komakt'
 );

 $ar_jur2 = array(
 'name'=>'jurusan',
 'id'=>'jurusan',
 'value'=>'ce'
 );

 $ar_jur3 = array(
 'name'=>'jurusan',
 'id'=>'jurusan',
 'value'=>'si'
 );

 $data['f_jur1'] = form_radio($ar_jur1);
 $data['f_jur2'] = form_radio($ar_jur2);
 $data['f_jur3'] = form_radio($ar_jur3);

 //membuat tombol
 $ar_tom = array(
 'name'=>'submit',
 'id'=> 'submit',
 'value'=>'Simpan',
 'class'=>'tombol'
 );

 $data['f_tombol'] = form_submit($ar_tom);
 $this->load->view('form_registrasi', $data);
 }
//end of class
}
?>
Selanjutnya buatlah sebuah file view, tujuannya untuk menampilkan script dari controller, beri nama filenya dengan form_registrasi.php
Baca juga : Panduan Codeigniter Dengan Ebook Lengkap

<html>
 <head>
 <title>Form Registrasi DIMASEDU INSTITUE </title>
 <style>
 body
 {
 margin:50px;
 font-family:Arial;
 background:#eee;
 }

 #wrap
 {
 margin:auto;
 width:500px;
 border:5px solid #ccc;
 padding:5px;
 background:#fff;
 box-shadow:4px 4px 10px 2px #888;
 }

 #content
 {
 padding:3px;
 }

 #content h2
 {
 font-size:22px;
 font-weight:bold;
 color:#FF9900;
 }

 .t_reg
 {
 padding:4px;
 }

 .t_reg tr td
 {
 font-size:12px;
 font-weight:bold;
 }

 .teks
 {
 padding:5px;
 border:1px #ccc solid;
 }

 .teksarea
 {
 padding:5px;
 border:1px #ccc solid;
 }

 .tombol
 {
 padding:5px;
 background:#cc0000;
 color:#fff;
 border:1px solid #fff;
 font-size:11px;
 font-weight:bold;
 }

 #footer
 {
 font-size:11px;
 margin:auto;
 margin-top:20px;
 text-align:center;
 }

 #footer a
 {
 text-decoration:none;
 color:#000;
 font-weight:bold;
 }
 </style>
 </head>
 <body>
 <div id="wrap">
 <div id="content">
 <h2>Registrasi Mahasiswa</h2>
 <?php
 //deklarasikan awal form
 form_open('registrasi/proses',array('name'=>'regForm', 'method'=>'POST'));
 ?>
 <table>
 <tr>
 <td>Nama Lengkap</td>
 <td>:</td>
 <td><?php echo $f_nama;?></td>
 </tr>
 <tr>
 <td>Alamat Lengkap</td>
 <td>:</td>
 <td><?php echo $f_alamat;?></td>
 </tr>
 <tr>
 <td>Agama</td>
 <td>:</td>
 <td><?php echo $f_agama;?></td>
 </tr>
 <tr>
 <td>Hobi</td>
 <td>:</td>
 <td><?php echo $f_hobi;?> Sepakbola
 <?php echo $f_hobi2;?> Senam
 <?php echo $f_hobi3;?> Komputer
 </td>
 </tr>
 <tr>
 <td>Jurusan</td>
 <td>:</td>
 <td><?php echo $f_jur1;?> Komputer Akuntansi<br>
 <?php echo $f_jur2;?> Teknik Komputer<br>
 <?php echo $f_jur3;?> Sistem Informasi</td>
 </tr>
 <tr>
 <td></td>
 <td></td>
 <td><?php echo $f_tombol;?></td>
 </tr>
 </table>
 <?php
 //deklarasikan akhir form
 form_close();
 ?>
 </div>
 </div>
 <div id="footer">
 DIMASEDU INSTITUTE &copy; 2012<br>
 Created by Dimas Edubuntu Samid <br>
 <a href="http://dimasedu.net" target="_blank">DIMASEDU NET </a>
 </div>
 </body>
</html>
Kemudia cobalah tampilkan pada browser dengan mengetikkanhttp://localhost/nama_direktori_ci/index.php/registrasi, jika anda benar melakukan penulisan kode maka akan tampak seperti pada gambar berikut:


Bagaimana mudah bukan membuatnya. Tetaplah ber-eksplorasi agar anda lebih jago dengan codeigniter. Semoga bermanfaat, dan tunggu saja tutorial – tutorial saya selanjutnya. [Source : http://www.tutorial-webdesign.com/tutorial-membuat-form-dengan-codeigniter/ ]

Salam Terraligno

Thursday, 16 June 2016

Source Code Script PHP Watch Movies Dari codecanyon.net

Source Code Script PHP Watch Movies Dari codecanyon.net
Source Code Script PHP Watch Movies Dari codecanyon.net
Source Code Script PHP Watch Movies Dari codecanyon.net, Codecanyon adalah tempat berjualan jika kita jago dalam bahasa pemrograman atau bisa membuat aplikasi untuk perangkat mobile. Script senilai 16$ bisa kita miliki dengan gratis, but..... This item is June's Free File of the Month! Iya betul sekali sobat, source ini gratis hanya bulan juni 2016.

Baca Juga : Aplikasi Bisnis Pulsa PHP Gratis

Free Script YouTube Automated CMS Codecanyon


Source Code Script PHP Watch Movies Dari codecanyon.net
http://moviescriptdemo.crivion.com/

Bagi sahabat yang ingin mendownload file ini silahkan di simpan baik baik, atau bisa membeli dengan harga 16$ jika masa promosi sudah selesai. Klick codecanyon movie semoga masih sempat download zip zipnya. Jika saya ingat dan ada waktu saya upload disini. Ini sob Watch Movies


Source Code Script PHP Watch Movies Dari codecanyon.net


Mengapa Gratis?

Karena tidak bayar, Pass jawabnya!, Script ini menggunakan framework codeigniter, dan dalam pembuatannya terkesan kurang profesioanl, yang penting program jalan, yang penting bisa di jual. Saya sebut kurang bagus gaya pemrograman yang ada dalam script ini. Contohnya saja query database masih di lakukan didalam controller. Dan masih menggunakan mysql extention, jadi walaupun gratis, kita tidak akan bisa mendapatkan update berikutnya jika versi ini depracted.


Keterangan!

Aplikasi ini tidak berjalan baik di localhost. 

Salam Terraligno

Wednesday, 30 March 2016

Free 2 Ebook Pemula Laravel Bahasa Indonesia Lengkap PDF

Free 2 Ebook Pemula Laravel Bahasa Indonesia Lengkap PDF
Free 2 Ebook Pemula Laravel Bahasa Indonesia Lengkap PDF
Free Ebook Laravel Bahasa Indonesia Lengkap PDF, halo sobat sedot code. Saya ingin re-share ebook panduan bagaimana cara mempelajari framework php laravel.

Sebelumnya sudah ada buku yang sangat bagus dari RAhmad Awaludin, yang berjudul Seminggu Belajar Laravel, sebenarnya gag cukup seminggu, apalagi kurang praktek. :D



Penjelasan Singkat Laravel

Laravel untuk pertama kali dikembangkan sendiri oleh Taylor Otwell. Namun, sampai versi ke-4 sekarang, framework opensource ini dikembangkan bersama oleh komunitas dengan tokoh-tokoh penting selain Otwell adalah Dayle Rees, Shawn McCool (pembaca Nettuts pasti hafal orang ini), Jeffrey Way, Jason Lewis, Ben Corlett, Franz Liedke, Dries Vints, Mior Muhammad Zaki dan Phil Sturgeon. Mereka adalah kontributor sejumlah framework dan library PHP yang luar biasa.

Motto dari Laravel sendiri adalah PHP THAT DOESN’T HURT. CODE HAPPY & ENJOY THE FRESH AIR. Tujuan utama dari Laravel adalah mempermudah Coding dengan menggunakan PHP dalam web developing. Untuk itu, sudah disediakan banyak sekali tools-tools yang dapat mendukung dan mempercepat developing dan pengembangan web.

Mengapa Laravel ?

Dari beberapa sumber, ada beberapa kelebihan yang dimiliki oleh Laravel. Diantaranya :

  • Coding yang simple
  • Tersedia generator yang canggih dan memudahkan, Artisan CLI
  • Fitur Schema Builder untuk berbagai database,
  • Fitur Migration & Seeding untuk berbagai database,
  • Fitur Query Builder yang keren,
  • Eloquent ORM yang luar biasa,
  • Fitur pembuatan package dan bundle,
Laravel sendiri telah menyediakan teknologi Composer untuk memudakan penggunanya, Composer sendiri adalah fitur (dependency) tambahan untuk PHP yang memiliki basis layaknya Command Line, dan berfungsi sebagai penginstall third-party plugin untuk aplikasi web secara cepat.

Bagi web master, Laravel adalah segalanya. Namun bagi seorang web developer yang baru saja belajar Framework, Laravel memiliki kerumitan tersendiri.

Laravel memiliki kelebihan  dari sisi scripting PHP 5.4+ yang dikenal dengan OOP Minded. Performa laravel sendiri juga cukup bagus, ini cocok dengan web master PHP yang sudah lama berkecimpung dengan menggunakan Framework.

Selain laravel ada banyak framework php, tentunya para developer sudah mengetahui macam macam framework php. Penulis hanya pernah mencoba Codeigniter. Jika sobat ingin melihat prakteknya silahkan lihat video tutorial codeigniter bahasa indonesia yang pernah saya buat.

Jika untuk developer yang baru saja belajar Framework, disarankan untuk memilih Codeigniter. Sebenarnya tidak masalah jika mau memilih belajar Laravel langsung, akan tetapi untuk lebih memahami prosedur MVC lebih disarankan untuk belajar menggunakan Codeigniter terlebih dahulu.

Laravel dan Codeigniter sama saja, hanya perbedaannya ada di kerumitannya. Tergantung dari penggunanya, lebih nyaman dan mudah menggunakan yang mana. Detailnya silahkan tanya sma mbah google.

Daftar isi dari salah satu ebook laravel yang ingin saya reshare:

1. Berkenalan dengan Laravel

1.1. Apa itu Laravel ?

1.2. Kenapa Memakai Laravel ?

2. Memulai Laravel (Instalasi dan Konfigurasi)

2.1 Requirement

2.2 Install Package Laravel

2.3 Struktur Projek Laravel

3. Mengenal Dasar Routing

3.1 Routing Dasar

3.2 Routing Berparameter

4. Mengenal MVC (Model-View-Controller)

5. Mengenal Blade Template Laravel

6. Form dan HTML

7. Schema Builder

8. Migrations

9. Seeding

10. Eloquent

Saya gag bisa laravel, apalagi yang blade blade template,eloquent dan lainnya, Jadi tidak melayani konsultasi ya. Mimin hanya orang yang lagi suka menulis melalui blog, ngoding sudah lama gag di buka :D, Kalau mau ebooknya silahkan di sedot ebook tutorial dasar laravel, dengan ebook tutorial laravel untuk pemula

Acuan:

http://www.hafidmukhlasin.com
http://ebook.dede-gunawan.web.id
Jika butuh,  Passwordnya : "dede-gunawan.web.id"

Salam Terraligno

Thursday, 11 February 2016

Aplikasi Bisnis Pulsa PHP GRATIS

Aplikasi Bisnis Pulsa PHP GRATIS
Aplikasi Bisnis Pulsa PHP GRATIS
Apakah anda mencari source code aplikasi penjualan pulsa php, mungkin aplikasi ini ada kaitannya dengan sistem penjualan pulsa. Aplikasi ini bisa mencatat trasaksi pulsa. Aplikasi ini dibuat dengan php framework codeigniter.

Ada tiga menu pada aplikasi LogPulsa, menu Beranda, menu Transaksi, dan menu Data Master. Untuk tampilannya sekilas seperti ini.
Aplikasi Bisnis Pulsa PHP GRATIS

Jika ingin mendownl0ad aplikasi ini bisa melalui link sedot Dropbox , GD GLEDRIVE

Sumber: http://www.aneiqbal.com/2016/05/logpulsa-aplikasi-web-pencatatan.html


Baca Juga : 

Monday, 16 March 2015

Best / Open Automated and Manual Source Code Analysis Tool - Android

Lint :

        Android lint tool is a static code analysis tool that checks your Android project source files for potential bugs and optimization improvements for correctness, security, performance, usability, accessibility, and internationalization.





     Android Studio, the configured lint and other IDE inspections run automatically whenever you compile your program. You can also manually run inspections in Android Studio by selecting Analyze > Inspect Code from the application or right-click menu. The Specify Inspections Scope dialog appears so you can specify the desired inspection profile and scope.

    lint tool processes the application source files.


You can configure lint checking at different levels:
  • Globally, for the entire project
  • Per project module
  • Per production module
  • Per test module
  • Per open files
  • Per class hierarchy
  • Per Version Control System (VCS) scopes

Configuring lint in Android Studio

Android Studio allows you to enable or disable individual inspections and configure project-global, directory-specific, and file-specific settings for lint.
You can manage inspection profiles and configure inspection severity within Android Studio using the File > Settings > Project Settings menu to open the Inspectionspage with a list of the supported profiles and inspections.





Download Link : http://developer.android.com/sdk/index.html#win-bundle

 Agnitio :

           A tool to help developers and security professionals conduct manual security code reviews in a consistent and repeatable way. Agnitio aims to replace the adhoc nature of manual security code review documentation, create an audit trail and reporting.




Features


  • Security code reviews
  • Security code review metrics and reporting
  • Application security code review tool
  • Static analysis security guidance and reporting
Download Link : http://sourceforge.net/projects/agnitiotool/files/latest/download

DroidBench :

                       is an open test suite for evaluating the effectiveness of taint-analysis tools specifically for Android apps. The suite can be used to assess both static and dynamic taint analyses, but in particular it contains test cases for interesting static-analysis problems (field sensitivity, object sensitivity, tradeoffs in access-path lengths etc.) as well as for Android-specific challenges like correctly modeling an application’s lifecycle, adequately handling asynchronous callbacks and interacting with the UI.




Version 1.1 comprises the following categories
  • Arrays and Lists
  • Callbacks
  • Field and Object Sensitivity
  • Inter-App Communication
  • Lifecycle
  • General Java
  • Miscellaneous Android-Specific
  • Implicit Flows
  • Reflection

 Download Link : https://github.com/secure-software-engineering/DroidBench

SuSi:

        is a tool for the fully automated classification and categorization of Android framework sources and sinks

       There exist different kinds of sensitive sources and sinks in the area of Android security. For instance, the user’s location information or address book can be treated as a source, while the network connection or the SMS message sending facilities can be seen as sinks. In general, sources and sinks are accessed through specific API methods (e.g, getLastKnownLocation() for the user’s current location).




     SuSi is a tool that automatically generates a list of Android sources and sinks by analyzing the complete Android source code. Our approach is version-independent and can simply be run again when a new Android version is released. This relieves security analysts from having to regularly create new lists of sources and sinks by hand.


Download Link : https://github.com/secure-software-engineering/SuSi

     



DidFail:

            DidFail (Droid Intent Data Flow Analysis for Information Leakage) uses static analysis to detect potential leaks of sensitive information within a set of Android apps. DidFail combines and augments FlowDroid (which identifies intra-component information flows) and Epicc (which identifies properties of intents such as its action string) to track both inter-component and intra-component data flow in a set of Android applications. DidFail's two-phase analysis allows for fast user-response time by using precomputed phase-1 analysis results.

Note:

  • This tool is a research prototype. It is not intended for industrial use. 
Download Link : https://www.cs.cmu.edu/~wklieber/didfail/didfail.zip

Androwarn :

                   is a tool whose main aim is to detect and warn the user about potential malicious behaviours developped by an Android application.







The detection is performed with the static analysis of the application's Dalvik bytecode, represented as Smali.

Download Link : https://github.com/maaaaz/androwarn


FlowDroid – Taint Analysis :

                          FlowDroid is a context-, flow-, field-, object-sensitive and lifecycle-aware static taint analysis tool for Android applications. Unlike many other static-analysis approaches for Android we aim for an analysis with very high recall and precision. To achieve this goal we had to accomplish two main challenges: To increase precision we needed to build an analysis that is context-, flow-, field- and object-sensitive; to increase recall we had to create a complete model of Android’s app lifecycle.

   
                        Our analysis is based on Soot and Heros. FlowDroid uses a very precise callgraph which helps us to ensure flow- and context-sensitivity. Its IFDS-based flow functions guarantee field- and object-sensitivity. Because an accurate and efficient alias search is crucial for context-sensitivity in conjuction with field-sensitivity, we want to highlight this part of our analysis, which is inspired by Andromeda. 
 
Note: soot-infoflow-android is part of FlowDroid, a context-, flow-, field-, object-sensitive and lifecycle-aware static taint analysis tool for Android applications.
 
Download Link : https://github.com/secure-software-engineering/soot-infoflow-android