The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
UserSpice 3.0.1 Released! Bugfixes
#2
I installed US on my server and I like what you have so far.

Server is running Ubuntu 14.04 with up to date Apache, etc.

No errors thus far.

I did notice that you have not had a chance to update/style the success/error blocks. Here is the code I used to make them look pretty on my site. (funcs.php)

<pre>
Code:
//Displays error and success messages
function resultBlock($errors,$successes){
    //Error block
    if(count($errors) > 0)
    {
        echo "<div class='alert alert-danger alert-dismissible' role='alert'>
        <button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'>&times;</span></button>
        <ul>";
        foreach($errors as $error)
        {
            echo "<li>".$error."</li>";
        }
        echo "</ul>";
        echo "</div>";
    }
    //Success block
    if(count($successes) > 0)
    {
        echo "<div class='alert alert-success alert-dismissible' role='alert'>
        <button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'>&times;</span></button>
        <ul>";
        foreach($successes as $success)
        {
            echo "<li>".$success."</li>";
        }
        echo "</ul>";
        echo "</div>";
    }
}
</pre>


The logout link on the left nav bar got me right away. lol I suggest moving it to the bottom of the nav bar.

How about setting up an automated feature for the "For security reasons, you need to change your reCAPTCHA key." message. That way folks don't have to dig to remove the message.

Can you put the "2016 Your Copyright Here" in the Admin Site Config? Make it a little easier for admin to update.

Overall I really like what you have! Looks good!
  Reply


Messages In This Thread
UserSpice 3.0.1 Released! Bugfixes - by mudmin - 12-11-2015, 12:03 AM
UserSpice 3.0.1 Released! Bugfixes - by DaVaR - 12-12-2015, 02:20 PM
UserSpice 3.0.1 Released! Bugfixes - by mudmin - 12-12-2015, 02:33 PM
UserSpice 3.0.1 Released! Bugfixes - by mudmin - 12-12-2015, 02:35 PM
UserSpice 3.0.1 Released! Bugfixes - by DaVaR - 12-12-2015, 04:18 PM
UserSpice 3.0.1 Released! Bugfixes - by mudmin - 12-12-2015, 04:38 PM
UserSpice 3.0.1 Released! Bugfixes - by mudmin - 12-12-2015, 05:43 PM
UserSpice 3.0.1 Released! Bugfixes - by mudmin - 12-12-2015, 06:00 PM
UserSpice 3.0.1 Released! Bugfixes - by mudmin - 12-12-2015, 06:24 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)