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
/printthread.php 16 require_once



UserSpice
gtihub source broken - Printable Version

+- UserSpice (https://userspice.com/forums)
+-- Forum: Support Center (https://userspice.com/forums/forumdisplay.php?fid=23)
+--- Forum: UserSpice 4.3 and Below (https://userspice.com/forums/forumdisplay.php?fid=26)
+--- Thread: gtihub source broken (/showthread.php?tid=313)



gtihub source broken - nikolai - 10-16-2016

Clicking download from github results in a broken package.

langtype is non-functioning (Register/Login/Help Dropdown + logoff drop link) are invisible.

The email system is still broken....

Might want to fix that up.


gtihub source broken - mudmin - 10-16-2016

Thanks for the feedback. I pushed out a patch that since you already have 4.1.6b you can just steal navigation.php and user_spice_ver.php from the includes folder and download them into yours. The link is here....
http://userspice.org/patch/415to416b.zip

Can you give me an idea of what's wrong with the email feature? I don't use it in any of my projects, so I have to go set it up in order to test it for myself. Any feedback would be helpful.




gtihub source broken - nikolai - 10-17-2016

join.php also needs update for email to work (remove $to and put $email alongside adding rawurlencode($email) vs $email.

view_all_users.php should hide 'all users' button since regular users cannot actually make use of it.


gtihub source broken - nikolai - 10-17-2016

Also, there is no need for a logged in user to access

join.php
forgot_password.php
login.php

so you can add prior to #page-wrapper div the following

<?php
if ($user->isLoggedIn()) {
Redirect::to('account.php');
}
?>