
Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
Event Booking Payment Plugins
Event Booking supports 40+ payment plugins. Some of them are:
EB Paypal Pro:
uses Paypal Pro payment gateway for processing payment.
EB 2Checkout:
accept payments via 2Checkout payment gateway.
EB Authorize:
accept payments via ...
How to clear all textboxes in a form using jQuery
Hi readers !
In this blog we will see how we can clear all textboxes in a form using jQuery .
To clear a textbox with id 'txtBox1' in javascript we use below code :
document.getElementById('txtBox1').value = '';
We can use this cod...
Configuration of Event Booking Extension
Event Booking is a powerful Joomla extension used for event registration. You need to access the configuration functionality before using this extension. Important parameters included in this extension are:
Integration:
If using community...
Customizing Routes In MVC
Customizing Routes :-
In MVC application we are using routing for mapping the URL structure. But sometimes we have situation to change the URL structure according to the requirement. For achieving the requirement,...
Java erro module not deployed
Hello,
I need help because I complete stuck with this error in my Java project
In-place deployment at /Users/jakublemiszewski/Desktop/VCMS/VCMS+WS/VCMS-WS/build/web
GlassFish Server, deploy, null, false
/Users/jakublemiszewski/Desktop/VCMS/VC...
How to delete duplicate rows in a table set MySql
Hello readers!. If you having the much of redundant/duplicate data growing in your database you can delete it with just a single query as I wrote here.
Let say I have a table Address and want to delete the all the duplicate records whose city...
Encrypt a message
I have to write a function to encrypt a message given as a string input using the given encryption key. The function should output the encrypted message as a string to encryptedMessage in the argument list. The function prototype must
be as fol...
C programming encrypting a message
Hey guys, i am a C programming beginner and looking for help urgently.
I need to Write a function to encrypt a message given as a string input using the given encryption key. The function should output
the encrypted message as a string to enc...
How to make Fancy Box on your text portion
Hello reader! if you having the page and need to show the fancy loading on any text portion then you can see the code below.
For the loader and the text the css will go like this
#dummy {
display: none;
}
#target {
display:inl...
How to use caching using database in codeigniter
Enabling caching .
Caching is enabled in three step.
1) Create a writable directory on your server where you want strored the cache files.
2) Set the path to your cache folder in your application/config/database.php file.
3) Enable t...
Android How to upload image into the server using Volley library
I want to upload my captured images from camera to my 000webhost.com server using the volley library.
I want where I am getting wrong and suggest me full code solution.
I have tried to write the code, But its not working.
I am getti...
How to improve performance of a AngularJS app
Hello readers if you using a long Angular JS app and want to make it's performance better you can see here how to make your app efficient
There are two ways of achieving this for a developer namely 1. disabling debug data and 2. enabling stric...
How to use caching in codeigniter
Web page caching
Lets we use the caching in codeigniter to achieve the maximum performance.
While CodeIgniter is quite fast, the amount of dynamic data you display in your hypertext pages will correlate directly to the server resources, memory...
How to secure your joomla admin url
First you need to create a new folder directory inside root folder and create index.php where you need to create cookie.
$mysecurecookie="123456";
setcookie("admincookie",$mysecurecookie,0,"/");
header("Location: /administrator/index.php"...
Interesting read from Coding Horror
Welcome to The Internet of Compromised Things
This post is a bit of a public service announcement, so I'll get right to the point:
Every time you use WiFi, ask yourself: could I be connecting to the Internet through a compromised router wit...
How to get specific part of a URL
Hi Readers!
If you having a useful URL and want to extract the specific part from it you learn the logic below
Lets have a example
$yoururl = "http://www.abc.com/usefulinfo/";
Here I'm getting only the /usefulinfo/ word. For getting th...
How to get WP menu in array form
Hello readers, today we will discuss about WP menu.
If you want to get WP menu in array form , you can use below code and will get your menu in array.
<?php
/** Get the nav menu based on $menu_name (same as 'theme_location' or 'menu' ar...
How to create custom setting in wordpress
Hello readers today we will discuss "How to create custom setting in wordpress admin dashboard".
Open your function.php file and write the below code:-
/**
* Sound promo code
*/
add_action( 'admin_menu', 'showMenu' );
function showMe...
Jomsocial Modules
Modules are the type of joomla extension which is used for page rendering. These are the small sections in joomla. These are totally depend upon the positions in joomla. Some of the jomsocial plugins are:
mod_activegroups: Displays the list of...
How to Redirect a Website using HTML Code
Hi Friends,
After my previous blog post on How to Optimize Image for Website, today we will discuss about some best programming ways to Redirect a website. I am covering this topic as point of SEO Expert. Some points of this topic I have alr...
How to disable Apache gzip compression for some media files in .htaccess file
This tutorial will help user learn how to disable the compression of files.This can be done by disabling apache gzip. For example let us say that we want to disable compression for mp3 files, which a client get as a response by hitting a particul...
Restrict access to directories through ip address on Apache
Apache web server allows access based upon different conditions. For example we can restrict access to url http://firstexample.com/ (mapped to /var/www/public/images directory) from 192.165.1.0/24 network.
Apache provides access based on diffe...
Setting Content Type of a azure blob
When we upload a file on azure blob in byte array format or in any other format then by default it is uploaded as a content type of stream. As a result of it, when we try to get that file from a browser it always starts downloading the file. It ...
Jomsocial Plugins
Jomsocial provides various plugins. Plugins is a joomla extension which provides functionality related with trigger events. Some of jomsocial plugins are:
Jomsocial Apps- Community Plugins
JS Events:This plugins provides list of events us...
node is not recognized as an internal or external command in appium
I tried to run the Appium server from the command prompt but I got the error that "node is not recognized as an internal or external command".
I executed the following command on the command prompt: node appium
Solution:
To start the App...
Moving objects by changing its Transform
Transform are used for storing and manipulating objects Position , Rotation and Scale or Size .
In this blog we will use transform to move an object.Moving an object by changing its transform does not require a Rigidbody, that way its hard to...
Deleting Elements using Javascript
In Javascript , you can't delete the element directy if you want to delete the element , then first you have to find its parent element and delete it using remove() method .Because DOM ( Document Object Model ) doesn't support removing an eleme...
AWS COGNITO DATASET
Failed to list records in dataset.
Getting this error when I am using cognate sync manager.Any ideas?
Setting up a GCM Client App on iOS
Google cloud messaging services is now available for ios developer,
Previously
For push in IPhone We have to use APN.
and
For push in Android we have to use GCM.
I think it is very difficult to implement both APN and GCM at SERVER level...
How to add/call plugin method from javascript
Use the following code to make plugin javascript
Here connectwebsocketserver is the function which called by javascript (index.js). If your plugin javascript file name is test then by following lin you can call this function
test.connectw...
Using Parcelable in Android
In simple words , Send the complete object to other views like (switching b/w different Activity).
What if you need to send 50 value to other Activity, Don't write 50 putExtra to your code as it will increase the size of code ,just use Parcel...
How to create Cordova plugin directory structure
Hi,
Here is the steps to create cordova plugin directory structure : Install Yeoman by this command
$ npm install -g generator-cordova-plugin
then go to folder where you want that directory structure and run this command
$ yo cordo...
How to design XSL-fo style-sheet in XML
Hello guys
I need help to design XSL-fo style-sheet but I don't know which is the best way of design to XSL-fo for generate PDF file.
Please suggest me best way of design XSL-fo style-sheet.
My code format is below :
<?xml version=...
Using splice() to Remove Elements in Javascript
Basically splice() method is used to change the content of an array by removing existing element and add new elements . It contain three parameter start , deletecount and ItemN.
start ->It is the position where to start the selection .And i...
Android Studio Configuration
Hello,
I have a question regarding the OnePlusOne phone in Android studio.
I would like to know if exist the possibility to importing the hardware profile of this phone or to configure it.
I just would like to see the design view of my devic...
Restart your schedule with AlarmManager after phone reboot
When you create a schedule using AlarmManager and you found that it stops working after phone reboot. So to avoid this problem we need to add Broadcast receiver that should receive "BOOT_COMPLETED" broadcast.
For this you need to register your...
Event Booking Extension
Events Booking is a Joomla Events Registration extension which is a very powerful, rich featured and easy to use. You can create both free and paid events and registrants can register themselves to the event either as a group or individual via o...
Difference between 'null' and 'undefined'
The difference between undefined and null is as follows,
1-When we declare any variable and we do not give it a value then it will have the value undefined.Undefined is a type all to itself
2- We can declare a variable and can set it to n...
Javascript math.min() and math.max() function
JavaScript min() Method
This method returns number with lowest value
Here is the example of math.min()
<p>Click the button to return the lowest number of 5, 10,2,0.</p>
<button onclick="myFunction()">re...
Deep Linking for App content Android
Deep Linking enable user to enter into app from Search.
For enable Deep Linking we must add intent filters for the relevant activities in application manifest. These intent filters allow deep linking to the content in any activity of applicat...
How to use Google Search
In this 21st century, Search Engines are the backbone of every internet user. Here are some of the hidden Tips & Tricks which will help you in improving your search on Google:-
Quotation Marks() - Use ...
Local JavaScript Variables
Local JavaScript Variables
A variable declared inside a function has the scope only in that function, thus the variable is the local variable.
The variable doesn't have any recognition out side the function definition.
Local variables sco...
Jomsocial
Jomsocial is a powerful component which is used for creating social networking sites in Joomla. It provides various facilities to the developer such as:
allow you to create your own social network.
Sharing photos, videos.
Managing events.
...
Operator in Javascript
There are following types of operators in JavaScript.
1- Arithmetic Operators ( +,-,*,/,%,++,-- )
<script>
var a= 1;
var b = 2;
var c = a + b;
document.getElementById("demo").innerHTML = c;
</script>
2- Comparison (Rel...
Javascript Undefined Values
Javascript Undefined Values
In a program the variables declared gets the value at the time of the variable declaration or get assigned after some calculation or received by the user input, but the variables which are not assigned any value at ...
JavaScript objects
A javaScript object is an entity having state and behavior. For example: car, pen, bike, chair, glass, keyboard, monitor etc.
Objects are real world entity.
JavaScript is an object-based language. Everything is an object in JavaScript.
Ther...
JavaScript Assignment Operators
JavaScript Assignment Operators
The Assignment Operator is used to assign the value of the right operand to the left operand. The key rule for this operator is that it always assign value from right to left.
The Assignment operator (=) work...
Javascript () Operator Invokes the Function
Javascript () Operator Invokes the Function
During the call of the function the code of the function gets executed. the call to the function can be made by the name of the function followed by the parentheses ().
example:
func(1,2);
...
Slicing an Array
Basically slice() method is used to extract some particular elements from an original array (suppose i need to show only selected elements from original array). It contain two parameter start/begin and end.
begin ->It is the position where t...
Javascript length property
Javascript length property is used to find out the length of characters or it may returns number of elements in an array
Every Character gets counted in this property.
JavaScript Array length Property
The length property returns the number ...