By Niraj on November 23, 2009
Yes we can recover password of a user on Wordpress incase he donot have the Email address used to sign up on the wordpress. Here is a way to get it.
Requirements:
1. Should have Database Access
2. Have the FTP of the wordpress
Procedure:
So, you have a the DB access. Explore the DB in PHPMYADMIN interface. (You can [...]
Posted in Php n MySQL, Web Designing, Wordpress | Tagged Password, wordpress
By Niraj on November 12, 2009
Hello friends,
I am sure! Once or ever you must have been searching for a function in wordpress which can just convert your page name or post name into Page Id. Wow! I have the solution. Please try this code let me know your experiences.
function wt_get_ID_by_page_name($page_name)
{
global $wpdb;
$page_name_id = [...]
Posted in Php n MySQL, Wordpress | Tagged get ID by page name, get ID from post name, php functions, wordpress, wordpress expert
By Niraj on October 4, 2009
The simple social bookmarking module for drupal allows you to add social bookmarking buttons for each pages in the configured blocks.
How to install?.
Download drupal social bookmarking module
Install the ’simple_bookmark’ module and enable it.
Go to blocks configure page and configure it, where you want to place the social bookmarking buttons, footer will be the good place.
Give [...]
Posted in AJAX, JavaScript, Php n MySQL | Tagged Drupal as Social Bookmark, Drupal Developer india, Drupal Theme Expert india
By Niraj on October 4, 2009
Here are some of popular open source php based shopping (e-commerce) cart scripts.
osCommerce
Zen Cart
Magento
Ubercart with Drupal
Opencart
Posted in AJAX, JavaScript, Php n MySQL | Tagged best shopping carts, How to shopping cart, Shopping cart developer, Shopping cart india, top shopping carts
By Niraj on October 4, 2009
Here are some useful tips to maintain the mysql and SQL coding standard.
Always write queries in Capital Letters.
Quote around table names and column names by using back tick (`) operator.
Always use table names and column names in small letters.
Use underscore (_) for table names and column names.
Always fetch required fields only, do not select (*) [...]
Posted in AJAX, JavaScript, Php n MySQL | Tagged Database administrator india, MySql developer, MySql expert india
By Niraj on October 4, 2009
Here are a huge list of open source php based content management systems.
XOOPS
Mambo
Joomla
Drupal
Yupi CMS
Wolf CMS
Website Baker
Typolight
Triton
plum cms
pligg cms
phpwcms
php-nuke
php-fusion
php micro CMS
OpenRat CMS
Limny
Limeware
Lemon CMS
Jaws
html-edit
Guppy
eliteCMS
CMS Made Simple
Posted in AJAX, JavaScript, Php n MySQL | Tagged Best CMS for my website, CMS and PHP developer india, CMS programmer india Wordpress developer, Wordpress as CMS
By Niraj on October 4, 2009
By default mysql searches are case insensitive, that is from the following table:
cms
description
rating
Joomla
Joomla is an open source cms with nice design
3
Drupal
Drupal is an open source CMS framework based on MVC architecture
4
This query:
SELECT * FROM `table` WHERE `cms` LIKE ‘%JOOMLA%’
will fetch the first row of the records. If we want to case sensitive select, we can [...]
Posted in AJAX, JavaScript, Php n MySQL
By Niraj on October 4, 2009
What is the difference between PHP running as a ‘module’ and as a ‘CGI’?
While php running as a module, the php settings from php.ini file are loaded into memory, and it will be available for each page from memory only.
While running as a CGI mode, the web server will load the php.ini file each time. [...]
Posted in AJAX, JavaScript, Php n MySQL
By Niraj on October 4, 2009
The much awaiting php version PHP 5.3 has been released. The important features of PHP 5.3 version are:
‘goto’ lable for jumping
Namespaces supports for PHP Classes.
Closures or Anonymous function same like javascript/jQuery anonymous functions.
garbage collection support
And much more….
You can see the php 5. 3 release version here.
Posted in AJAX, JavaScript, Php n MySQL
By Niraj on October 4, 2009
Here are few JavaScript interview questions and answers:
How do you delete the last element of an array in JavaScript?
array_object_variable.pop();
The pop() method in JavaScript will delete the last element of the array. Whereas the push() method will add a new element at the start of the array.
How do you get the random number between 0 and [...]
Posted in AJAX, JavaScript, Php n MySQL
Recent Comments