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
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/printthread.php(287) : eval()'d code 2 errorHandler->error
/printthread.php 287 eval
/printthread.php 117 printthread_multipage



UserSpice
4.2 Beta Released - Final Version is coming soon - 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: 4.2 Beta Released - Final Version is coming soon (/showthread.php?tid=370)

Pages: 1 2 3


4.2 Beta Released - Final Version is coming soon - mudmin - 11-27-2016

Check out UserSpice 4.2 now with social logins. Links are on the homepage. Unless you guys find bugs (there are probably some), this will be the full version.

Instructions for configuring social logins are here...
http://userspice.org/documentation-social-logins/

One very cool thing about our implementation is that it detects if the user already has an account on the system and links their FB/Google creds with the same account. Most implementations of Oauth would create 3 different accounts for "regular", google, and facebook. We're better than that!


4.2 Beta Released - Final Version is coming soon - Trioxin - 11-28-2016

When 4.2 stable is released, will upgrading from 4 be easy so long as we haven't made custom mods? Maybe the install script will perform the upgrade?


4.2 Beta Released - Final Version is coming soon - mudmin - 11-28-2016

Yeah. There is a patch in the current userspice.com/updates that takes you from 4.1 to 4.2. What version are you running?


4.2 Beta Released - Final Version is coming soon - Trioxin - 11-28-2016

4.1. I just didn't want to start using 4.2 if it's not stable yet.


4.2 Beta Released - Final Version is coming soon - mudmin - 11-29-2016

It's stable. I'm about to push it as the final version.


4.2 Beta Released - Final Version is coming soon - Trioxin - 12-04-2016

I patched to the new version. Good stuff. I see there are some sql fields hinting at payment processing and I read someone talking about Stripe integration during signup. I was wondering if that's going to be in the 4.2 stable release or some future release and if multiple products will be possible.

I guess either way, I have to code my own payment processing because I need it now. Also, I'm doing a subscription/recurring payments setup that gives user groups access to certain pages/features. I already have some Braintree code laying around from a previous project. Perhaps I'll contribute my Braintree Userspice integration on GitHub.


4.2 Beta Released - Final Version is coming soon - marcchoover - 12-07-2016

Not sure if it was just me, but the Google instructions were spot on, but the Facebook instructions were only half right. Also, in /users/fb-callback.php on line 16, i had to change:
Code:
require_once("/src/Facebook/autoload.php");

to

Code:
require_once("src/Facebook/autoload.php");

As it was creating an error stating it couldn't find the file. Same thing for /users/includes/facebook_oauth.php on line 51

Code:
require_once("/src/Facebook/autoload.php");

to

Code:
require_once("src/Facebook/autoload.php");



4.2 Beta Released - Final Version is coming soon - dan - 12-08-2016

I will definitely check this out. If there's one thing I've learned, things that work on my system may not work on every system. I am on vacation right now but I will definitely update this when I get back.


4.2 Beta Released - Final Version is coming soon - inugami - 12-12-2016

i made the changes suggested in previous posts but i got this error
<pre>
Code:
[Sun Dec 11 22:23:01.401006 2016] [:error] [pid 4408:tid 1652]
[client ::1:49483] PHP Fatal error:  require_once(): Failed opening required '/src/Facebook/autoload.php'
(include_path='C:\\xampp\\php\\PEAR') in C:\\xampp\\htdocs\\UserSpice42\\users\\includes\\facebook_oauth.php on line 51,
referer: http://localhost//userspice42/index.php
</pre>

If someone can enlight me in this error i really apreciate that


4.2 Beta Released - Final Version is coming soon - marcchoover - 12-12-2016

On line 51 in /users/includes/facebook_oauth.php, change the path from

Code:
require_once("/src/Facebook/autoload.php");

to

Code:
require_once("src/Facebook/autoload.php");