SAML Authentication Portal [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'd like to develop a portal similar to what a company like OneLogin (http://www.onelogin.com/) has: The user would login with their login credentials then have links to the web resources that their account is associated with. When they see their resources all they need to do is click on them and they'll be automatically login in (SAML authentication).
Are there any open source projects out there that have started on this effort? It would be great if there was something that we could use as a base to build on top of with a friendly license (e.g. MIT).
Thanks

You tagged it "php" but that doesn't appear in your question?
Essentially, you need a client-side SAML stack.
I've listed all the ones I know about here:
SAML : A SAML stack .
In terms of php, have a look at simplesamlPHP.
That has all the plumbing you'll need and it's open source.

If you want it developed with Symfony2 PHP framework you could check SamlSPBundle or its foundation stand-alone library lightsaml

Related

Debugger tool for Codeigniter [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I would like to develop API calls using Codeigniter. To view the GET/POST/DELETE requests came recently, I would like to have one Debugging Tool, like Yii2 - Debugger.
PF Below for Yii-Debugger
Please help me with any Codeigniter Debugger tool which shows 10-50
recent requests, which holds the DB requests too.
I know about DebugBar that holds the current page data.
I guess just enabling the profiler should help (single request).
In controller:
$this->output->enable_profiler(TRUE);
More on profiler configuration: https://www.codeigniter.com/userguide3/general/profiling.html#enabling-and-disabling-profiler-sections
UPDATE:
For logging all/multiple requests and having a dashboard, this lib should probably help: https://github.com/lonnieezell/codeigniter-forensics. I have no personal experiance with it, but it sounds like it does the trick. It also has a debug bar.

Recommendation for a platform to make a web classroom without install a software? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am making some search to do a web classroom online with :
responsive (so without Flash)
Without install a software
chat
LaTex
waiting line
one student at a time
Video conference
White board
Any idea?
Thanks
You can try WebRTC.
WebRTC is an open framework for the web that enables Real Time Communications in the browser. It includes the fundamental building blocks for high-quality communications on the web, such as network, audio and video components used in voice and video chat applications.
For more information about WebRTC, visit link
Try webrtc samples
Try the HTML5 Rocks tutorial

REST-Centric web dashboard in PHP [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm planning to build a REST-Centric web dashboard in PHP. Without connecting to the databases directly. All data 100% comes in and goes out through REST calls alone. I've gone through few framework for writing API like slim, silex, Wave and Lumen, gonna pick one form this (for Azure & MSSQL), My concern is whether developing the Dashboard in Angular or some other js & pure HTML will have any security issue or is it safe to go with Server-side scripts for dashboard too?
Interesting question, I'm doing research for a similar project and this is what I have so far:
All the opensource out there don't fill 100% the needs I have for the project so I can't use them (ie: not mobile ready or not tv ready or poor browser support)
Because of the above, I will need to build a custom solution:
server side: Lumen framework for the log in and for securing+processing all the dashboard requests
client side: I will use a angular.js + dashboard template (from envato or from strapui). You can also do it with jQuery.
I hope it helps

Login using single sign on (SSO) in Laravel [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
This post was edited and submitted for review last year and failed to reopen the post:
Original close reason(s) were not resolved
Improve this question
I plan to introduce a single sign-on (SSO) to my Laravel 5 applications. Basically, I have two websites on different domains. The idea is simple: if I'm already authenticated on one of them, I don't need to sign in on the other.
I've been looking for a solution for a while now, but I would like to ask you: Do you know or can recommend a package or library to provide SSO to Laravel application?
Native PHP solutions are also welcome. Thanks!
You can use the SAML standard in order to solve your SSO needs.
Review this github repository that help you implement a SAML service provider:
https://github.com/aacotroneo/laravel-saml2
If you need to implement a SAML Identity provider you can use simpleSAMLphp and use Lavarel database as authentication source.
https://simplesamlphp.org/docs/stable/simplesamlphp-idp
You can try out the miniorange/saml-laravel-free package. It makes things quite simple as it also provides a GUI and also does the whole authentication thing own its own.

Opensource Chat Application? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 9 months ago.
Improve this question
I have a prosperity application written in-house in PHP for collaboration (Basecamp knock off). We're looking for a way to add IM chat (facebook or gmail style chat), is there a opensource solution we could use with great documentation and a easy to use API?
Platform:
Linux, PHP 5, MySQL, SmartyPHP and Zend Framework.
Maybe you could use Chris Coyier's Chat Room.
http://css-tricks.com/chat2/
Another might be Ajax IM
http://ajaxim.com/
Search for Jabber. It's an open standard based IM protocol. There are several open source implementations which you can use. Also, there are several PHP Client API's which you probably can suit to your needs.

Categories