I just tried with http ans https to fetch data in the for of json from server, while I try with http its working fine but when I try with https getting error. Is there any way to handle "https" request if server is not cofigured with SSL.
How to handle https request if ssl is not installed on server using codeigniter
46 Views Asked by krishnakumar At
1
There are 1 best solutions below
Related Questions in CODEIGNITER-URL
- Is $this->uri->segment(3) secure in Codeigniter
- How to make a pretty simple Codeigniter url route?
- Conflict when uploading images with multiple file field in codeigniter
- Route Codeigniter URL to another port
- redirect uri segment after delete
- Develop a sub-websites (micro websites) in Codeignitter
- Codeigniter Controller class login form : 404 page not found
- Codeigniter url/links with mode rewrite htacess: object not found
- CodeIgniter - pre select a value from dropdown based on link clicked
- Code igniter url segment
- Alert primary key insert
- call the ' id ' of the mysql database with varchar format but Unknown column 'GE' in 'where clause'
- CodeIgniter remove index.php from href
- Codeigniter admin route
- Codeigniter Uri segments are not printing special characters correctly
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
no, there isn't any way if the server isn't configured to user SSL. However if you want TLS encryption you could use a SSH tunnel. If you can't configure your application to use SSL you could configure a http server like Apache or nginx to act as an SSL Proxy.