Techbirds | Knowledge Hub | Page 48
Posted on: January 14, 2014 /
Categories: PHP / Author Name: Anand Kumar
Problem: Creating multisite domain and having several parked domain. Solution : The following steps are as follow: Requirements Your existing WordPress installation *must* be in the root of your site (not a subdirectory like /blog ). You must have access to a control panel like cPanel or Plesk. Your host must allow the creation of
Read More →
1,003 total views, no views today
Posted on: January 14, 2014 /
Categories: PHP / Author Name: Anand Kumar
Problem Statement : After transferring the kohana application from one server to another, getting session unreadable error form the server. Session does not maintain across the controller ,view and model. Solution : To fix this problem , the follwing steps are needed :- 1. First find the bootstrap file . 2. check the cookie::$domain
Read More →
860 total views, no views today
// to see the effect of override copy code and uncomment the override part. // hash code overriding will join you later. public class Obj { /** * @param args */ int value; Obj(int i) { this.value = i; } /*@Override public boolean equals(Object o) { Obj here=(Obj)o; if(this.value == here.value) return true; else if
Read More →
542 total views, no views today
Interfaces are the blueprints and Abstract are partially implemented classes Object class is the father of all classes , specially used to hold the object of that class whose type is unknown to us. equal() method is used to compare content of two strings whereas ==
Read More →
424 total views, no views today
Hi all, This has always been a topic of discussion whether Java passes its parameter through call by reference or call by value. In 1 Line Call by Value. This question aroused from c/c++ parameter passing methodologies i.e. if in a function we pass a value then it is pass by value. for ex.
public void passingValue(int x, int y); //calling method int a=3, b=4; passingValue(a,b);
public void passingValue(int x, int y); //calling method int a=3, b=4; passingValue(a,b); |
Read More →
649 total views, no views today