eypsilon
eypsilon
I already was curious how to implement third Party Lib's without extending them. Turns out 5 methods can already get the job done pretty well. Great, I like this one...
Anyone found a solution for this one? I don't understand, why the original files get deleted in first place?
I don't know if it will fix the problem, but ` session_start();` must be called before anything else, before `require_once`. Is `error_reporting` on?
> Do you have a example Well, it should work, like you are doing it. Try, if your SESSION works at all, save a string in `$_SESSION['test'] = 'Test var';`,...
Sorry, you don't need to do the SESSION-handling, it's done internally by the lib. And the target-page (or URL) you redirect to needs to require the library, too.
Chack the SESSION on the target Page, it should be filled after the require ```php require_once '../vendor/autoload.php'; var_dump($_SESSION); ```