Saturday, January 16, 2016

Winners of 61th Filmfare Awards 2016

The Filmfare Awards is most popular awards presented annually by The Times Group to honour both artistic and technical excellence of professionals in the Hindi language film industry of India.
The Filmfare is first hold on 1953 to now it's completely 61 years.61st Filmfare Awards were held on January 15 at Sardar Vallabhbhai Patel Stadium in Mumbai.
Here below complete list of 61st Filmfare Awards.

Best Story :- Vijayendra Prasad (Bajrangi Bhaijaan)
Best Dialogue :- Himanshu Sharma (Tanu Weds Manu Returns)
Best Editing :- Sreekar Prasad (Talvar)
Best Screenplay :- Juhi Chaturvedi (Piku)
Best Music :- Ankit Tiwari, Meet Bros Anjjan and Amaal Mallik (Roy)
Best Lyrics :- Irshad Kamil(Agar Tum Saath Ho-Tamasha)
Best Action :- Sham Kaushal (Bajirao Mastani)
Best Background Score :- Anupam Roy (Piku)
Best Costume :- Anju Modi, Maxima Basu (Bajirao Mastani)
Best Sound Design :- Shajith Koyeri (Talvar)
Best Production Design :- Sujeet Sawant, Sriram Iyengar, Saloni Dhatrak (Bajirao Mastani)
Best Choreography :- Pandit Birju Maharaj (Mohe Rang Do Laal :- Bajirao Mastani)
Best Cinematography :- Manu Anand (Dum Laga Ke Haisha)
Lifetime Achievement Award :- Moushumi Chatterjee
Best VFX:- Prana Studio (Bombay Velvet)
Best Playback Singer Female :- Shreya Ghoshal (Deewani Mastani - Bajirao Mastani)
Best Playback Singer Male :- Arijit Singh (Sooraj Dooba Hai - Roy)
Critics Choice Best Film :- Piku
Critics Choice Best Actor (Male) :- Amitabh Bachchan (Piku)
Critics Choice Best Actor (Female) :- Kangana Ranaut (Tanu Weds Manu Returns)
Best Actor in a Supporting Role (Female) :- Priyanka Chopra (Bajirao Mastani)
Best Actor in a Supporting Role (Male) :- Anil Kapoor (Dil Dhadakne Do)
Best Debut (Female) :- Bhumi Pednekar (Dum Laga Ke Haisha)
Best Debut (Male) :- Sooraj Pancholi (Hero)
Best Film :- Bajirao Mastani
Best Director :- Sanjay Leela Bhansali (Bajirao Mastani)
Best Debut Director :- Neeraj Ghaywan (Masaan)
Best Actor in a Leading Role (Female) :- Deepika Padukone (Piku)
Best Actor in a Leading Role (Male) :- Ranveer Singh (Bajirao Mastani)

Tuesday, January 12, 2016

Solve 'There was a problem‍​​ with reindexing process' Error in Magento


In Magento re-indexing is most important and useful functionality for rebuild all product data with any update in Magento website.because of this type of error you can't re-indexing website so it's problem in update information display in fronted or search functionality.
In Magento admin panel display index management message when you made any changes in website and that time re-indexing must require.Than you can click on that message or go to System->index Management for  re-indexing data.But sometimes when you try to re-indexing data from admin panel it's display error message like `There was a problem‍​​ with re-indexing process` and re-indexing process not complete. So don't worry it's simple solution here without any changing in database or any update.
First check here for solve basic steps and follow steps according to display there.if till not solve below error than it's problem in Magento database find database error in query re-indexing data using SSH or re-indexing by create new file as describe Here.Magento admin panel you can display database error by modifying changes in file `app/code/core/Mage/Index/controllers/Adminhtml/ProcessController.php` as below.

Mage::helper('index')->__('There was a problem with reindexing process.')

Replace this line with below code
 
Mage::helper('index')->__('There was a problem with reindexing process. ' . $e->getMessage())

Here just add `$e->getMessage()` for display SQL error in admin panel where display message. Check that error and try to solve according to your knowledge it's related to foreign key relation or any missing value in database tables. If you can't find any solution than repair database using `magento db repair tools`.for that just follow below steps.
  1. Download Magento database repair tool from download page and unzip that
  2. Put `magento-db-repair-tool-1.X.php` file in your Magento root directory
  3. Backup your current Magento database to have ability to restore it if anything goes wrong
  4. Install same version of Magento on server with same database prefix(If there is any Magento  database on same server without any error than no need to install new)
  5. Now run db-repair file in URL http://SERVER_URL/PATH/magento-db-repair-tool-1.X.php
  6. Here left side enter Magento database details which you want to repair and right side enter new database details where we install new Magento as below and click on `continue` button
  7. If there is any error regarding `mysql_escape_string()` than replace `mysql_real_escape_string()` instead of that function and run again.
after run complete process clear all changes and try to re-indexing data it's run without any error. for more details for installation and support for Magento database repair tools in Magento 1.X click Here

Display 'Best Selling' Products on Homepage in Magento

When you create an e–commerce website with magenta than its easy and most reliable for small or big store. For that you must create the best design for appearing website look more interesting to the customer. For any store home page is more suitable and the base for all stores. In Homepage you can add all content, features and functionality of the website. So it is more important that you must highlight some discount and products on the homepage.
In magento all Homepage content manage from admin panel CMS->Pages->Home page (If your default page is not Homepage than do that page as default page from System->Configuration->General->Web->Default Pages select 'Default Web URL' as cms and 'CMS Home Page' as 'Home Page').Here you can add any content, images and other default widgets in homepage, but when you want to search best selling products or latest products on the homepage than it’s not found any widget in default magenta than you must do simple customization for that.

If you want to add any categories product on homepage than add below code in CMS content

{{block type="catalog/product_list" column_count="3" category_id="2" template="catalog/product/list.phtml"}}

Here enter category id and category column in below code according to use.(If below code doesn’t work than allow permission block for `catalog/product_list` from System->Permissions->Blocks)

Display 'Best Selling' Products


  1. Create new file `Bestseller.php` in `app/code/local/Mage/Catalog/Block/Product/` folder with below code.
    
    class Mage_Catalog_Block_Product_Bestseller extends Mage_Catalog_Block_Product_Abstract{
        public function __construct(){
            parent::__construct();
            $storeId = Mage::app()->getStore()->getId();
            $products = Mage::getResourceModel('reports/product_collection')
                ->addOrderedQty()
                ->addAttributeToSelect('*')
                ->addAttributeToSelect(array('name', 'price', 'small_image'))
                ->setStoreId($storeId)
                ->addStoreFilter($storeId)
                ->setOrder('ordered_qty', 'desc'); // best selling item at first
            Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($products); //check product status
            Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($products); //check product visibility
     
            $products->setPageSize(3)->setCurPage(1);
            $this->setProductCollection($products);
        }
    }

  2. Create bestseller.phtml in file in app/design/frontend/default/THEME/template/catalog/product/ folder with below code.
    
    <?php if (($_products = $this->getProductCollection()) && $_products->getSize()):?>
    <h3>BEST SELLERS</h3>
    <ul>
      <?php foreach ($_products->getItems() as $_product): ?>
      <li> <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName())?>"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(275) ?>" width="275" alt="<?php echo $this->htmlEscape($_product->getName())?>" /></a> <a href="<?php echo $_product->getProductUrl();?>" title="<?php echo $this->escapeHtml($_product->getName()) ?>"><?php echo $this->escapeHtml($_product->getName()) ?></a> <?php echo $this->getReviewsSummaryHtml($_product) ?> <?php echo $this->getPriceHtml($_product, true) ?> </li>
      <?php endforeach;?>
    </ul>
    <?php endif; ?>
    
    

  3. Call below created block in cms homepage as below code.
    {{block type="catalog/product_bestseller" template="catalog/product/bestseller.phtml"}}

  4. Go to System->Permissions->Blocks and create new block with name 'catalog/product_bestseller' and 'Is Allowed' set 'Yes'.
Now clear all caches and check results.it's display Best selling products in homepage or any cms pages where you put below code.If there is no item in your order list than no products display in Best Seller.

Sunday, January 3, 2016

Most Awaited Upcoming Bollywood Movies of 2016

Bollywood gives many big movies and got a good collection on box office in 2015.In the last year, many movies cross 100 crore and create a new club of 300 crore and more. According to last year we guess that next year Bollywood gives many movies like them and got a good collection of box office and create new records in Bollywood history.
Here list of next upcoming Bollywood movies which are awaited by peoples by them casts, stories, directors or publicity. Here displays a list of movies order by its release date of this year 2016.

MOVIE NAME CASTS DIRECTOR RELEASE DATE
Wazir Amitabh Bachchan, Farhan Akhtar, Aditi Rao Hydari, John Abraham Bejoy Nambiar 8th January
Ghayal Once Again Sunny Deol, Soha Ali Khan Sunny Deol 15th January
Airlift Akshay Kumar, Nimrat Kaur Raja Krishna Menon 22nd January
Kyaa Kool Hain Hum 3 Tushar Kapoor, Aftab Shivdasani, Mandana Karimi Umesh Ghadge 22nd January
Mastizaade Sunny Leone, Tushar Kapoor, Vir Das Milap Zaveri 29th January
Saala Khadoos R. Madhavan, Ritika Singh Sudha Kongara 29th January
Fitoor Aditya Roy Kapoor, Katrina Kaif, Tabu Abhishek Kapoor 12th February
Sanam Re Pulkit Samrat, Yami Gautam, Urvashi Rautela Divya Khosla Kumar 12th February
Neerja Sonam Kapoor, Boman Irani, Uday Chopra Ram Madhvani 19th February
Jai Gangaajal Priyanka Chopra, Prakash Jha Prakash Jha 4th March
Great Grand Masti Ritesh Deshmukh, Vivek Oberoi, Aftab Shivdasani Indra Kumar 25th March
Ki and Ka Kareena Kapoor, Arjun Kapoor, Amitabh Bachchan R. Balki 1st April
Fan Shah Rukh Khan, Ileana D'Cruz Maneesh Sharma 15th April
Azhar Emraan Hashmi, Prachi Desai, Huma Qureshi, Nimrat Kaur Tony D'Souza 13th May
Housefull 3 Akshay Kumar, Abhishek Bachchan, Riteish Deshmukh Sajid-Farhad 3rd June
Jagga Jasoos Ranbir Kapoor, Katrina Kaif Anurag Basu 33rd June
Udta Punjab Shahid Kapoor, Kareena Kapoor, Alia Bhatt Abhishek Chaubey 17th June
Raees Shah Rukh Khan, Mahira Khan Rahul Dholakia 8th July
Sultan Salman Khan Ali Abbas Zafar 8th July
Dishoom John Abraham, Varun Dhawan, Jacqueline Fernandez Rohit Dhawan 29th July
Mohenjo Daro Hrithik Roshan, Pooja Hegde, Amrita Puri Ashutosh Gowariker 12th August
M. S. Dhoni: The Untold Story Sushant Singh Rajput, Ram Charan Neeraj Pandey 2nd September
Ae Dil Hai Mushkil Aishwarya Rai Bachchan, Anushka Sharma, Ranbir Kapoor Karan Johar 28th October
Shivaay Ajay Devgn, Sayesha Saigal Ajay Devgn 28th October
Shuddhi Varun Dhawan, Alia Bhatt Karan Malhotra 31st October
Dangal Aamir Khan, Sakshi Tanwar Nitesh Tiwari 23rd December

Friday, January 1, 2016

Top 10 Bollywood Movies of 2015 by Box Office Collection

In Bollywood every year is most popular in history and create new records that breaks previous.Current year 2015 there are many movies releases on Bollywood cinema from them some are worst as never watch and some are all time Blockbuster.
Here below list of top 10 movies of 2015 according to box office collection and success to gives entertainment or message to audience.

10. PIKU


Release dates:- 8th May 2015
Directed by:-Shoojit Sircar
Produced by:-N.P. Singh, Ronnie Lahiri, Sneha Rajani
Running time:- 122 minutes
Worldwide Gross:- 104 crore INR
Indian Gross:- 79 crore INR
Budget:- 42 crore INR
Cast:-Deepika Padukone, Amitabh Bachchan, Irrfan Khan

 

9. BABY


Release dates:- 23rd January 2015
Directed by:-Neeraj Pandey
Produced by:-Bhushan Kumar
Running time:- 135 minutes
Worldwide Gross:- 125 crore INR
Indian Gross:- 93 crore INR
Budget:- 59 crore INR
Cast:-Akshay Kumar, Danny Denzongpa, Rana Daggubati, Taapsee Pannu

 

8. GABBAR IS BACK


Release dates:- 1st May 2015
Directed by:-Krish
Produced by:-Sanjay Leela Bhansali
Running time:- 131 minutes
Worldwide Gross:- 106 crore INR
Indian Gross:- 85 crore INR
Budget:- 72 crore INR
Cast:-Akshay Kumar, Shruti Haasan

 

7. WELCOME BACK


Release dates:- 4th September 2015
Directed by:-Anees Bazmee
Produced by:-Firoz Nadiadwala
Running time:- 152 minutes
Worldwide Gross:- 133 crore INR
Indian Gross:- 97 crore INR
Budget:- 88 crore INR
Cast:-John Abraham, Shruti Haasan, Anil Kapoor, Nana Patekar, Paresh Rawal, Naseeruddin Shah

 


6. ABCD 2


Release dates:- 19th June 2015
Directed by:-Remo D'Souza
Produced by:-Siddharth Roy Kapur
Running time:- 154 minutes
Worldwide Gross:- 157 crore INR
Indian Gross:- 106 crore INR
Budget:- 65 crore INR
Cast:-Varun Dhawan, Shraddha Kapoor, Prabhu Deva, Raghav Juyal, Lauren Gottlieb

 

5. Dilwale


Release dates:- 18th December 2015
Directed by:-Rohit Shetty
Produced by:-Gauri Khan, Rohit Shetty
Running time:- 154 minutes
Worldwide Gross:- 268 crore INR*
Indian Gross:- 129 crore INR*
Budget:- 100 crore INR
Cast:-Shah Rukh Khan, Kajol, Varun Dhawan, Kriti Sanon

 

4. Bajirao Mastani


Release dates:- 18th December 2015
Directed by:-Sanjay Leela Bhansali
Produced by:-Sanjay Leela Bhansali
Running time:- 158 minutes
Worldwide Gross:- 231 crore INR*
Indian Gross:- 139 crore INR*
Budget:- 150 crore INR
Cast:-Ranveer Singh, Priyanka Chopra, Deepika Padukone, Tanvi Azmi

 

3. TANU WEDS MANU RETURNS


Release dates:- 22nd May 2015
Directed by:-Anand L. Rai
Produced by:-Krishika Lulla
Running time:- 128 minutes
Worldwide Gross:- 243 crore INR
Indian Gross:- 150 crore INR
Budget:- 2.04 crore INR
Cast:-R. Madhavan, Kangana Ranaut, Jimmy Shergill, Swara Bhaskar

2. PREM RATAN DHAN PAYO


Release dates:- 12th November 2015
Directed by:-Sooraj Barjatya
Produced by:-Ajit Kumar Barjatya, Kamal Kumar Barjatya, Rajkumar Barjatya
Running time:- 164 minutes
Worldwide Gross:- 432 crore INR
Indian Gross:- 224 crore INR
Budget:- 110 crore INR
Cast:-Salman Khan, Sonam Kapoor, Neil Nitin Mukesh, Anupam Kher

1. BAJRANGI BHAIJAAN


Release dates:- 17th July 2015
Directed by:-Kabir Khan
Produced by:-Salman Khan,Rockline Venkatesh
Running time:-159 minutes
Worldwide Gross:- 626 crore INR
Indian Gross:- 318 crore INR
Budget:- 90 crore INR
Cast:-Salman Khan, Kareena Kapoor, Harshaali Malhotra, Nawazuddin Siddiqui