Posts

PAKTIA PANTHERS VS KANDAHAR KNIGHTS - Dream 11

Image
PROBABLE 11 OF KANDAHAR KNIGHTS:   Brendon McCullum, Paul Stirling/Kevin O Brian,Riki Wessels, Asghar Afghan, Nasir Jamal ,Karim Janat,Karim Sadiq/Mir Hamza, Najibullah Zadran, M Naveed, Sayed Shirzad,Waqar Salamkheil PROBABLE 11 OF PAKTIA PANTHERS: Mohammad Shahzad,I Janat, Cameron Delport, Sikandar Raza, Samiullah Shenwari,Rahmanullah Gurbaz,S Afridi, Sharafuddin Ashraf, Isuru Udana, Yamin Ahmadzai, Zia Ur Rehman Sharifi

Dream11 Team PAK vs BANG

Image
Dream11 Team PAK vs BANG   

TKR vs SKN - CPL 2018

Image

SKN vs JAM - CPL

Image

BIJ vs HT

Image

SKN vs BT - Caribbean Premier League 2018

Image
Don’t copy the same team . This is just predictable team.

Installing Cakephp 3.x on Ubuntu

Following are the requirements for installing cakePHP3.x : 1. HTTP Server like Apache 2. PHP version greater than or equal to 5.4.16 3. mbstring extension 4. intl extension 5. Composer, without which you cannot install cakephp3 Installing Requirements  Go to Terminal, Install apache and php >= 5.4.16.  Install mbstring extension using the following command : sudo apt-get install libapache2-mod-php5 Install intl extension using the following command : sudo apt-get install php5-intl Now restart apache using the command : service apache2 restart Install Composer : Once all Apache,PHP, mbstring and intl extension are installed. Next step is to install composer. Go to your root directory( /var/www/ in ubuntu ) cd /var/www   If you have curl installed you can use command   curl - s https :// getcomposer . org / installer | php   else you can use command   php -r "readfile('https://getcomposer.org/installer');" | php to install compos