How to Enable Cross Origin Resource Sharing (CORS) for Sharing Resource Using Apache Servers, PHP and Jquery
Method 1 of 2:
Client Side Domain
- This involves sending a request for some resource
- Open the HTML file present on the client side in which you are sending resource request. As shown, the client is sending request to server side for getting customer's record with ID as '145'.
- Mention the IP address of the server side domain and complete path of the file that need to be accessed. As shown, the file demo.php which needs to be accessed is present on the Apache sever (occupying port 80) of the server side domain. The server side domain has an IP address of 192.148.0.108.
- Launch the request using your Apache server by putting the URL localhost/CORS-UsingJquery/sub2.html on the web browser's address bar. As the path indicates, the requesting client side file sub2.html is present inside a folder named as CORS-UsingJquery. If the access headers are properly set on the server side, then the record of the customer with ID as '145' will be successfully displayed.
Method 2 of 2:
Server Side Domain
- This involves generating a response to a resource request.
- Open the PHP file present on the server side in which you intend to send the response back to the client side.
- Set and customize appropriate headers to allow client's access to file demo2php. The statement header ('Access-Control-Allow-Origin: *'); allows access to every domain as indicated by asterisk (*). You can also specify the IP address of some specific domain to grant access only to that domain.
- If the headers are specified correctly, then resource access is granted successfully to client side domain.
4.5 ★ | 2 Vote
You should read it
- KMS activation deployment for Windows 10, Windows 8.1, Windows Server 2012 R2, Windows Server 2016
- Deploy KMS activation on Windows Server 2008
- How to Create a Windows Server 2012 R2 Domain
- Instructions for joining the domain on Windows 8.1 (Part 2)
- How to install DNS Server on Windows Server 2019
- Use Nautilus as FTP Client
- The best top 10 Public DNS Server you should know now
- Instructions for creating a Domain Controller - DC on Windows Server 2012
May be interested
- How to Make a PHP Hit Counterhit counters are a popular feature among new and experienced webmasters alike. there are several different methods of including a hit counter on your site, but this manual focuses on a specific implementation in php. it is assumed you are...
- How to Create and Call PHP Functionsperhaps you have learned the basics of writing php scripts. but sometimes your code may be long and repetitive. php functions are a flexible and easy way to consolidate code. this tutorial will you teach the basics of php functions. (note:...
- How to Install PHPMailerneed to send emails from your php application? the default mailing system in php (mail()) doesn't offer the customization features of phpmailer, which is the most popular mail extension for php. this wikihow will show you how to install...
- How to Write PHP Scriptsphp is a server scripting language used to make web pages interactive. it became widely popular due to its ease of use, interactivity within web pages, and integration with html. think of what happens when a page is edited on this website....
- How to Open a PHP Filethis wikihow teaches you how to open and edit a php programming file on your windows or mac computer. download and install notepad++. notepad++ is a free, windows-only text editor that can open php files. to install it, do the following:
- Array (Array) in PHPan array is a data structure that stores one or more of the same value types in a single value.