Often clients ask for different content types in WordPress. Creating custom post types in WordPress is a lot easier job. A custom post type can…
1 CommentAuthor: Praveen Anaparthi
11+ years of IT industry experience holding a wide range of skill sets and roles with significant work on PHP, Node.js, Python, Ruby, Docker, React.js, Microsoft Azure, Azure DevOps, Windows PowerShell, Shell script, Jenkins, MongoDB, SQL, MySQL, Apache, Nginx. etc. It is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
In this post, I am going show logging arrays and viewing logged items in the terminal in a very generic way. For this tutorial purpose,…
Leave a Comment$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, ‘https://devicecloud.digi.com/ws/v1/devices/inventory’); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FLASE); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FLASE); curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); curl_setopt($ch, CURLOPT_USERPWD, ‘username:password’); $data = curl_exec($ch); curl_close($ch);…
Leave a CommentCORS stands for Cross-Origin Resource Sharing. Origin policy allows only the same origins to share data and this policy will prevent Cross-site Request Forgery attacks.…
6 CommentsI have recently spent some time trying with Laravel queue system, in this tutorial I am going to show you how to get started with…
10 CommentsXTRF is one of the most popular and fastest growing management systems for translation agencies and corporate translation departments. There is no tutorial on the…
3 CommentsVery Laravel developer should know this little trick, using this trick you can define complex conditions on the eloquent relationships. This method chaining helps you…
Leave a CommentRedirect to different landing page after successful login on wordpress admin panel, if user not a super admin. In your theme’s functions.php: function your_login_redirect() {…
1 CommentOn successful login the user information will be stored in Yii::$app->user->identity variable. The authenticated user identity information can be retrieved via Yii::$app->user->identity //To get whole…
3 CommentsThis tutorial will show you how to set 100% full height div with CSS with simple lines. The percentage (%) is a relative unit so…
Leave a CommentIn this tutorial, You will learn how to set a specific default sort column for your GridView. With the following code, you can set the…
Leave a CommentHi there, This tutorial will show you how to send emails from the yii2 application. Sending emails from the yii2 application is not a tedious…
3 CommentsHello there, Today I would like to show you how to integrate the mPDF library with Yii framework 2. First, let me give you some…
4 CommentsIn this tutorial, you will learn how to create a custom Component in Yii2 and I will show you how to use created a component…
Leave a Comment