What is an .htaccess file An .htaccess file may be a simple ASCII file that you simply create with a text editor like Notepad or TextEdit. The file lets the server know what configuration changes to form on a per-directory basis.
Please note that .htaccess is that the full name of the file. It isn’t file.htaccess, it’s simply .htaccess.
.htaccess files affect the directory during which they’re placed in and every one children (sub-directories). for instance if there’s one .htaccess file located in your root directory of yoursite.com, it might affect yoursite.com/content/, yoursite.com/content/images/, then on…
It is important to recollect that this will be bypassed. If you don’t want certain .htaccess commands to affect a selected directory, place a replacement .htaccess file within the directory you don’t want to be affected with the changes, and take away the precise command(s) from the new file.
Features With an .htaccess file you can:
Redirect the user to different page Password protect a selected directory Block users by IP Preventing hot-linking of your images Rewrite URLs Specify your own Error Documents In this tutorial we’ll be focusing only on rewriting URLs.
Removing Extensions To remove the .php extension from a PHP file for instance yoursite.com/wallpaper.php to yoursite.com/wallpaper you’ve got to feature the subsequent code inside the .htaccess file:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.php [NC,L]
If you would like to get rid of the .html extension from an HTML file for instance yoursite.com/wallpaper.html to yoursite.com/wallpaper you merely need to change the last line from the code above, to match the filename:
RewriteRule ^([^\.]+)$ $1.html [NC,L]
That’s it! you’ll now link pages inside the HTML document without having to feature the extension of the page. For example:
wallpaper Adding a trailing slash at the top I received many requests asking the way to add a trailing slash at the top, for example, yoursite.com/page/
Ignore the primary snippet and insert the code below. the primary four lines affect the removal of the extension and therefore the following, with the addition of the trailing slash and redirecting.
Link to the HTML or PHP file an equivalent way as shown above. Don’t forget to vary the code if you would like it applied to an HTML file rather than PHP.
Some people asked how you’ll remove the extension from both HTML and PHP files. I don’t have an answer for that. But, you’ll just change the extension of your HTML file from .html or .htm to .php and add the code for removing the .php extension.
How to Check Your Maximum File Upload Size Limit in WordPress?
WordPress will automatically show the utmost file upload size limit once you are uploading images or media. to see it you’ll simply attend Media » Add New page and you’ll see the utmost file uplaod size limit for your WordPress site.
1: Theme Functions File
There are cases where we have seen that just by adding the following code in theme’s functions.php file, you can increase the upload size:
@ini_set( 'upload_max_size', '32M');
@ini_set( 'post_max_size', '32M');
@ini_set( 'max_execution_time', '300');
htaccess Method
Some people have tried using the .htaccess method where by modifying the .htaccess file in the root directory, you can increase the maximum upload size in WordPress. Edit the .htaccess file in your WordPress site’s root folder and add the following code:
Web development is the coding or programming that enables website functionality, per the owner’s requirements. It mainly deals with the non-design aspect of building websites, which includes coding and writing markup.
Web development ranges from creating plain text pages to complex web-based applications, social network applications and electronic business applications.
The web development hierarchy is as follows: Client-side coding Server-side coding Database technology
Web development refers to building, creating, and an maintaining websites. It includes aspects such as web design, web publishing, web programming, and database management.
While the terms “web developer” and “web designer” are often used synonymously, they do not mean the same thing. Technically, a web designer only designs website interfaces using HTML and CSS. A web developer may be involved in designing a website, but may also write web scripts in languages such as PHP and ASP. Additionally, a web developer may help maintain and update a database used by a dynamic website.
Web development includes many types of web content creation. Some examples include hand coding web pages in a text editor, building a website in a program like Dreamweaver, and updating a blog via a blogging website. In recent years, content management systems like WordPress, Drupal, and Joomla have also become popular means of web development. These tools make it easy for anyone to create and edit their own website using a web-based interface.
While there are several methods of creating websites, there is often a trade-off between simplicity and customization. Therefore, most large businesses do not use content management systems, but instead have a dedicated Web development team that designs and maintains the company’s website(s). Small organizations and individuals are more likely to choose a solution like WordPress that provides a basic website template and simplified editing tools.
NOTE: JavaScript programming is a type of web development that is generally not considered part of web design. However, a web designer may reference JavaScript libraries like jQuery to incorporate dynamic elements into a site’s design.
Google OAuth API provides a simple and powerful thanks to integrate the login system on the web site.
Google Login API permits the user to sign into web site|the web site} using their Google account while notsign on thereon website.
Google login system positively helps to extend the subscribers on your web site. as a result ofthese daysmost users have a Google account and that theywill log in with their Google account while not registration on your web site.
If You Want to Login with google Account then Just Follow below Step:
a. make your project name and click on create button wait for sec. select your project if you have multiple project then enable api
4. then you see below image like webpage
5. click on library then search google+api
6.click on them and then enable it
7. create credentials
8. choose a. google+ Api b. web browser c. click on user data and click on what credentials button
9. after click you saw a popup now click on set up consent screen then you will redirect to below image webpage
10. Type application name which you want and add Authorised domain name and just save them
11. create credentials
12. click on OAuth client ID and choose web Application
13. just see below image and follow them carefully
14. click on create button 15. after create you will see a popup where you see client Id And Client secret
16. click on credentials like below image
17. click on name (web client1 in my case) 18. download json file
19. put downloaded json file inside your google folder where you see client_credentials.json file replace all code of these file with your downloaded json code.
Add Paytm Payment Gateway to your mobile app or website. Collect online payments from your customers using UPI, Debit/Credit Cards, 50+ NetBanking options and Paytm Wallet.
PaytmIS A PAYMENT PROCESS SYSTEM, I WILL INTEGRATE Paytm WITH WEBSITES BY USING WITH PHP
Just follow below steps:
Step1: First, we need to create an account at https://business.paytm.com/ and get our merchant ID and Secret Key.
Now we can start coding in our site to use the Paytm. First, we will configure the Paytm with test credentials to test our code.
Step 2. (filename – config.php)
<?php /*
– Use PAYTM_ENVIRONMENT as ‘PROD’ if you wanted to do transaction in production environment else ‘TEST’ for doing transaction in testing environment. – Change the value of PAYTM_MERCHANT_KEY constant with details received from Paytm. – Change the value of PAYTM_MERCHANT_MID constant with details received from Paytm. – Change the value of PAYTM_MERCHANT_WEBSITE constant with details received from Paytm. – Above details will be different for testing and production environment.
*/ define(‘PAYTM_ENVIRONMENT’, ‘TEST’); // PROD define(‘PAYTM_MERCHANT_KEY’, ‘**********’); //Change this constant’s value with Merchant key downloaded from portal define(‘PAYTM_MERCHANT_MID’, ‘**********’); //Change this constant’s value with MID (Merchant ID) received from Paytm define(‘PAYTM_MERCHANT_WEBSITE’, ‘**********’); //Change this constant’s value with Website name received from Paytm
Step 4. Here in form, we have set the action=”Redirect.php”, so we will create a new file with this name –
<?php header(“Pragma: no-cache”); header(“Cache-Control: no-cache”); header(“Expires: 0”); // following files need to be included require_once(“./lib/config_paytm.php”); require_once(“./lib/encdec_paytm.php”);
SafexPay is the brand from PayGate having multiple payment solutions like white label payment gateways for banks and institutions and provides an all-inclusive payment gateway solution to merchants. SafexPay also provides Prepaid wallet platform , UPI solution, Recharge Solution, Offline Payments Like email, SMS and QR code based payments. Some of our unique product offerings are advanced Integration API for best success ratios, Dynamic Currency Conversion (DCC), Push Response Technology, Dynamic Switching, Retry options, Advanced Analytics, Recurring Payments, Multiple Currency Options, Omni-Channel Offering, E-Wallet & M-commerce etc. SafexPay aims to build digital payments businesses and platforms- Encompassing payment gateways, payment aggregation (through a PSP setup), mobile wallets , White-Label Solutions as well as to provide value added services in the payments domain to consumers, merchants, banks and financial institutions across the globe.
SAFEXPAYis a payment process system, I will integrate SAFEXPAY with websites by using with php
I am an experienced PHP web developer and completed several web development projects successfully using WordPress , Woocommerce, Html5, CSS3, Bootstrap, JavaScript, JQuery, PHP, Codeigniter, and Mysqli.