8GB RAM
4 Core Processor
100GB HDD
OS - Latest CentOS
- Make sure your server meets the following requirements:
[opcache] | |
; Determines if Zend OPCache is enabled | |
opcache.enable=1 | |
; Determines if Zend OPCache is enabled for the CLI version of PHP | |
;opcache.enable_cli=1 | |
; The OPcache shared memory storage size. | |
opcache.memory_consumption=512 |
## ~-~-~- How to use ~-~-~- | |
# You can directly download as use as it is. | |
# Everything is listed is only perfomance and security related lines | |
# Validate .htaccess from http://www.htaccesscheck.com/ | |
# Disable Directory Browsing: Security | |
Options All -Indexes | |
# If a dir is a symbol link, follow the link |
Darcula changes the colour scheme of the entire IDE, making it easier on the eyes when coding for long periods of time.
This simple plugin adds a customised toolbar to your IDE with all the most common Git commands on it, saving you time.
We have made our own NetBeans plugin, which can open PDFs in a JavaFX Viewer.
$json = '[[{"lat":17.00537379223758,"lng":75.03474028272734},{"lat":16.906448552227882,"lng":74.93134923444453}],[{"lat":17.10429903224728,"lng":75.03474028272734},{"lat":17.00537379223758,"lng":74.93134923444453}],[{"lat":17.20322427225698,"lng":75.03474028272734},{"lat":17.10429903224728,"lng":74.93134923444453}],[{"lat":17.302149512266677,"lng":75.03474028272734},{"lat":17.20322427225698,"lng":74.93134923444453}],[{"lat":17.401074752276376,"lng":75.03474028272734},{"lat":17.302149512266677,"lng":74.93134923444453}],[{"lat":17.499999992286075,"lng":75.03474028272734},{"lat":17.401074752276376,"lng":74.93134923444453}],[{"lat":17.598925232295773,"lng":75.03474028272734},{"lat":17.499999992286075,"lng":74.93134923444453}],[{"lat":17.697850472305472,"lng":75.03474028272734},{"lat":17.598925232295773,"lng":74.93134923444453}],[{"lat":17.79677571231517,"lng":75.03474028272734},{"lat":17.697850472305472,"lng":74.93134923444453}],[{"lat":17.89570095232487,"lng":75.03474028272734},{"lat":17.79677571231517,"lng":74. |
<?php | |
// Tested in WP Version - 5.9.3 | |
// This file is part of functions.php | |
// Manipulate robots based on post status. | |
add_filter( 'wpseo_robots', 'yoast_seo_update_archive_robots_meta' ); | |
function yoast_seo_update_archive_robots_meta( $robots ) { | |
if ( get_post_status() == 'archived') { | |
return 'noindex,nofollow'; | |
} else { |
<style> | |
div,p{ | |
display:inline; /*Added to avoid confusion in outpu*/ | |
} | |
</style> | |
<form method="POST"> | |
<textarea name="html_input" required ><?php echo !empty($_POST['html_input'])?$_POST['html_input']:'';?></textarea> | |
<input type="submit"> | |
</form> | |
<?php |
// Simple steps to execute this | |
// 1. Login to rediffmail | |
// 2. Goto Inbox | |
// 3. Copy Below code and paste in console | |
``` | |
function deleteAllMailsFromRediffMailInbox() | |
{ | |
$('.rd_mail_sel_all').click(); |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
<script> | |
$(document).on('submit','form#smsform',function(e){ | |
e.preventDefault(); |