Click anywhere to close this dialog

Farewell

Great is the art of beginning, but greater is the art of ending
Henry Wadsworth Longfellow

I announce that I cease all development and activity in the programming universe indefinitely. My career has reached the turning point I was not expecting for at least another year, leaving me highly off guard and without laid-out plans for this hobby's continuity. I have begun a 5-year residency program in Neurosurgery which is clearly not compatible, time-wise, with programming.

I gave in all my passion for developing, and you gave me back your loyalty and trust, even when I did not deserve that much. Now it is the time for payback. I release all my present and past work as Open Source software, in the hope some talented developer will continue maintaining and expanding my vision of a modern, sleek forum software. The intrinsic flexibility of MyBB is the true hidden gem of an otherwise outdated codebase; I do hope the project can continue and be updated complying to the latest coding standards.

I hereby thank Euan, kawaii, andrewjs18, Ben, Matt, Omar G., effone, Eric J., Devilshakerz, Wildcard, JordanMussi and all the other team members I have had the opportunity to work with when I was a MyBB team member. I thank Tomm M, my mentor, who inspired me to pick up coding with his piece-of-art plugins. And finally, I thank all of you MyBBoost subscribers who have helped me getting through my toughest university years economically.

Yours sincerely, Filippo

Issues setting up Flyover

15 Nov 2015 Edited
#1
This issue is marked as solved
Now that I'm in the proper forum, :D , how do I add the social login links/images (as described in Flyover Settings > Login box style) to my "Login to account" signin popup and "Create an account" page? Because as of now they only show up on the "User panel" page under "Miscellaneous" > "Third party integration" section.

PluginLibrary is installed and cURL is enabled (screenshot attached).

I've gone over both https://github.com/Shade-/MyFacebook-Con...umentation and https://github.com/Shade-/MyFacebook-Con...to-install and I'm still having trouble getting everything working correctly.

UPDATE
I noticed that in "flyover_login_box" the only code there was this:
flyover_login_box
Posting this code to "flyover_login_box":
<tr>
    <td class="trow2" style="text-align: center" colspan="2">
        {$lang->flyover_login_box_connect_with}
    </td>
</tr>
<tr>
    <td class="trow1 flyover" style="text-align: center" colspan="2">
        {$buttons}
    </td>
</tr>
from this thread http://www.mybboost.com/showthread.php?tid=4 helped, but the social login links are still not showing up quite correctly.

A bug report screenshot is attached as well.
PipiShortstocking 17 Nov 2015
#21
I made you an admin of the site to make it easier to troubleshoot the problem. See PM.

In the meantime I'll set up MyFacebook Connect and will report back.
Shade 17 Nov 2015
#22
Would you mind trying to copy /myfbconnect/src/base_facebook.php to /inc/plugins/Flyover/hybridauth/Hybrid/thirdparty/Facebook, overwriting the existing file? That may be the cause of the issue (Flyover is using v1, MFC is using v2 which is the new modern API endpoint).
PipiShortstocking 17 Nov 2015
#23
Just copied base_facebook.php to that location. Does not seem to have made a difference.

I also installed MyFacebook Connect and it seems to be working. Feel free to test to confirm.
Shade 18 Nov 2015 Edited
#24
Well well well. I did some tests with the new APIs (2.5). I was using 2.2 in my previous tests and worked great because read_stream was not deprecated, but it has been in 2.4, so now basically (and hopefully) everything that contains that scope does not work as expected, throwing a general and non-descriptive error.

Download the attachment below, upload it to inc/plugins/Flyover/hybridauth/Hybrid/Providers, replacing the existing Facebook.php file. Also, restore the base_facebook.php file you replaced with MFC's one previously if you can (in order to keep consistency with Flyover's official package).

I really hope this is the nasty bug we are looking for.
PipiShortstocking 18 Nov 2015
#25
Well I'll be damned! It works! :) :D SQUARED COOL

I restored the base_facebook.php with the original Flyover one.

I was also wondering, which file is this text located in, "Or login with a social network below"? I wanted to make a tiny adjustment to it.

One small error I noticed, in "PM sender" I put "admin", but the message still shows up as if it's from "MyBB Engine".
Shade 18 Nov 2015 Edited
#26
Glad it does! Finally :)

Flyover is localization-friendly. This means every text you see using the plugin is located in the inc/languages/english/flyover.lang.php file. You can change its content from the language manager within your ACP as well. To change its location, you can locate the language variable "{$lang->flyover_login_box_connect_with}" within Flyover's "flyover_login_box" template.

Thank you for the PM user report. I will look into it.
PipiShortstocking 19 Nov 2015
#27
Wonderful! Thank you very much. I was able to change text in flyover.lang.php with ease.