How to increase php memory limit on wordpress
Put this lines of code on wp-config.php file which is located on wordpress root directory. /** Memory Limit */ define('WP_MEMORY_LIMIT', '128M'); For memory limit issue you can see this error…
Put this lines of code on wp-config.php file which is located on wordpress root directory. /** Memory Limit */ define('WP_MEMORY_LIMIT', '128M'); For memory limit issue you can see this error…
Make an e-commerce store Fix any WordPress issue Customize any WordPress theme as your requirements. Transfer WordPress websites from one server/domain to another server/domain Install any WordPress themes or plugins. …
tingle.js হল পিওর জাভাস্ক্রীপ্টে লেখা একটা মোডাল প্লাগিন যা দিয়ে জেকুয়েরি ছাড়াই খুব সহজেই মোডাল কনটেন্ট ডিসপ্লে করতে পারবেন। লিংক: http://robinparisi.github.io/tingle/ ব্যবহার খুবই সহজ। প্লাগিনটার সিএসএস এবং জেএস ফাইল কল…
From this websites you can download high quality stock image for free…
WP Engine’s environment is customized to provide the best performance, stability, functionality and security. Following best practices to ensure our functionality is tightly integrated into WordPress, we have included a…
How to setcookies using javascript, how to get cookies using javascript, how to check cookies using javascript... All questions will be solved using these functions. function setCookie(cname, cvalue, exdays) {…
If you use wp_page_nav on your wordpress and make a custom post type page as your home page, then the pagination won't work. You should add this codes underneath where…
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>PHP-28-10-2015</title> <link href="css/bootstrap.min.css" rel="stylesheet"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> </head> <body> <div class="container"> <div class="col-md-6 col-md-offset-3"> <form action='action.php' method="post"> <div class="form-group"> <label for="exampleInputEmail1">Email address</label> <input type="number" class="form-control" id="exampleInputEmail1" placeholder="num1" name="num1"> </div> <div class="form-group"> <label for="exampleInputPassword1">Password</label> <input type="number" name="num2" class="form-control" id="exampleInputPassword1" placeholder="num2"> </div> <!-- <div class="form-group"> <label for="exampleInputFile">File input</label> <input type="file" id="exampleInputFile"> <p class="help-block">Example block-level help text here.</p> </div> <div class="checkbox"> <label> <input type="checkbox"> Check me out </label> </div> --> <button type="submit" class="btn btn-default">Submit</button> </form> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Java script search in the array</title> </head> <body> <h id="display"></h> <input type="number" id="number"> <button onclick="checker()">Check in array</button> <script> var house = [1,4,3,7,6,5,6,7,2,9,20,11]; var…
#include<stdio.h> #include<math.h> int add(a, b) { printf("Please enter two number for add: \n"); scanf("%d%d",&a,&b); printf("%d + %d = %d\n",a,b,(a+b)); return 0; } int sub(a, b) { printf("Please enter two…