Skip to content

Vinod Ram Blog

Creative, Informative and Entertaining Stuff for everyone

Vinod Ram Blog

Creative, Informative and Entertaining Stuff for everyone

  • Home
  • Web Stories
  • Get in touch
  • About
linux PHP web development

Timezone issue with cron

Vinod Ram February 2, 2016 0 Comments

If your cron job timing does’t match with the server time zone for example. You have set the cron to run at 12:30 PM, but when you see the cron…

HTML javascript web development

validate mobile number on keypress using jquery

Vinod Ram August 8, 2015 0 Comments

How to validate and restrict unwanted character for mobile or phone number field using jquery $(document).ready(function () { $(‘#mobile’).keyup(function () { var $th = $(this); $th.val($th.val().replace(//g, function (str) { return…

javascript web development

validate zipcode pincode on keypress using jquery

Vinod Ram August 8, 2015 0 Comments

How to validate and restrict unwanted character for zipcode or pincode field using jquery $(document).ready(function () { $(‘#pincode’).keyup(function () { var $th = $(this); $th.val($th.val().replace(//g, function (str) { return ”;…

javascript jquery web development

validate name on keypress using jquery

Vinod Ram August 8, 2015 0 Comments

How to validate and restrict unwanted character for name field using jquery $(document).ready(function () { $(‘#name’).keyup(function () { var $th = $(this); $th.val($th.val().replace(//g, function (str) { return ”; })); });…

Drupal htaccess Setting linux rewrite rule web development

drupal clean URLs not working? with tilde sign

Vinod Ram August 8, 2015 0 Comments

If your site is developed in Drupal and your URL looks like this: If your site URL looks like this: http:///~/anyFolder/ Example http://example.com/~xyzaccount/somefolder/ http://xxx.xxx.xxx.xxx/~xyzaccount/somefolder/ Then you need to set RewriteBase!in…

htaccess Setting PHP rewrite rule web development

Force HTTPS url with .htaccess

Vinod Ram July 30, 2015 0 Comments

RewriteCond %{HTTPS} off # First rewrite to HTTPS: # Don’t put www. here. If it is already there it will be included, if not # the subsequent rule will catch…

PHP web development

Get domain name from url

Vinod Ram January 30, 2014 2 Comments

$url = trim($url); $url = preg_replace(“/^(http:\/\/)*(www.)*/is”, “”, $url); $url = preg_replace(“/\/.*$/is”, “”, $url); return $url;

ffmpeg linux PHP web development

create high quality video using ffmpeg

Vinod Ram November 23, 2013 0 Comments

You can use the open source ffmpeg program to convert a media file from low quality to high quality format # /fullpath/to/ffmpeg/ffmpeg -i source.mp4 -c:v libx264 -crf 19 destinationfile.flv OR…

ffmpeg linux PHP web development

convert video from one format to another using ffmpeg

Vinod Ram November 23, 2013 0 Comments

You can use the open source ffmpeg program to convert a media file from one format to another. Below is an exmple: # /fullpath/to/ffmpeglibrary/ffmpeg -i InputFile.FLV OutputFile.mp3 There are various…

ffmpeg PHP web development

create video thumbnail using ffmpeg

Vinod Ram November 23, 2013 0 Comments

You can use the open source ffmpeg program to extract a frame to use as a thumbnail for a video. Below is an exmple: # /fullpath/to/ffmpeglibrary/ffmpeg -i InputFile.FLV -vframes 1…

Posts navigation

1 … 9 10 11 … 17

« Previous Page — Next Page »

Tags

amazon amazon on strike 2024 Anita Bryant Australia bitcoin content Cricket date date validation David Dobrik Death in Paradise delivery Staff donald trumph form validation France gateway timeout Hollywood htaccess javascript jquery Karate laravel Melbourne Cricket Ground microsoft movie Muay Thai Murielle Hilaire netflix ninja form Notre-Dame fire online Shopping Paris php-fpm Singer squid game Stardom suspense Sydney Sweeney thriller usa politics validation website development wordpress yii2 youtuber

Archives

You Missed

General Knowledge International News

Microsoft Makes OpenAI’s $200/Month AI Free for All Copilot Users

General Knowledge International News

अमेरिका-चीन व्यापार युद्ध बढ़ा: नए टैरिफ और जवाबी उपायों से वैश्विक बाजार में उथल-पुथल

International News

Dick Button The Trailblazer Who Revolutionised Figure Skating

Hollywood International News

Selena Gomez was criticised for posting a tearful video on Instagram

Vinod Ram Blog

Creative, Informative and Entertaining Stuff for everyone

Copyright © All rights reserved | Blogus by Themeansar.

  • Terms and Condition
  • Disclaimer
  • Privacy Policy
  • Get in touch