Tektriks

Coding starts here
Home / Blog

Level up your laravel coding using vscode extensions

Laravel is the most loved PHP framework for a few years. It has gained immense popularity due to some of its core features like Eloquent ORM, File Handling, Security, API, etc. It gives us everything if you are building a small project or large-sized project. It’s easy to understand documentation & community support makes it […]

How to install latest version of FileZilla Client from .tar.bz2 in Ubuntu Linux

FileZilla is one of the best freeware tool known to all web developers. It is super performer when it comes to editing, file upload/download from remote server. As per FileZilla, its current version yields Easy to use Supports FTP, FTP over SSL/TLS (FTPS) and SSH File Transfer Protocol (SFTP) Cross-platform. Runs on Windows, Linux, *BSD, […]

How to add PHP Debug Bar in WordPress?

As a WordPress developer, sometimes you use echo, var_dump, print or print_r to know the type and value of a variable in PHP. But this process is very slow as it takes 4 steps to retrieve the result. Download a file from your remote server. Type echo or any in your code and save your […]

How to run multiple PHP version in Windows 7/8/10?

I would like to thank all of my readers and their valuable feedback from my previous post “How to upgrade php 5.6 to php 7 in XAMPP on Windows?“ I have observed that few of my readers are still unable to upgrade their PHP version in XAMPP. They also faced some critical issues which were […]

How to create multiselect dropdown in WordPress Theme Customizer

Post WordPress 4 versions added superior support to manage your theme from backend. Today I am discussing on the ‘customize_register‘ action hook where you can set up various settings in your personalized or custom theme. You can add various controls like Textbox, Textarea, Radio, Checkbox, Selectbox, Image, File, Color picker etc. For more information you […]

How to import large sql database file in phpMyAdmin on shared hosting?

As a web developer, sometimes you develop a medium sized website with lots of data ( hundreds of mbs or a few gigs ) but having low budget from your clients end, website is hosted on shared cheap server where “upload_max_filesize” and “max_execution_time” are limited. When you move from your staging server to production server, […]

Solved: No input file specified issue in Codeigniter

Solved: No input file specified issue in Codeigniter

Sometimes when you move your local/staging Codeigniter project to live/client server, make some changes in code in production stage, then you find “White screen of death” in Codeigniter. A message popup showing “No input file specified”. Then you google the web and found some code in stackoverflow site to make some changes in php.ini. But […]

Customize or Branding WordPress Login Page

Sometimes when you are developing a site using WordPress, you have to white labeling or branding your admin section as per client requirement. Here comes the first page is login page. When you visit a default login page in WordPress, you might come across this view: Now, you can change the theme of your login […]