How To Redirect Blogger 404 Error Page To Homepage

June 27, 2015 Add Comment
A 404 error page tells you and search engines that a page is not found by displaying a text similar to it "Sorry, the page your were looking for is this blog does not exist" . This may happen because you have changed your URLs over time, either removed a few pages when you overhauled your design or a visitor may have accidentally misspelled an URL in existent in your blog, so it automatically redirects to the 404 error page (page not found).



And probably this will not make a good impression on the greatest potential users of our blog. Before the user clicks the back button or close the window/browser's tab, thus leaving our site forever, we may want to redirect 404 error in Blogger to a page, where are chances that the visitor will continue reading our blog. One of the most used methods is the "meta refresh" but the problem with this method is that it breaks navigation (doesn't allow to return back). In this case, the best method is by using Javascript about which i will go in detail below.

Redirect Blogger 404 Error With Javascript :

Go to your Blogger Dashboard, select your blog and then to Settings > Search Preferences > Custom Page Not Found.


Copy and paste the following code inside the empty box :

Sorry, the page you're looking for in this blog does not exist.
You will be redirected to homepage shortly.
<script type = "text/javascript">
BSPNF_redirect = setTimeout(function() {
location.pathname= "/"
}, 5000); 
</script>

The message which is going to be displayed can be modified as you want. If you are willing to redirect your blog 404 page to another page other than your home page, just replace pathname to href and / with url of your page. And finally, the number 5000 which is the delay expressed in milliseconds, can be changed to other value if this is more convenient.

Next thing to do is to save all changes made in this section and do a little test to check if the code works well. You can verify 404 error page functionality by adding a custom text at the end of your blog address and after hitting Enter, you should see the error page followed by a redirection after 5 seconds. That's it !
You Are Friendly Kind And Caring

You Are Friendly Kind And Caring

June 25, 2015 Add Comment
You are friendly, kind and caring,
Sensitive loyal and understanding,
Humorous, fun, secure and true,
Always there,..Yes that's you !

Special, accepting, exciting and wise,
Truthful and helpful, with honest blue eyes,
Confiding, forgiving, cheerful and bright,
Yes that's you,...no one bit of spit,

You're one of a kind, different from others,
Generous, charming, but no one that some others,
Optimistic, thoughtful, happy and game,
But not just another, in the long chain,

Appreciative, warm and precious like gold,
Our friendship won't tarnish or ever grow old,
You'll always be there, i know that is true,
I'll always be here, always for you.

"Angela Lee Hillsley"
A Friend Is Someone We Turn To

A Friend Is Someone We Turn To

June 25, 2015 Add Comment
A friend is someone we turn to,
When our spirits need a lift,
A friend is someone we treasure,
For our friendship is a gift,
A friend is someone who fills our lives,
With beauty, joy and grace,
And make the whole world we live in,
A better and happier place.

"Jean Kyler McManus"

Happy Ramadan Greetings Photos 2015 Free Download

June 25, 2015 Add Comment
Download Free Happy Ramadan Greetings Photos 2015 Free Download


Replace Content In Your Wordpress Using SQL

June 24, 2015 Add Comment
Like we all know, we can use SQL to replace or remove some content in our Wordpress using phpMyAdmin, on this i will show you How To Replace/Remove Content On Your Wordpress Using SQL. On this trick you can access through phpMyAdmin on your server or using plugin Wp-DBManager and you can direct access through Wordpress Admin panel.



After you install DB Manager or logging into phpMyAdmin, go to run SQL interface and do this code:

UPDATE wp_posts SET post_content = REPLACE ( post_content, 'nofollow ', '' );

On this sample, you will remove all content with nofollow on your post content. Please not you can multiple SQL query too by using this method:

UPDATE wp_posts SET post_content = REPLACE ( post_content, 'nofollow ', '' );
UPDATE wp_posts SET post_content = REPLACE ( post_content, ' nofollow', '' );

UPDATE wp_posts SET post_content = REPLACE ( post_content, ' rel="nofollow"', '' );

This method does the same thing but multiple queries are executed at the same time. You can tweak this code what ever you want, like replace wordpress.org with funisonline.blogspot.com, so all your content with url's to wordpress.org will be replaced into funisonline.blogspot.com using this method.

UPDATE wp_posts SET post_content = REPLACE ( post_content, 'wordpress.org ', 'funisonline.blogspot.com' );

That's all, i hope our tutorial replace or remove content on your Wordpress using SQL worked for you.

How To Display Any External RSS Feed On Your Site

June 24, 2015 Add Comment
Have you seen other bloggers who display their other blog's feed on their site. You want to do it too for extra promotion and traffic. Well here is the tutorial for you. Simply paste the following code in anywhere in your theme.



<?php include_once(ABSPATH.WPINC.'/feed.php');
$rss = fetch_feed('http://feeds.feedburner.com/funisonline');
$maxitems = $rss->get_item_quantity(5);
$rss_items = $rss->get_items(0, $maxitems);
?>
<ul>
<?php if ($maxitems == 0) echo '<li>No items.</li>';
else
// Loop through each feed item and display each item as a hyperlink.
foreach ( $rss_items as $item ) : ?>
<li>
<a href='<?php echo $item->get_permalink(); ?>'
title='<?php echo 'Posted '.$item->get_date('j F Y | g:i a'); ?>'>
<?php echo $item->get_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>

How To Create A Page That Shows Random Posts In Wordpress

June 24, 2015 Add Comment
Have you even been to a site and saw this cool feature ? They have a link in their top navigation to something like Stumble ! or Read Random Articles, or some other creative text. Each time you refresh, you are delivered with a new post. Well this trick is just for you then.



You would need to follow the trick # 1 in this post to create a custom page template, and simply paste this code in there:

"<?php
    query_posts(array('orderby' => 'rand', 'showposts' => 1));
    if (have_posts()) :
    while (have_posts()) : the_post(); ?>

    <h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>

    <?php the_content(); ?>

    <?php endwhile;
    endif; ?> "

This is a simple Wordpress loop that is running a query to display random posts and the number 1 in there is telling Wordpress to only show 1 post. You can change that number, but most of the time people do it one post a time.

How To Add Voice Search Capability In Blogger

June 24, 2015 Add Comment
A good blog is the one which is not only saturated with good content but also it eases the difficulties of its fan by providing them alternative ways to make their work easier and quicker. Being a blogger, you should have enough potential to keep your fans in your hands and not letting them to wander for other blogs. Never letting your fan base decrease has been the greatest achievement of everyone's bright career. Be it blogging or music, your work or speech, one should never let the people, who adore them, slip out of their hands. A fully customized blog is the foremost recommended way to keep your fans stick to your blog.

Now think about how cool it would be when people will speak to search posts in your blog rather than typing long sentences. Yes ! you got it right. In this post we will be telling you how to add voice search capability in your blog. After providing you with a number of different ways to customize your blog, here we come again with a new feature that is called Voice Search.

Voice Search is a voicemail service which lets the users to know their queries by speech instead of writing, because nobody has got time for that. It will give your blog a more professional look. In this post, we would be telling you about the feature " Voice Search " its advantages and how to add it to blogger. In this post, i will show you how to add voice search capability in blogger.



Why To Add Voice Search In Blogger ?

Now the question arises why should we add voice search ? Well, here you go! it has been reported that half of the teens use voice search instead of typing the whole thing. It actually shows the need of voice search. Who does not want to do their work in the most easiest and time saving way? Voice search lets you to speak your mind and eases your hardships. Adults claim voice search to be Tech savvy. It is however assumed the longer your query is, the more chance you have got for the incorrect interpretation, although there is nothing like that. Voice search goes hand to hand and comes handy in most aspects.

How To Add Voice Search in Blogger :

Now after knowing so much about Voice Search, you might be wondering how to become its benefactor. Well, inserting voice search is a piece of cake. You do not have to wait much long not is there any need of pages long coding. All you have to do is to follow these simple steps and get your work done within minutes.

Adding a voice search is just a game of few minutes. You only need to add a line to your search input in order to avail that facility.
First login to your blogger account then go for dashboard.

  • After logging in, choose Template and then go for Edit HTML
  • It is then followed by a popup window. A popup window will open, press CTRL+F for windows.
  • Now there will be series of different codes. You just have to add x-webkit-speech to the current search code which goes like this.
"<input class='field' id='s' name=”q” x-webkit-speech=”” x-webkit-grammar=”builtin:search” onwebkitspeechchange=”startSearch()” />"

Preview your blog and you are done adding a voice search to your blog !

Now go and add a Voice Search to your blog as well and let your fans gain some benefits from it. We hope this post have helped you in learning how to add voice search capability in blogger. Share your thoughts in the comment section below.

Dragon Blade 2015 DvdRip Dual Audio Eng Sub

June 24, 2015 Add Comment
Dragon Blade 2015 DvdRip Dual Audio Eng Sub



Starring : Jackie Chan, Adrien Brody, John Cusack, Sharni Vinson
Genre : Action, Drama, Adventure
Directed  By : Daniel Lee
Subtitle : English, Spanish

Watch Online - Click Here
Download Free - Click Here

What The Jutt Punjabi Movie 2015 DvdRip 275 MB

June 24, 2015 Add Comment
What The Jutt Punjabi Movie 2015 DvdRip 275 MB


Starring : Harish Verma, Isha Rikhi, Binnu Dhillon, B N Sharma, Vipul Roy, Poonam Rajput.
Genre : Comedy, Romance
Directed By : Saket Bahl


Watch Online - Click Here
Download Free - Click Here


How To Add Whatsapp Share Button In Blogger

June 23, 2015 Add Comment
Blogger gives you the opportunity to promote your content via many social networks. Back in year 2009, when WhatsApp was launched, no one knew that it would challenge the graph of Facebook. In the year 2013, WhatsApp was declared as the most used social network, leaving Facebook behind. Today in this post i will tell you that how to add whatsapp share button in blogger.



Why Should You Add Whatsapp Share Button :

With the increase use of mobile phones by each passing day, it is necessary for you to make the best use of your phone by optimizing it and enabling it so share sites, writing content or anything you liked and want to share with your friends as well.

In the beginning Whatsapp was only a mobile feature but its increasing fame led to its availability on web as well. Now, just think about how beneficial it would be for you if one of your subscribers like any article on your blog and he shared it via WhatsApp, more the people view his shared article, more your website traffic will boost.

How To Add Whatsapp Share Button in Blogger :

Before adding Whatsapp share button to blogger, first we will discuss its position. It is recommended to add such traffic boosting widgets at the end of your article instead of putting them to the side bar running along the entire length of blog.

You can add Whatsapp share button with the help of following method :

Move your mouse pointer go to Template >> Edit HTML look for your old share buttons. Add the following code with your previous share buttons. Be keen with the codes.

"<!-- Whatsapp Share Buttons Start -->
<script type='text/javascript'>if(typeof wabtn4fg===&quot;undefined&quot;){wabtn4fg=1;h=document.head||document.getElementsByTagName(&quot;head&quot;)[0],s=document.createElement(&quot;script&quot;);s.type=&quot;text/javascript&quot;;s.src=&quot;https://dl.dropboxusercontent.com/u/7330191/whatsapp-sharing.js&quot;;h.appendChild(s);}</script>
<a class='wa_btn wa_btn_s' expr:data-href='data:post.url' expr:data-text='data:post.title' href='whatsapp://send' style='display:none'>Share</a>
<!-- Whatsapp Share Buttons End --> "

Preview your template and then save it.

Once above all steps are executed successfully it means that you are successful in execution of the task assigned. Now you could preview the blog and need to save the changes to the template by pressing the orange "Save Template" button.

Add Paypal Donation Button To Your Blog Or Website

June 23, 2015 Add Comment
If you are running a blog or website have huge number of contents then adding Paypal Donation button to your blog will bring more benefits for you because if your site getting huge number of visitors then by adding this Paypal button you can get some donation for your hard work that you have done already by adding contents so if you have a site about some free things like cracked tools, free wordpress themes or some working methods of earning online, once a visitor will find your site and gets some benefits from your site then he/she will think about your hard work and if you have done really hard work into blog or website creating and sharing, when he/she feel some special about your blog, they can Donate you some money that will be much of you.



How To Add Paypal Donation Button In Your Side Bar Or Footer :

  • Get yourself a Paypal account if you don't already have one.
  • Login to your Paypal account.
  • Click on the Merchant Services tab.
  • Click on Donations text link.
  • Choose your button from a button type.
  • Write your company or organization name.
  • Write Donation ID if available.
  • Stick with the default button unless you wish to customize it.
  • Choose your currency depending on your needs.

5 Best Online Backlinks Checker Tools For Your Website

June 23, 2015 Add Comment
Backlinks are most important part of Seo as we say that it's blood of body without Backlinks your blog could not get top position in Google, Google is most used search engine in the world if you will do research about your query on Google you will find most popular websites on the top of Google, When you see some sites that are mostly on top a question rise in your mind that how the admin of website do it?
Now i am going to answer your question that how you can Rank your Website on top of Google, Backlinks is a only best way to lead your site on top of Google so here i am sharing just 5 tools to check backlinks of your competitors websites.



Online Backlinks Checker Tools For Your Website :


More Info :
                    Dear users these tools are tested by me and i am 100% satisfied with them you can find it helpful and if you have a good backlinks checker tool, feel free to mention below in comments, i will try to add your suggestion also.

Akhiyan Latest Song 2015 By Tony Kakkar, Bohemia, Neha Kakkar

June 23, 2015 Add Comment
Download Latest Punjabi Song Akhiyan By Tony Kakkar, Neha Kakkar, And Bohemia.

Latest Indian Pop Songs 2015 Download Mp3.



  • Akhiyan - Download   - Tony Kakkar, Neha Kakkar, Bohemia

Aaja Meri Jaan Full HD Video Song I Love NY Movie 2015

June 21, 2015 Add Comment





Description : Aaja Meri Jaan Full HD Video Song I Love NY Movie 2015. Sunny Deol And Kangna Raunat Latest Movie I Love NY 2015 All HD Video Songs.

Tu Chahiye Full HD Video Song Bajrangi Bhaijaan Movie 2015

June 21, 2015 Add Comment





Description : Tu Chahiye Full HD Video Song Banjragi Bhaijaan Movie 2015. Download Free Latest Hindi Movie Bajrangi Bhaijaan Movie 2015 All HD Video Songs, Tu Chahiye Latest Song By Atif Aslam 2015.

Selfie Le Le Re Full HD Video Song Bajrangi Bhaijaan Movie 2015

June 21, 2015 Add Comment





Description : Selfie Le Le Re Full HD Video Song Bajrangi Bhaijaan Movie 2015. Download Free Salman Khan's Latest Movie Bajrangi Bhaijaan All HD Video Songs.

Nabi Se Pehchan Meri Naat By Hafiz Tahir Qadri

June 21, 2015 Add Comment
Download Free Nabi Se Pehchan Meri Naat By Hafiz Tahir Qadri



Bajrangi Bhaijaan Movie 2015 Full Mp3 Songs

June 21, 2015 Add Comment
Download Free Bajrangi Bhaijaan Movie 2015 Full Mp3 Songs


Starring : Salman Khan, Kareena Kapoor, Nawaz Ud Din Siddiqui, Ali Quli Mirza, Harashaali Malhotra.
Director : Kabeer Khan
Producer : Salman Khan, Rockline Venkatesh
Music Director : Pritam Chakraborty
Lyrics : Various

  • Selfie Le Le Re - Download   - Vishal Dadlani, Nakash Aziz, Pritam, Aditya Pushkarna
  • Tu Chahiye - Download   - Atif Aslam 
  • Bhar Do Jholi Meri - Download   - Adnan Sami
  • Aaj Ki Party - Download   - Mika Singh
  • Chicken Song - Download   - Mohit Chauhan, Pritam
  • Zindagi - Download   - Zubin Nautiyal, Pritam
Download Full Movie Mp3 Songs - Download   - (128 Kbps)
Download Full Movie Mp3 Songs - Download   - (320 Kbps)


    Virtues And Blessings Of Ramadan

    Virtues And Blessings Of Ramadan

    June 20, 2015 Add Comment
    Virtues of the month of rewards are known to most Muslims. The biggest of all is that Allah has said that fasting is for Him and He will reward it. He said, as reported in a Hadith Qudsee:

    "Expect for fasting which is only for my sake, and i will reward him for it"

    Amongst the many virtues of Ramadan, following are some of them.

    • Forgiveness of sins (sins that potentially are blocking Allah's blessings in our lives).

    • Gate of heaven are opened (showing Allah's bountiful blessings).

    • Gate of hell are closed (showing Allah's mercy).

    • Devils are chained up (making it easier for Muslims to get closer to Allah).

    • It has a blessed night which is better than 1000 months (83 years and 4 month).

    • Quran recitation provides an opportunity of great reward in this life and the hereafter (besides training one to recite Quran regularly during the rest of the year).


    The following are Quran verses, prophetic sayings, and scholarly wisdom on the virtues of the month of Ramadan.

    "When Ramadan begins, the gates of Paradise are opened and the gates of Hell are closed, and the devils are put in chains"

    "Whoever fasts Ramadan out of faith and with the hope of Allah's reward, all his previous sins will be forgiven"

    "The month of Ramadan in which was revealed the Quran, a guidance for mankind and clear proofs for the guidance and the criterion. So whoever of you sights (the crescent on the first night of) the month of Ramadan is present at his home), he must observe Sawm (fasts) that month."

    • Verily, we sent it (this Quran) down in the night of Al-Qadr (Decree).

    • And what will make you know that the Night of Al-Qadr (Decree) is ?

    • The night of Al-Qadr (Decree) is better than a thousand months (worshiping Allah in that night is better than worshiping him a thousand months i.e 83 years and 4 months).

    • Therein descend the angels and the Rooh by Allah's permission with all Decrees.

    • (All the night), there is peace (and goodness from Allah to his believing slaves) until the appearance of dawn.

    • Abu Hurayrah (may Allah be pleased with him) who said : The messenger of Allah (Peace be upon with him) said : "There has come to you Ramadan, a blessed month which Allah has enjoined you to fast, during which the gates of heaven are opened and the gates of hell are closed, and the rebellious devils are chained up. In it there is a night which is better than a thousand months, and whoever is of its goodness in indeed deprived."

    Photo Editor By Zentertain For Android

    Photo Editor By Zentertain For Android

    June 19, 2015 Add Comment
    Download Free Photo Editor By Zentertain For Android :

    Photography applications are really popular among smartphone users mainly because people like to snap all sort of pictures and then edit them, before they post them on social networks. There are many photography editors to choose from, one of them is Photo Editor By Zentertain.

    It's a lightweight but useful app, although it supports the same editor by Aviary, the one that many other applications use. This means, that the app can't really stand out from the crowd and it's filters are similar to that of many other apps on the market.

    Easy To Use Interface With Some Features :

    The app launches directly with the home screen, it doesn't have tutorial or any kind of instructions to let new users know how to access features and tools inside the app.

    Still, you wouldn't need them since the interface is really intuitive and provides users with everything they need in order to edit photos. However, it doesn't have a settings menu, which means that you can't pick the destination folder for output files or the format of edited pictures.

    Edit Your Pictures Easily :

    The app makes it easy to edit your photos, it displays on the home screen all the recently snapped pictures so you can simply tap on the one that you wish to modify. In addition, you can access the camera on your phone and snap pictures or share images with friends on social networks.

    You can have the app automatically enhance your pictures by adjusting colors and using the color fix feature. There are also a number of effects that you can apply, although we've seen better in other applications.

    More Features :

    Other than that, you can apply frames and stickers to your pictures, but you'll have to individually download packs of such items. Moreover, the app lets you crop photos into various sizes, change the focus on your pictures, the orientation.

    You can also adjust the brightness, saturation, contrast and even warmth of colors. Sharpness can also be adjusted and you can use the splash features to add colors to a black and white picture. Other pictures include the option to draw, add text to pictures, adjust redeye, whiten colors or remove blemish.

    When you are done editing you can save photos and share them with friends on social networks. The app itself isn't spectacular, but the photo editor from Aviary provides you with all the tools to edit pictures, even if that means using average filters.

     

    The Blessed Month Of The Year

    The Blessed Month Of The Year

    June 19, 2015 Add Comment
    The Blessed Month Of The Year Has Come,

    It is the season of Ramadan,

    Fasting, Praying, Repenting From Sins,

    Hoping That Allah Shower You And,

    Your Beloved With Loads Of Blessings,

    May The Spirit Of Ramadan Bless You With,

    Prosperity, Wealth And Happiness In Life,

    May Allah Forgive You For All Your Faults And Wrong Doing.

    "Ramadan Mubarak"
    The Month Of Shabaan And Misconceptions Related To Its Virtues

    The Month Of Shabaan And Misconceptions Related To Its Virtues

    June 02, 2015 Add Comment
    There are many practices related to the month of Shabaan common amongst Muslims that are not supported by any authentic hadith of the Prophet (Saw). This post summarizes some of those mistakenly held beliefs. Ibn Rajab Al-Hanbali said,

    "Concerning the virtues of the night of the fifteenth of Shabaan there numerous ahaadeeth, concerning which the scholars differed, but most of them classed those ahadeeth of the Prophet (Saw) as Da'eef (weak), and Ibn Hibaan classed some of them as saheeh."

    (Lata'if Al-Ma'aazif, 261.)

    Similar to other matters, care should be taken to verify those ahadeeth, even though some of those ahadeeth mention a chain of narrators. As Muslims, we have been cautioned to not attribute anything to the Prophet (Saw) that He did not say. It makes no difference whether such an attribution is intended for good or for evil intentions. We see that in the stern warning contained in the words of the Prophet (Saw) in which he said :

    "Whoever tells a lie about me deliberately, let him take his place in Hell."

    Here is an explanations of some of those mistakenly held beliefs and the various explanations of the known scholars of Ahl-Us-Sunnah.

    No Special Virtues For Middle Of Shabaan :

    One of the very common but mistaken beliefs has to do with attributing special virtues to the 15th of the month of Shabaan. The reality, however, is that the hadith literature lacks the evidence of any authentic ahadith related to this topic. Shaykh Ibn Jidreen states the following :

    " There is no saheeh marfoo, report (A hadith that traces a statement directly to the Noble Prophet (Saw) without any break in the chain of reporters) that speaks of the virtue of the middle of Shabaan that may be followed, not even in the chapter on Al-Fadaa'il (chapter on virtues in books of hadeeth etc). Some maqtoo' reporters (reports whose chain of narrations do not go back further than the time of Taabi'een) have been narrated from some of the Taabi'een, and there are some ahadeeth, the best of which are mawdoo, (fabritcated) or da'eef jiddan (very weak). These weak reporters suggest that people's lifespans are written on that day it is decided on that day who is to die in the coming year. On this basis (lack of any authentic hadith), it is not prescribed to spend this night in prayer or to fast on this day, or to single it out for certain acts of worship. One should not be deceived by (such ignorance)....And Allah knows best. "

    Singling Out The Middle Of Shabaan For Special Worship Is Not Allowed :

    Based on the above, therefore, the middle of the month of Shabaan should not be singled out for special worship. In this context, the scholars have stated the following:

    "If a person wants to pray qiyaam on this night as he does on other nights, without doing anything extra or singling this night out for anything, then that is fine. The same applies if he fasts the day of the fifteenth of Shabaan because it happens to be one of the ayyaam Al-beed, along with the fourteenth and thirteenth of the month, or because it happens to be a Monday or Thursday. If the fifteenth of Shabaan coincides with a Monday or Thursday, there is nothing wrong with that (fasting on that day), so long as he is not seeking extra reward that has not been proven (in the saheeh hadith texts.) "

    Fasting On The Last Day Of Shabaan Is Not Allowed :

    The third issue has to do with fasting on the last day of Shabaan, which is also referred to as the "day of doubt". It is so called because at times it is so possible to ascertain whether that day is the start of Ramadan or not. There are a number of ahadith and scholars opinions on this issue some of which are as follows :

    " Ammar ibn Yaasir said : "Whoever fasts on the day concerning which there is doubt has disobeyed Abu'l-Qaasim (Peace be upon him)."This was by Al-Tirmidhi and classed as saheeh by Al-Albaani in Saheeh Al-Tirmidhi, 553.

    Al-Haafiz ibn Hajar said: " It was understood from this that it is haraam to fast the day of doubt, because the Sahaabah would not say such a thing based on personal opinion, so a report such as this has the same status as a marfoo, hadith.

    The Prophet (Saw) said, "Do not anticipate Ramadan by fasting one or two days before it begins, but if a man habitually fasts, then let him fast, " . So if a person is used to fasting on Mondays, for example, and that coincides with the last day of Shabaan, then it is permissible for him to observe that as a voluntary fast and it is not forbidden for him to do so.

    The scholars have stated concerning the day of doubt, " the Sunnah indicates that it is haraam to fast this day (last day of Shabaan). "

    Weakness Of The Hadith Related To Forgiveness On The 15th Of Shabaan :

    A weak hadith that is circulated on this issue states that it was narrated from Abu Moosa Al-Ash'ari that the Messenger of Allah (Peace and blessings of Allah be upon him) said: Allah looks down on the night of the fifteenth of Shabaan and forgives all his creation except a mushrik or one who harbors hatred against the Muslims".

    There is some scholarly difference of opinions as to the soundness of such ahadeeth. There is no saheeh hadith concerning the virtue of the night of the fifteenth of Shabaan, especially as it related to Allah descending to forgive sins. For such ahadith, the isnaads (chain of narrations) are not free of some weakness, and some of them are very weak. Many other scholars have attributed this hadith to be as weak because of the weakness of the chain of narrators.

    The scholars have maintained that Allah's descending to the first heaven does not only happen to the night of fifteenth of Shabaan, rather it is proven in Al-Saheehayn and elsewhere that Allah descends to the first heaven every night, in the last third days of the night. The night of the fifteenth of Shabaan is included in this general meaning.

    Hence, when 'Abd-Allah ibn Al-Mubarak was asked about the descent of Allah on the night of the fifteenth of Shabaan, he said to the one who asked him : " The night of the fifteenth ?! He descends every night! "