umm. when i try to install userspice. it show a error.
System Requirement Check
We're sorry, but your PHP version is out of date. Please update to PHP 5.5.0 or later to continue. PHP Website
Yep. That's the problem. I'm guessing you're using 5.3. Who is your hosting provider? Is there a place in your cpanel to change to PHP 5.6?
is a intranet, is using php 5.4.45, already ask for a change of the version.
ok. imposible the update, in the intranet exist anothers apps, that maybe get a error after the update
ok.. allready apply some css on this and looks the same like 4.x,
but i dont understand on this how to call some DB info by ID, on the 4.x is pretty easy but on this
i do <?php echo $loggedInUser->username ?>, and gets me the username (on the table id=1 and user_name=admin), but i try to call anothers fields like "sign_up_stamp", "active", some customs fields and i cant find the place to declare them.
mud if you give me a hint please.
I just tested this. I would copy all the userspice 4 classes into the models folder
Then edit models/config.php
Right after the line
require_once("funcs.php");
Add
require_once("Config.php");
require_once("Cookie.php");
require_once("DB.php");
require_once("Hash.php");
require_once("Input.php");
require_once("Redirect.php");
require_once("Session.php");
require_once("Token.php");
require_once("Validate.php");
And that SHOULD do it.