12-12-2015, 02:20 PM
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></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!
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'>×</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'>×</span></button>
<ul>";
foreach($successes as $success)
{
echo "<li>".$success."</li>";
}
echo "</ul>";
echo "</div>";
}
}
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!