02-18-2017, 08:27 AM
Hey folks !
I just downloaded the final version of US4 and found some bugs:
When I use the facebook-login I got some fatal errors while loading the sources. I fixed two errors and after that the login with facebook works fine:
File: users/fb-callback.php
Line 16:
old:
new:
File: users/includes/facebook_oauth.php
Line 51:
old:
new:
-----
Also the FB-Button needs a fix to show on website:
File: users/includes/facebook_oauth.php
Line 64:
old:
new:
-----
After that I also found an error with loading the jquery.js in file "header.php":
File: users/includes/header.php
Line 107:
old:
new:
-----
Now the installation works (until now) without any errors
Yours
Kighlander
I just downloaded the final version of US4 and found some bugs:
When I use the facebook-login I got some fatal errors while loading the sources. I fixed two errors and after that the login with facebook works fine:
File: users/fb-callback.php
Line 16:
old:
Code:
require_once("/src/Facebook/autoload.php");
Code:
require_once("src/Facebook/autoload.php");
File: users/includes/facebook_oauth.php
Line 51:
old:
Code:
require_once("/src/Facebook/autoload.php");
Code:
require_once("src/Facebook/autoload.php");
Also the FB-Button needs a fix to show on website:
File: users/includes/facebook_oauth.php
Line 64:
old:
Code:
.$us_url_root.'/users/images/facebook.png" alt=""/></a>';
Code:
.$us_url_root.'users/images/facebook.png" alt=""/></a>';
After that I also found an error with loading the jquery.js in file "header.php":
File: users/includes/header.php
Line 107:
old:
Code:
<script src="<?=$us_url_root?>users/js/jquery.min.js"></script>
Code:
<script src="<?=$us_url_root?>users/js/jquery.js"></script>
Now the installation works (until now) without any errors
Yours
Kighlander