Posts

Display Flex

  section.flight-vocher .flight-inner  { display : flex ; justify-content : center ; align-items : center ; text-align : center ; } <div class="flight-inner">     <div class="apply-btn-d">         <a href="tel:+1-858-788-3848" class="apply-btn">Call Us</a>     </div>     <div class="apply-btn-d">         <a href="contact.php" class="apply-btn">Enquiry</a>     </div>     <div class="apply-btn-d">         <a href="https://api.whatsapp.com/send?phone=8872079602" class="apply-btn">Chat with us</a>     </div>       </div>

Best Websites for learning forever.

Image
  Best Websites forever. 1) HTML :  html.com 2) CSS :  css-tricks.com 3) Tailwind CSS :  tailwindcss.com 4) JavaScript :  javaScript.info 5) DSA :  algorithm-visualizer.org 6) Git +  git-scm.co . 7) React :  react-tutotial.app 8) API :  rapidapi.com/learn 9) Python :  learnpython.com 10) SQL :  sqlbolt.com 11) Web3 :  learnweb3.io

अष्ट-दिक बन्धनम्

  अष्ट-दिक बन्धनम् अष्ट-दिक बन्धनम् , a संस्कृत language phrase which means अष्ट- means eight दिक - means direction बन्धनम् - means relation or tie or lock This phrase of sanskrit refers to the eight things which can give you a direction to achieve or destroy anything, these eight things written in vedas which are meant for achieving goals and these eight things are किर्ति means Fame बुद्धि means wisdom बाहु means power संवेग means emotion प्रताप means courage मुद्रा means money शील means morality मृत्यु means Death These are the eight principles to follow in our life indulging this sloka from आचार्य चाणक्य “सज्जन को सम्मान देकर, लोभी को धन देकर, विद्वान को तर्क देकर व दुष्ट को दंड देकर पक्ष में किया जा सकता है ।” अर्थात साम, दाम, दंड ओर भेद, we can control any person by giving respect, punishment, by scaring, or by money. And you can win anyone or anything by this. These things actually works, literally saying from my experiences. If you have a goal then please try to follow these...

Fatal error: Maximum execution time of 300 seconds exceeded in C:\xampp\phpMyAdmin\libraries\classes\Dbi\DbiMysqli.php on line 199

Image
  Whenever you import file in in database then after some processing time its show you have using Maximum execution time of 300 seconds exceeded will be showing this type of error in your database: First of all stop your Xampp Next step : go to config.default.php Once that’s done get back to finding phpMyadmin config file named something like “config.default.php”. On XAMPP you will find it under “C:\xampp\phpMyAdmin\libraries” folder. Open the file called config.default.php  and set : $cfg['ExecTimeLimit'] = 0; Simply paste here.. Once set, restart your MySQL and Apache and go import your database.   

Custom Carousel using Function.php Custom post type using shortcode [custom-post-type] example.

 /* STUDY ABROAD */ function studyabroads_register() {  $labels = array(   'name' => _x('Studyabroad', 'post type general name'),   'singular_name' => _x('studyabroads', 'post type singular name'),   'add_new' => _x('Add New', 'review'),   'add_new_item' => __('Add New Studyabroads'),   'edit_item' => __('Edit Studyabroads'),   'new_item' => __('New Studyabroads'),   'view_item' => __('View Studyabroads'),   'search_items' => __('Search Studyabroads'),   'not_found' =>  __('Nothing found'),   'not_found_in_trash' => __('Nothing found in Trash'),   'parent_item_colon' => ''  );  $args = array(   'labels' => $labels,   'public' => true,   'publicly_queryable' => true,   'show_ui' => true,   'query_var'...

Magento Installation Step by Step

  Localhost admin user name password Set this. admin Admin@123 Install Magento 2.4.1 on  Windows 10 using  Composer and Command line Localhost XAMPP Ok, Let's go...  1. Download Install XAMPP and Composer 2. Install Elasticsearch & run and test Ok E:\xampp\htdocs\elasticsearch\bin\elasticsearch.bat http://localhost:9200/ do not turn off elasticsearch 3.Download Magento 2.4 from magento official site note on windows:  Find validateURLScheme function in vendor\magento\framework\Image\Adapter\Gd2.php file. at line 86. Replace function with this: private function validateURLScheme(string $filename) : bool   {       $allowed_schemes = ['ftp', 'ftps', 'http', 'https'];       $url = parse_url($filename);       if ($url && isset($url['scheme']) && !in_array($url['scheme'], $allowed_schemes) && !file_exists($filename)) {           return false;       } ...