• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

GhazaliTajuddin.com

Another Kuantan Blogger

  • Home
  • Blog
    • Kuantan
    • Foods
    • Technology
    • Health
  • Stock Photography
    • Senarai Microstock Agency
    • Membuka akaun contributor Shutterstock.com
    • Tips untuk 10 keping gambar pertama Shutterstock.com
    • Mengapa Shutterstock.com reject gambar / submission
    • Model Release
    • Bagaimana withdraw earning daripada Fotolia
    • Bagaimana untuk mengisi keyword kepada imej dengan menggunakan Adobe Photoshop

wordpress

Understand Yii Authentication Intermediate

March 30, 2012 by ghazalitajuddin 6 Comments

Yii Framework
Yii Framework

In this tutorial we will discuss about setting up our Yii application

  • Our Web Apps will have user registration page
  • Our Web Apps will varified user registration trough emails activation

The first thing is we need to look into our User table or our User model. Im setting up my tbl_user as below. Im also insert sample record :

[php]

—
— Table structure for table `tbl_user`
—

CREATE TABLE IF NOT EXISTS `tbl_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`salt` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`joined` date NOT NULL,
`activationcode` int(11) NOT NULL,
`activationstatus` int(11) NOT NULL,
`profile` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=11 ;

—
— Dumping data for table `tbl_user`
—

INSERT INTO `tbl_user` (`id`, `username`, `password`, `salt`, `email`, `joined`, `activationcode`, `activationstatus`, `profile`) VALUES
(1, ‘demo’, ‘2e5c7db760a33498023813489cfadc0b’, ’28b206548469ce62182048fd9cf91760′, ‘webmaster@example.com’, ‘0000-00-00’, 0, 0, NULL);

[/php]

[Read more…] about Understand Yii Authentication Intermediate

Filed Under: General, Technology Tagged With: Authentication, Controller, Framework, Kuantan, kuantan programmer, kuantan software developer, kuantan webmaster, Login, model, MVC, OOP, PHP, RBAC, View, Widget, wordpress, yii, Yii Framework

Understanding Yii Basic User Authentication

March 26, 2012 by ghazalitajuddin 1 Comment

Yii Framework
Yii Framework

Basicly, Yii basic skeleton already come with aunthentication system which is very simple by checking username and password both admin or demo.

The default authentication files is

  1. UserIdentity.php
  2. LoginForm.php
  3. SiteController.php
  4. Login.php
[Read more…] about Understanding Yii Basic User Authentication

Filed Under: General, Technology Tagged With: Authentication, CakePHP, Controller, Framework, Kuantan, kuantan programmer, kuantan software developer, kuantan webmaster, Login, model, MVC, OOP, PHP, View, wordpress, yii, Yii Framework

Understanding Yii CFORM

March 24, 2012 by ghazalitajuddin 5 Comments

Yii Framework
Yii Framework

In this tutorial we discuss about the basic principal of MVC using Yii Framework. How to create Model extends from CFormModel which we collect data from it, to create related Controller and finishing at View.

1. Generate webapp from Command Prompt

yiic webapp myapps

2. Uncomment gii on myapps/protected/config/main.php. Set your prefered password. This allow us to use scaffolding modules provided by Yii Framework. Please remove this when you ready to deploy your application for security reason.

3. Access your gii module at your browser

http://localhost/myapps/index.php?r=gii.

4. Using gii module online forms, create a Controller, name it MyData, it should generate MyDataController.php. You can access it at root/myapps/controllers/MyDataController.php

5. Duplicate myapps/models/ContactForm.php, rename it as MyDataForm.php. This will act as your model. This model extends CFormModel class as we dont use Active Records.

6. Clean up MyDataForm.php like this

[php]
/**
* ContactForm class.
* ContactForm is the data structure for keeping
* contact form data. It is used by the ‘contact’ action of ‘SiteController’.
*/
class MyDataForm extends CFormModel
{
public $name;
public $email;
public $subject;

/**
* Declares the validation rules.
*/
public function rules()
{
return array(
// name, email, subject and body are required
array(‘name, email, subject’,’required’),
);
}

}[/php]

[Read more…] about Understanding Yii CFORM

Filed Under: General, Technology Tagged With: CakePHP, Controller, Framework, model, MVC, OOP, PHP, View, wordpress, yii, Yii Framework

Nota kaki hari ini.

January 23, 2011 by ghazalitajuddin Leave a Comment

Todays note….

1. Load Google Map API
function init_google_map(){
wp_enqueue_script(‘google-maps’ , ‘http://maps.google.com/maps/api/js?sensor=true’ , false , ‘3’);
}
add_action(‘init’, ‘init_google_map’);
2. Load Map
function loadmap(){
// register your script location, dependencies and version
wp_register_script(‘custom_script’,
get_bloginfo(‘url’) . ‘/wp-content/themes/gdirectory/gdirectory.js’,
false,
‘1.0’ );
// enqueue the script
wp_enqueue_script(‘custom_script’);
}
add_action(‘init’, ‘loadmap’);

function init_google_map(){wp_enqueue_script(‘google-maps’ , ‘http://maps.google.com/maps/api/js?sensor=true’ , false , ‘3’);}add_action(‘init’, ‘init_google_map’);
function loadmap(){
// register your script location, dependencies and version   wp_register_script(‘custom_script’,       get_bloginfo(‘url’) . ‘/wp-content/themes/gdirectory/gdirectory.js’,       false,       ‘1.0’ );   // enqueue the script   wp_enqueue_script(‘custom_script’);}add_action(‘init’, ‘loadmap’);

3.  Add Top Menu And Page

add_action(‘admin_menu’, ‘business_menu’);

function business_menu(){
add_menu_page(‘Business Profile’, ‘Business Profile Page’, ‘5’, ‘business_page’, ‘business_page’);
}

function business_page(){
echo ‘<div class=”wrap”>’;
echo ‘
<div>
<h2>Google Maps API</h2>
<div id=”map_canvas” style=”width:500px; height:500px”></div>
‘;
echo ‘</div>’;
}

4. Javascript Page

google.maps.event.addDomListener(window, “load”, initialize);

function initialize() {
var latlng = new google.maps.LatLng(-34.397, 150.644);
var myOptions = {
zoom: 8,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};

var map = new google.maps.Map(document.getElementById(“map_canvas”),
myOptions);
}

Filed Under: Technology Tagged With: google map, wordpress

  • « Go to Previous Page
  • Page 1
  • Page 2
  • Page 3

Primary Sidebar

“Solat. Sabar. Syukur. Senyum. Sedekah.”

For Collaboration, Events & Review, kindly contact me at +6016[-]9212092 or click Whatsapp button on this page.

Sponsor

Recent Posts

BadMethodCallException Method Illuminate\Database\Eloquent\Collection::roles does not exist.

User Roles And Permissions Without Package Laravel 10

Laravel Many To Many Relationship

Makan malam bersama keluarga di Awangan Palace

Sarapan pagi di Warung Gulai Kawah

Recent Comments

  • helmi on Personal Tips Berhenti Merokok
  • ghazalitajuddin on Personal Tips Berhenti Merokok
  • helmi on Personal Tips Berhenti Merokok
  • ghazalitajuddin on Nasi Lemak Kukus Restoran Zaman. Otai masih berbisa.
  • ghazalitajuddin on Air tangki radiator Proton Exora cepat kering? Cuba tukar penutup radiator!
  • Mal on Nasi Lemak Kukus Restoran Zaman. Otai masih berbisa.
  • Firdaus on Air tangki radiator Proton Exora cepat kering? Cuba tukar penutup radiator!

My Link

  • Takaful Insurance Web

JJCM

Patin Tempoyak Frozen Resepi Temerloh

Laksam Terbaik Di Kuantan, Sanggup Menunggu Sejam

Meraikan hari lahir di Loteng

Sarapan pagi di Warung Gulai Kawah

Lain macam Nasi Kerabu Mekla ni

Tags

bebas rokok berhenti merokok breakfast Controller Framework Gezzeg Photography & Design health jalan-jalan cari makan jalan-jalan cari makan kuantan jjcm jjcm kuantan Jurufoto Kuantan Kuantan Kuantan Photographer kuantan programmer kuantan web developer kuantan webmaster laravel merokok merbahayakan kesihatan model MVC nikmat rokok OOP Pahang Pahangtourism pahang tourism Photo Manipulation PHP rajalanun retired smoking revisit pahang 2018 shutterstock stop smoking stop smoking tips stop smoking withdrawal symptom tips tips berhenti merokok View visit malaysia 2020 visit pahang visitpahang white wordpress yii Yii Framework

Recent Posts

  • BadMethodCallException Method Illuminate\Database\Eloquent\Collection::roles does not exist.
  • User Roles And Permissions Without Package Laravel 10
  • Laravel Many To Many Relationship
  • Makan malam bersama keluarga di Awangan Palace
  • Sarapan pagi di Warung Gulai Kawah

Copyright © 2025 — Ghazali Tajuddin • All rights reserved. •