Jump to content

ipsRegistry::init() redirects to 404 page


NeedlessDM

Recommended Posts

Hello,

I want to create forums directly from a Laravel page (Laravel 5.6) and I'm getting redirected to forum's 404 page (Sorry, we couldn't find that!). If i'm using this code bellow in a simple php file is working, if I'm using it from a Laravel Model it redirects me to the forum saying that the page is not found.

My test code from Forum model is:

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

require_once ('/../../forum/initdata.php');
require_once ('/../../forum/admin/sources/base/ipsRegistry.php');

class Forum extends Model
{
    public static function test_forum ()
    {
        $reg = \ipsRegistry::instance();
        $reg->init();

        $member = \IPSMember::load( 1 );

        return $member;
    }
}

Is there a way to solve this?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...