Posts

How to Set FileZilla to Open and Edit Files with Notepad++

https://ostraining.com/blog/webdesign/how-to-view-files-with-filezilla/ When installing and using FileZilla FTP client for the first time, it won’t allow you to right-click files and instantly edit them using code editors, like Notepad++. You want to quickly open and edit your PHP or SQL file but FileZilla won’t let you. In this tutorial, you will learn how to set your FileZilla to open and edit files in Notepad++ code editor. If you are a beginner website builder, FileZilla is a free desktop program that allows you to transfer files and folders between your desktop and your remote website. Such programs are most commonly called “FTP clients”. You can download FileZilla for Windows, Linux or Mac from the FileZilla project website. Notepad++ is a code editing program, like Microsoft’s text editor Notepad. Only with Notepad++ you have much more useful options to work with the code. Once you have downloaded and installed FileZilla on your desktop, follow the steps below. For the pur...

Laravel framework Composer run

https://www.javatpoint.com/how-to-install-composer-on-windows https://stackoverflow.com/questions/57947727/when-executing-composer-commands-error-php-is-not-recognized-as-an-internal-o // for deprecated error in vendor files, install composer in windows and run the below command in the root file of source code where composer.json exists, composer update

PHP cmd to create DB without running install in Laravel

Pre-Requisites: php instakked globally (i.e) Environment varibles has the path of php in xampp Laravel source code with database folder containg seed and migration php files Artisian file at root of source code .env file at root of source code with DB user name and password Commands: 1. Go to command prompt and navigate to the root of the source code. 2. Command to create tables php artisan migrate 3. Command to insert row in tables php artisan db:seed

common for php config location code

if (!$config['base_url']) { $domain = $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME']; $domain = preg_replace('/index.php.*/', '', $domain); if (!empty($_SERVER['HTTPS'])) { $config['base_url'] = 'https://' . $domain; } else { $config['base_url'] = 'http://' . $domain; } }

தனுஷ்கோடி

உங்களில் எத்தனைப் பேருக்கு தெரியும்.. ?? புயலின் உக்கிர தாண்டவத்நில் ஒரு செழிப்புமிக்க நகரமே காணாமல் போன விஷயம்.. அதுவும் நம் தமிழ்நாட்டில்  !! நிவர் புயலின் இயற்கைச் சீற்றத்திற்கு நடுவே,  நம்மிடம், மொபைல் போன் முதல், நமக்குச் சொந்தமானப் பல சாட்டிலைட்டுகள், வயர்லெஸ் கருவிகள், இலவச வாட்ஸ்அப் தொடர்பு, தமிழக மற்றும் மத்திய அரசசுளின்   அவசரக்கால உதவிகள்  வரையென நம்மை காப்பாற்ற, பாதுகாப்புடன் சந்தோஷமாக இருக்கிறோம். இன்றைய அசுர விஞ்ஞான வளர்ச்சி நம்மைக் கண்ணும் கருத்துமாகக் கவனித்துக் கொள்கிறது. நாம், மிகவும் அதிர்ஷ்டசாலிகள்.  ஆம், பழைய நினைவொன்றை, இன்றையத் தலைமுறையினர் நினைத்துப் பார்க்க வேண்டிய நேரமிது.  சுமார், 55 ஆண்டுகளுக்கு முன், தனுஷ்கோடி என்ற ஒரு வணிக நகரம் என்று ஒன்று இருந்ததும் அது மறைந்தது எப்படி என்றும் நெஞ்சைப் பிளக்கும் கதையை கேளுங்கள்.. !!  இன்றைய தலைமுறையினர் சிலருக்கு மட்டுமே தனுஷ்கோடி என்ற ஊர் தமிழகத்தில் இருந்திருக்கிறது,  என்று தெரியும்.  தனுஷ்கோடி என்ற தொலைந்து போன ஊரின் பின்னே இருக்கும் அந்த கடுந் துயரத்தைப் பற்றி, இன்று ய...

Whatsapp Floating icon in HTML

Add it in CSS Add the below in style tag -style tag .float{ position:fixed; width:60px; height:60px; bottom:40px; right:40px; background-color:#25d366; color:#FFF; border-radius:50px; text-align:center; font-size:30px; box-shadow: 2px 2px 3px #999; z-index:100; } .my-float{ margin-top:16px; } -/style end tag Add it in HTML Add in link tag: link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> Add in anchor tag: open tag a href="https://api.whatsapp.com/send?phone=+91----------&text=Hi Telungupalayam hospital" class="float" target="_blank"> Add in i-tag i class="fa fa-whatsapp my-float"> --/i> close tag /a

Developers4u