• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Tutsplanet

Tutsplanet

Free Technical and Blogging Resources

  • Home
  • Web Hosting
  • Programming
  • Plugins
  • Twitter Trends
  • Tools
  • About Us

Editorial Staff

Programming TagsCufon

CUFON NOT WORKING IN IE7

Mar 25, 2017 Editorial Staff Leave a Comment

Cufon

I had faced the same issue with cufon in IE, for all browsers it was working fine. But in IE 7 only it was not showing, I find out the below wiki article in GitHub Load a JavaScript framework or a stand-alone selector engine before Cufón. Cufón detects most frameworks automatically. Just load your framework…Continue Reading

Drupal

Custom sql query & display it in a table in drupal

Mar 25, 2017 Editorial Staff Leave a Comment

Drupal 7

Custom sql query & display it in a table in drupal It’s easy to write a custom query using Drupal 7 Database API. Please follow the below example.

Facebook

Gettting facebook events in php and curl

Mar 22, 2017 Editorial Staff Leave a Comment

Facebook

Facebook has the feature to add events in fanpages. So you want to display all the upcoming events in your own website. The immediate answer is use facebook widget to display the events in facebook style. But if you want to display it in your website’s custom style. Here I come with a solution for…Continue Reading

Magento

Get order total from order id in Magento

Mar 13, 2017 Editorial Staff Leave a Comment

Magento

Getting order details from the order id, its an easy task in Magento. If you have an order id in hand, call the below function for the order object. Or you want to get the order details from the checkout session, you can use the below function. In above code lines  the first line is…Continue Reading

Magento

Magento create category programmatically

Mar 12, 2017 Editorial Staff Leave a Comment

Magento

Everyone knows there are admin interface to create categories, but if you want to  create a category programmatically. Using Magento’s catalog/category model we can create a Magento category via a program. You have to set category title and Url key in order to show in the frontend. Magento creates category programmatically Here I’ve attached the…Continue Reading

General

Display A Search Box on your Site Search Results in Google search

Mar 12, 2017 Editorial Staff Leave a Comment

Google have added a new feature to its thousands of excellent features. It’s search box, getting a prominent spot just under the site description. The new search box is available for both desktop and mobile searches. You can see a picture below when I searched for eBay in google. Its very handy and informative from…Continue Reading

Magento

10 of best magento extensions you must have in your website

Mar 12, 2017 Editorial Staff Leave a Comment

Magento

Magento one of the robust ecommerce platform ever built in PHP and serving thousands of online shops. So you probably aware of Magento store you setup will not have 100% things that suit your need. But don’t worry Magento e-commerce have a solution for that, in the form of extensions. You will get thousands of…Continue Reading

PHP

How to do batch insert in codeigniter

Mar 12, 2017 Editorial Staff Leave a Comment

Follow below to do batch insert in Codeigniter framework.  As a Codeigniter developer you many encounter this situation to insert heavy amount of data using batch insert.

Drupal

How to Create a Node Override in Drupal 8

Mar 12, 2017 Editorial Staff Leave a Comment

In Drupal development customizing the theme is an important task overall. So you want to override template for nodes, its a pretty easy job. If you familiar with Drupal 7 node overriding , you may know how to do this. Its not that different in Drupal 8 either. You need to create a custom theme…Continue Reading

Drupal

How to print the query which is built using db_select() in Drupal

Mar 9, 2017 Editorial Staff Leave a Comment

Drupal is well known content management system is being used for all kind of websites. There is a good DB api to write queries in the custom modules. So if someone wants to print the actual sql query when using db_select? Consider the following code

Drupal

How to change a user’s password using Drush in Drupal?

Mar 9, 2017 Editorial Staff Leave a Comment

How do we change a user’s Drupal password from the command line with Drush? Use the following command to run in Drush.

Magento TagsMagento

Get the current website id in magento

Mar 9, 2017 Editorial Staff 1 Comment

Magento

To get the current running website id. All the Magento web developers may need to write this code while developing a Magento website in one way or another. Find instructions here to download Magento 2 and install.

Snippets List

How to check if checkbox is checked

Mar 8, 2017 Editorial Staff Leave a Comment

You can check a checkbox is checked or not by jQuery using the following code var checkedBx = jQuery(‘.gift-messages input[name=allow_gift_messages]:checked’).length; if(checkedBx > 0) { //Do something } Laravel date set timezoneHow to create console command in laravel ?Show a number in two decimal places in PHPPHP str_replace() FunctionHow to delete file from public folder in…Continue Reading

PHP

PHP Redirect 301 permanently

Mar 7, 2017 Editorial Staff Leave a Comment

PHP date functions

You may want redirect one website to another for some reason. This article show you how to redirect a website to another using php scrips. When you do it should be more search engine friendly at any cost. PHP Redirect Code header(“HTTP/1.1 301 Moved Permanently”); header(“Location: https://www.tutsplanet.com”); exit; Basically you can avoid the first line,…Continue Reading

Linux

How To Install and Configure Varnish with Apache on Ubuntu 16.04

Mar 5, 2017 Editorial Staff 4 Comments

Varnish is an HTTP accelerator and it’s a tool for speeding up a server. It used as a reverse proxy for your server, as Varnish as front and Apache as back. Setting Up Note : You should have sudo access to the server in order to install Varnish. First  step,  executes the below commands this…Continue Reading

Drupal

The 7 best Drupal 8 free themes

Mar 4, 2017 Editorial Staff Leave a Comment

Zircon drupal 8 ree theme

Here we are listing 10 best Drupal free themes. When you start over a website a suitable appearance of your website is very important. When you choose Drupal as a content management system, you can choose from a wide variety of Drupal themes. You can find tonnes of drupal developers offering drupal web design with affordable…Continue Reading

YouTube

How to Get an RSS Feed for a YouTube Channel

Mar 1, 2017 Editorial Staff Leave a Comment

Youtube

How to get the RSSfeed for a YouTube channel. It’s obvious most of you want to subscribe your favorite YouTube channel on your RSS reader.  Let’s say you want to write an application for organizing the youtube videos from one channel. How to Get an RSS Feed for a YouTube Channel So here is the way…Continue Reading

Javascript

Open a URL in a new tab using JavaScript

Feb 28, 2017 Editorial Staff 3 Comments

Opening a URL in new tab using JavaScript, below snippet will do the trick function OpenInNewTabWinBrowser(url) { var win = window.open(url, ‘_blank’); win.focus(); } You could do it this way calling a direct function, or by adding an event listener to your DOM object. Note: JavaScript, abbreviated as JS, is a high-level, interpreted programming language. It…Continue Reading

Linux

Display Date And Time In Linux

Feb 27, 2017 Editorial Staff Leave a Comment

PHP date functions

How to get the current date and time in Linux OS. To display the current date and time by using command line, you can use below code Open a terminal and type the following command: date It outputs like GST 2017 11:20:30 Feb Even you can use format to print the date and time in…Continue Reading

PHP

PHP date() with timezone?

Feb 27, 2017 Editorial Staff Leave a Comment

PHP date functions

How to get PHP date() with timezone?. PHP date() function returns a string formatted according to the given format string using the given integer timestamp or the current time if there are no timestamp is given. For example, you want print today’s date in Mon 27, Feb 2017. It’s very easy just follow the below…Continue Reading

General

Lists of time zones with abbreviations

Feb 27, 2017 Editorial Staff Leave a Comment

World Timezones

Lists of time zones with abbreviations Abbr. Name UTC offset ACDT Australian Central Daylight Savings Time UTC+10:30 ACST Australian Central Standard Time UTC+09:30 ACT Acre Time UTC-05 ACT ASEAN Common Time UTC+06:30 – UTC+09 ADT Atlantic Daylight Time UTC-03 AEDT Australian Eastern Daylight Savings Time UTC+11 AEST Australian Eastern Standard Time UTC+10 AFT Afghanistan Time…Continue Reading

PHP

Server Side Form Validation using Regular Expressions

Feb 20, 2017 Editorial Staff Leave a Comment

In server side scripting its mandatory to do the form validation. It’s not another case for PHP. Here I demonstrate the simple PHP form validation using the regular expression.

ios

Why Is My iPhone Battery Yellow? Here’s The Fix.

Feb 20, 2017 Editorial Staff Leave a Comment

Why My iPhone battery is yellow? The short answer is The Low Power Mode is on your phone. But you didn’t remember turned on this setting. Let me clear that when your iPhone battery reaches 20% of charge, iPhone will warn you that your battery getting low and asks if you would like to turn…Continue Reading

PHP

How to Get Yesterday’s Date Using PHP

Feb 20, 2017 Editorial Staff Leave a Comment

Here are some methods to get yesterday’s date using php. This will return format like 19/02/17. You can get more details from PHP’s date function You can change the -1 to -20 to get the 20 days back.

General

This Netflix Chrome Extension Lets You Access Tons of Hidden Categories

Feb 15, 2017 Editorial Staff Leave a Comment

Most of the Netflix customers doesn’t know this fact that a number of categories are hidden from public view in Netflix. But you can enter to this to categories by hitting the direct URL to address bar. Feeling nerdy, only geeks has the access to that. So here comes a handy chrome extension that helps…Continue Reading

Snippets List

Advanced Autocomplete with jQuery & Ajax

Feb 13, 2017 Editorial Staff Leave a Comment

A lightweiht autocomplete plugin in jQuery invariably you can use in any forms that needs autocomplete inputs. Features: Fixed options (is like a select box or a filter box) Ajax request (proper autocomplete) Controlled by mouse and keyboard Minified, weights around 5KB [thrive_split_button left_color=”green” right_color=”green” left_text=”Demo” right_text=”Download” left_link=”http://www.alotropico.com/projects/advanced-autocomplete/” right_link=”https://github.com/alotropico/advanced-autocomplete.jquery”] Laravel date set timezoneHow to create…Continue Reading

General

Decode to Base64 format

Feb 13, 2017 Editorial Staff Leave a Comment

Base64 Base64 is a generic term for a number of similar encoding schemes that encode binary data by treating it numerically and translating it into a base 64 representation. The Base64 term originates from a specific MIME content transfer encoding. Base64 encoding schemes are commonly used when there is a need to encode binary data…Continue Reading

General

Encode to Base64 format

Feb 13, 2017 Editorial Staff Leave a Comment

Base64 Base64 is a generic term for a number of similar encoding schemes that encode binary data by treating it numerically and translating it into a base 64 representation. The Base64 term originates from a specific MIME content transfer encoding. Base64 encoding schemes are commonly used when there is a need to encode binary data…Continue Reading

Snippets List

How to prevent user from typing in text field without disabling the field?

Jan 10, 2017 Editorial Staff Leave a Comment

A non-Javascript alternative that can be easily done: You can use the readonly attribute instead of the disabled attribute. It prevents editing the text in the input, but browsers style the input differentlyLaravel date set timezoneHow to create console command in laravel ?Show a number in two decimal places in PHPPHP str_replace() FunctionHow to delete file…Continue Reading

Facebook

How do I change my Facebook Page’s name?

Jan 8, 2017 Editorial Staff Leave a Comment

First of all, you need to be an admin of the page. It’s not an instant update, as you have to submit the request to Facebook. How do I change my Facebook Page’s name? Follow the below steps Go to your page once you logged in to the facebook. Click About on the left side…Continue Reading

  • « Go to Previous Page
  • Go to page 1
  • Interim pages omitted …
  • Go to page 17
  • Go to page 18
  • Go to page 19
  • Go to page 20
  • Go to Next Page »

Primary Sidebar

Quick Links

  • Top 21 Website Ideas To Make Money Online in 2021
  • A Simple YouTube Video Downloader Script in PHP
  • The 50 Most Useful jQuery Plugins for Frontend Development
  • Replace “\n” with new line characters, using Notepad++
  • Using Third-Party Libraries in Codeigniter
  • Upload Multiple Images and Store in Database using PHP and MySQL.
  • Hierarchical Tree view Category Example in Laravel
  • Laravel Image Intervention Tutorial With Example
  • How to import sql file in MySQL database using PHP?
  • Free VAT Calculator Online

Subscribe

* indicates required

Search Here

Share

   

Hot topics

  • Attribute Casting with Laravel 1 view

Categories

  • Design & Development
  • Drupal
  • Facebook
  • General
  • How To
  • ios
  • Javascript
  • Linux
  • Magento
  • Marketing
  • News
  • PHP
  • Plugins
  • Programming
  • Snippets List
  • Social Media
  • Softwares
  • Themes
  • Tips
  • Wordpress
  • YouTube

Copyright © 2023 · Planet on Genesis Framework · Powered By BunnyCDN . Network wallpapernoon.com