Jump to content

Salim Trouve

Clients
  • Posts

    22
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Salim Trouve reacted to Jim M in Issue with the converter (from old Invision backup to a fresh install)   
    Glad to hear you got that upgraded! ๐Ÿ™‚ย 
  2. Like
    Salim Trouve reacted to Jim M in Need database backup   
    As you have a self-hosted installation, you will need to contact your hosting provider for a backup.
  3. Like
  4. Like
    Salim Trouve got a reaction from SeNioR- in Invision Community & Laravel   
    Hi, thank you for your reply.
    I have already tested this solution :
    public function boot() { $path = base_path('../forum.vice/'); require_once $path . 'init.php'; view()->composer('*', function ($view) { \IPS\Session\Front::i(); }); } I'm logged in the forum but in Laravel blade I got token like "4d99edd69d5019629c6a37e13382fd0e" when I call :
    {{\IPS\Member::loggedIn()->name}} Do I have to do anything else ? About session or cookie domain ?
    Thank you ๐Ÿ™‚
  5. Thanks
    Salim Trouve reacted to Chris Anderson in Change the default font-family ?   
    https://www.tinkov.info
    Author lists sites they work with on their website.
  6. Like
    Salim Trouve reacted to Askancy in Invision Community & Laravel   
    As Daniel said, that hash indicates that the user is not logged in.ย Check cookies if the cookie is saved correctly.
    I did the integration years ago so I don't remember precisely, but you will see on the IP.Board constants.php file you have to indicate the Cookie Domain and the path, here is my configuration:
    \define( 'COOKIE_DOMAIN', 'MainDomin.ext' ); \define( 'COOKIE_PATH', '/' ); Because otherwise IP.Board cookies will be only for the subdomain
  7. Like
    Salim Trouve reacted to Marc Stridgen in Invision Community & Laravel   
    I have moved this over to our developer forum, since its not general support this one. ๐Ÿ™‚ย 
  8. Like
    Salim Trouve reacted to Askancy in Invision Community & Laravel   
    I for my project with Laravel 9 decided to use the user management of IP.Board, the user logs in from the forum and has full access also to the portal in Laravel, like commenting articles.
    To make Laravel communicate with IP.Board just call the file init.php in AppServiceProvider.php
    class AppServiceProvider extends ServiceProvider { public function register() { // } public function boot() { $path = base_path('../forum.***.ext/'); require_once $path . 'init.php'; view()->composer('*', function ($view) { \IPS\Session\Front::i(); }); To get user data on a laravel blade I use:
    {{\IPS\Member::loggedIn()->name}} I hope this can be a starting point to help you develop what you want.
  9. Like
    Salim Trouve reacted to Marc Stridgen in Invision Community & Laravel   
    As mentioned, you would require some SSO development in order to achieve this. You would need a 3rd party developer to do this, or we do offer this as a paid service on our creator pro and upward, which you can see on our packages page here
    https://invisioncommunity.com/buy
ร—
ร—
  • Create New...