Wednesday, December 18, 2013

वर्डप्रेसवर नविन वेबसाइट बनवाता मला येणारे प्रॉब्लम व् त्यावर मात कशी केली

0 comments
नविन वेबसाइट  बनवताना मला  येणारे प्रोब्लेम  कस्या  प्रकारे  मी  सोल्व करतोय। प्रतेक  वेळी  मी जे जे अनुभव  येतील ते लिहिण्याचा  प्रयत्न  राहिल 

वर्डप्रेस मी इनस्टॉल केलय  आता मला पहिला प्रॉब्लम आलय 

वेबसाइट ओपन होतेय पण  लोग इन करताना एरर दाखवते 

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

१  सोलुशन :

पहिल्यांदा। htaccess  फाइल  चे  नाव  बदलून  बगितले। आता परत लोग इन करायचा प्रयत्न  केला असता  इंटरनल एरर गेली म्हणजे  .htaccess  फ़ाइल मधे  प्रॉब्लम होता
 S २ member प्लग इन  मुळे  लॉगिन चा प्रॉब्लम येत  होता

2.  मेमोरी लिमिट वाढवणे

wp-config.php  ओपन करूँ त्या  फ़ाइल मधे  खाली  दिलेली  लाइन ऐड  करावी 

define('WP_MEMORY_LIMIT', '64M');



Read More ->>

Friday, November 22, 2013

How I run My WordPress Blog smoothly & fast

0 comments


1. Remove Wordpress Version Number -


By default WordPress adds a meta tag which displays the WordPress version number that your WordPress site is running on. The version number is added just for tracking. This information can be useful to hacker to identify which version of WordPress you are running. If you are not running the latest version of WordPress the hackers can try to target the known vulnerabilities in that version to hack your site.


The correct way to remove the version information both from the head section and RSS feeds of your site is to add the following code to your functions.php file of your theme.

 *************  Code ***********


function my_remove_version_info() {
     return '';
}
add_filter('the_generator''my_remove_version_info');

 *************  End Code ***********

By adding the above code, the WordPress version number will be removed from the head section and RSS feeds on your site.

For more help for this topic Read this article : http://techtalk.virendrachandak.com/how-to-remove-wordpress-version-number/#ixzz2lOMa8VpK 


2. Remove Wordpress Version Number - from CSS & JS files


Many CSS and JS files in the WordPress also have the WordPress version number appended to their source. 

Remove only the “ver” parameter which have WordPress version number from all enqueued CSS and JS files
1
2
3
4
5
6
7
8
// remove wp version param from any enqueued scripts
function vc_remove_wp_ver_css_js( $src ) {
    if ( strpos( $src, 'ver=' . get_bloginfo( 'version' ) ) )
        $src = remove_query_arg( 'ver', $src );
    return $src;
}
add_filter( 'style_loader_src', 'vc_remove_wp_ver_css_js', 9999 );
add_filter( 'script_loader_src', 'vc_remove_wp_ver_css_js', 9999 );


For more help for this topic Read this article  http://techtalk.virendrachandak.com/how-to-remove-wordpress-version-parameter-from-js-and-css-files/#ixzz2lOU1pOTz 
Follow us: @virendrachandak on Twitter
Read More ->>

Saturday, September 21, 2013

वर्डप्रेस में डैशबोर्ड मैनेज करने का तरीका

0 comments
वर्डप्रेस में डैशबोर्ड मैनेज करने का तरीका 

जब विजिटर साईट पे लॉग इन करता है तब डैशबोर्ड तब उसे अपने कुछ प्लग इन दिकते  है. लेकिन हमे अपने कुछ प्लगइन पर्सनल रखने होते है. वो सुब प्लगइन विजिटर के काम के नहीं होते कुछ अपना प्राइवेट डाटा सब से बचाना के लिए निचे दिया हुआ स्क्रिप्ट function.php  में डाले 
उससे सिर्फ डैशबोर्ड के जो प्लग इन दिखने है वो दिखा सकते है और जो नहीं दिखने चाहिए वो हाईड हो जायेगे 

Appereance  में Editor  आप्शन  में function.php  ओपन करे 

=========== Start    ==============

//Default Dashboard Widgets : disable
function disable_default_dashboard_widgets() {
  remove_meta_box('dashboard_right_now', 'dashboard', 'core');
  remove_meta_box('dashboard_recent_comments', 'dashboard', 'core');
remove_meta_box('dashboard_incoming_links', 'dashboard', 'core');
remove_meta_box('dashboard_plugins', 'dashboard', 'core');

remove_meta_box('dashboard_quick_press', 'dashboard', 'core');
remove_meta_box('dashboard_recent_drafts', 'dashboard', 'core');
remove_meta_box('dashboard_primary', 'dashboard', 'core');
remove_meta_box('dashboard_secondary', 'dashboard', 'core');
remove_meta_box( 'vfb_dashboard', 'dashboard', 'normal' );
remove_meta_box( 'vfb_dashboard_recent_entries', 'dashboard', 'normal' );
remove_meta_box( 'vfb_dashboard_recent_entries', 'dashboard', 'normal' );
remove_meta_box( 'vfb-dashboard', 'dashboard', 'normal' );                                          
remove_meta_box( 'vfb-dashboard', 'dashboard', 'core' ); 
remove_meta_box( 'shcfeed_widget', 'dashboard', 'core' ); 
remove_meta_box( 'shcfeed_widget', 'dashboard', 'normal' );                                          
remove_meta_box( 'shcfeed_widget-hide', 'dashboard', 'core' ); 
remove_meta_box( 'shcfeed_widget-hide', 'dashboard', 'normal' );    
}
add_action('admin_menu', 'disable_default_dashboard_widgets');


//Default Dashboard Widgets : enable for Admin
if (!current_user_can('manage_options')) {
        add_action('wp_dashboard_setup', 'disable_default_dashboard_widgets');
}

=========== End  ==============

ऐ अपडेट मेरे भविष्य में काम आये इसलिए लिखा है।  इससे आपको भी कुछ फायदा हो। 
कुछ changes  करनी हो आप कमेंट कर सकते है। 


Read More ->>

Wednesday, May 29, 2013

मेरे बैनर बनाने के सिंपल तरीके

0 comments
मेरे बैनर  बनाने के सिंपल तरीके 

मै  Advt. करने के लिए कुछ सिंपल तरीके धुंद रहा हु. उसमे से मुजे कुछ अचे तरीके मिल गए है . जो के मई यहाँ पे आप के साथ शेयर कर रहा हु. 

१  BANNER  FOTOR   बैनर फोटर  

बैनर फोटर एक अछी वेब साईट हें . इस साईट पे बड़ी आसानी से बैनर बना सकते है 
http://banner.fotor.com/

 4 6 8  by  6 0  बैनर    सैंपल 







जैसे जैसे मुजे कुछ नया update  करने को मिलाता है मई अपडेट करता जाऊंगा .

आप को कुछ जानकारी मिले तो अवश्य शेयर करे. 


Read More ->>

Monday, May 13, 2013

.htaccess फाइल कैसे बनाये और उसका इस्तमाल करे

0 comments
 वेब साईट बनाने के बाद में उसे सुरक्षित रखना पड़ता है.  उसके लिए अलग अलग तरीके इस्तेमाल किये जाते है . उसमे से एक तरीका है की किसीको हमारे पास साईट पर की फाइल ओपन न कर सके.
.htaccess  फाइल अपने सी पैनल में  लोड करके उसमे कुछ कमांड डालने से साईट की सुरक्षा बढ़ जाती है.


१  Authorization, authentication  .htaccess फाइल डायरेक्टरी की सुरक्षा कराती है 
Rewriting  URL   - लम्बी URL  को छोटा कर के मेमोरेबल बनाती  है 
Blocking  -  allow / deny  से IP  अड्रेस  डोमेन ब्लाक कर सकते है. 


.htaccess फाइल  में क्या टाइप करे और उसके फायदे 



आपको .htaccess  के बारे में  कुछ जादा  जानकारी हो तो आप शेयर कर सकते है, और एक दुसरे की मदत करते आगे बढ़ सकते है. 
Read More ->>

Tuesday, June 12, 2012

SSC रीजल्ट की साईट - 13 जून 2012

0 comments
एस एस  सी  का  रीजल्ट आप  नीचे दि  गई  वेबसाइट पे देख सकते है



Read More ->>

Sunday, December 11, 2011

Money making site but not pay money to you

0 comments
Want to make money  It's Good Idea.....
but not not getting money in your account is Bad Idea.

Trying to Review of Not Paying Site Here.......



viewbestads.com

 Concept is good : Its simple but interesting concept, get rewards for zero investment and for no buying/selling of products; on top of it you see ads of your interest, read only positive news, participate in quiz etc.

Complaints against site :   Look
  1. Not paying Rewards
  2. Didn't Receive the Cheque
  3. You Get 3rd Grade Rewards  

Jeetle.in

               Bid Site :  Some last sold bid of site  :Pulsar @ 15.57 only , Laptop sold @ 12.61


Complaints against site :  
  1.  Cheating customers by running two websites with same database  
  2. Fraud Bidding




Read More ->>
 

About Me

Rajendra Todkar
View my complete profile

Recent Posts

Recent Comments

| baat ban jaye © 2009. All Rights Reserved | Template Style by My Blogger Tricks .com | Design by Brian Gardner | Back To Top |