Hello there!How are you all doing? I hope you have spent a good time of the first month of this year. I have a plan for this 2020. I am a WordPressian but I didn’t use WordPress professionally. This year I am planning to engage myself in WP more and hopefully professionally. Let’s see. I…
Category
PHP
Enable wildcard sub-domain for localhost on Ubuntu 18.04
Happy New Year my friends. Hope you all had a wonderful year and you are confident to face 2020! This year I am taking couple of challenges unlike previous years where I made “NEW YEAR” resolutions. Keep me in your prayers so that I win those challenges. Currently I am developing a SaaS application where…
How To : Send email with PHP from localhost
Hello! Happy New Year! Hope you all are doing well. Last couple of months I have been thinking about mail sending option of PHP application from local development server. Generally I uploaded my script to online web server for send mail from PHP. Today I think that I need to configure my local server so…
How to : Create basic WordPress child theme
Hello there! Today, I am here to share a basic thing of WordPress theme. We all know about the WordPress theme. Its a great way to design your WordPress powered website. But there is always some little things you need to change like colors, fonts style/size or move a button somewhere else. You can change…
How to : Increase Maximum File Upload size for WordPress
Hello, Hows going on? Hope you are doing well. Today I am writing over the issue of Maximum File Upload size for WordPress. Basically I waste my one hour time for fixing this issue. I tried to import Revolution Slider with their import facility, but after click over import I found a message said importing…
Creating dynamic sitemap with Codeigniter
Recipe for creating Dynamic sitemap with CodeIgniter. Like yoursite.com/sitemap.xml Example. Suppose you have an articles blog where url for each article is by article ID Like yoursite.com/123 . All articles are stored in articleTable of the database. First Create a model to get URLs. Create a file named url_model.php in application/models directory. Get Urls from database <?php class Url_model extends CI_Model{ public function __construct(){…
Debug : xDebug with CodeIgniter over LAMP
Hello friends, How is going on? Hope everyone is fine. This days I am fascinated with PHP, but still I missed my VB6 and .NET experience as those have a built in debug system. And you know debugging is one of the best way to confirm about what is happening by your code. So I…