django-php-bridge icon indicating copy to clipboard operation
django-php-bridge copied to clipboard

Authentication bridge between Django and PHP

Results 8 django-php-bridge issues
Sort by recently updated
recently updated
newest added

` Request Method: | GET -- | -- http://localhost:8000/ 2.2.2 AttributeError 'str' object has no attribute 'read' C:\xampp\htdocs\test\dbs\env\lib\site-packages\phpserialize.py in _unserialize, line 473 C:\xampp\htdocs\test\dbs\env\Scripts\python.exe 3.7.3 ['C:\\xampp\\htdocs\\test\\dbs', 'C:\\xampp\\htdocs\\test\\dbs\\env\\Scripts\\python37.zip', 'C:\\xampp\\htdocs\\test\\dbs\\env\\DLLs', 'C:\\xampp\\htdocs\\test\\dbs\\env\\lib', 'C:\\xampp\\htdocs\\test\\dbs\\env\\Scripts', 'c:\\users\\arjun...

Solve in setup.py : packages=['django_php_bridge','django_php_bridge.backends'],

After installing django-php-bridge, I am unable to serialize some python objects not related to auth into request's session: ``` Traceback (most recent call last): File "venv/local/lib/python2.7/site-packages/django/core/handlers/base.py", line 223, in get_response...

since phpserializer serialize tuple & list into dict, so it might get error when use other authentication system, like https://github.com/pennersr/django-allauth . I wrapped the session_dict, hope this bridge could be...

Session serialization of php is not the same as the functions `serialize()` and `unserialize()` prior to php version 5.5.4. If you use Zend Framework 2 for example, `$_SESSION` becomes a...

Figure out where/who/how to ask for contributions on how to integrate with existing PHP frameworks. Abstract documentation on integrating with PHP in the general case is very hard, but providing...

Split the readme up in to properly-organized sphinx documentation and use readthedocs.org to host the documentation.

This example PHP class currently relies on a magic "Database" object included from elsewhere that handles the database connection. Refactor this to something more generally-usable. Maybe this is where people...