dev-master
9999999-dev https://github.com/Pulpmedia/P3PCookieBundleSolves Cookie Storage issues in iFrames for Internet Explorer in Symfony2
MIT
The Requires
- php >=5.3.2
by Alexandre Kilian
cookie session p3p ie
Solves Cookie Storage issues in iFrames for Internet Explorer in Symfony2
The P3PCookieBundle adds support for cookie storage in iFrames for Internet Explorer. It solves an Issue, where cookies (for example for session storage) don't work for applications inside iFrames., (*1)
This version of the bundle requires Symfony 2.1+., (*2)
Installation only requires two steps:, (*3)
Add P3PCookieBundle to your composer.json, (*4)
{ "require": { "pulpmedia/p3pcookiebundle": "~1.0@dev" } }
Now tell composer to download the bundle by running the command:, (*5)
``` bash $ php composer.phar update pulpmedia/p3pcookiebundle, (*6)
Composer will install the bundle to your project's `vendor/pulpmedia` directory. ### Step 2: Enable the bundle Enable the bundle in the kernel: ``` php <?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Pulpmedia\P3PCookieBundle\PulpmediaP3PCookieBundle(), ); }
Your response headers will have the required P3P settings to enable cookie storage inside iFrames for Internet Explorer, (*7)
This bundle is under the MIT license., (*8)
Solves Cookie Storage issues in iFrames for Internet Explorer in Symfony2
MIT
cookie session p3p ie