-
Content Count
35 -
Joined
-
Last visited
About IPv6Freely

-
Rank
New Member
Profile Information
-
Location
San Diego, CA
-
Interests
Ice Hockey, Goaltending, Juniper Networking, Python
Recent Profile Visitors
705 profile views
-
IPv6Freely started following Brilliant Discord Integration
-
bfarber reacted to a post in a topic: PHP Version Incorrect
-
Yep! I just got it... once I figured out that upgrading PHP does not update extensions. I added all the ones I had prior to the upgrade and all is good now 🙂 Thank you!
-
Okay, I found that I had to modify a line in my nginx config: location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.0-fpm.sock; } Had to change line 3 to reflect the new PHP version. However, once I did that I was getting 500 errors: 2020/02/10 09:21:43 [error] 20526#20526: *3 FastCGI sent in stderr: "PHP message: PHP Fatal error: Uncaught Error: Call to undefined function IPS\mb_internal_encoding() in /mnt/mshvol-01/www/forums/init.php:142 Stack trace: #0 /mnt/mshvol-01/www/forums/init.php(890): IPS\I
-
IPv6Freely started following PHP Version Incorrect
-
Hi there, Life got in the way of us keeping our installation up to date, and we're currently running v4.3.6. The main reason was the requirement for a PHP upgrade. Regardless, I finally got around to upgrading PHP. Now we're on PHP v7.3.14, but the upgrade tool continues to say we're still on PHP v7.0.33. I'm not sure what I'm missing, here. I've already restarted the web server (we're using nginx, though I'd like to ultimately go back to Apache but thats a whole other discussion for another day), and also restarted php7.3-fpm. What am I missing here?
-
IPv6Freely started following Geolocation Firewall
-
Reject Validating Members from Specific Country
IPv6Freely replied to IPv6Freely's topic in Help & Support
Thank you, these both look like they'd do the trick! -
IPv6Freely started following Reject Validating Members from Specific Country
-
Is it possible to reject validating members whose IP addresses resolve to a specific country? Either a setting or a plugin? We've been bombarded with spam accounts over the last couple weeks who all manage to get past the email verification, the captcha, and the question/answer challenge to get fully registered. All of them from the same country.
-
Fierce God reacted to a comment: Video Tip: Create a homepage in under 5 minutes with Pages
-
IPv6Freely started following Advanced Stats and Forum Sidebar
-
IPv6Freely started following Trophies and Medals - Supporttopic, Clubs and Commerce Integration and Easy Pages
-
We need the ability to have items in the store only available to club members. Is that something possible currently (I wasn't able to find a way) or can it possibly be integrated into a future release?
-
I accomplished this with the following (probably really bad) code: <div class="ipsTrophy-postbit-container ipsType_center"> {{foreach $items AS $trophy}} {{if $trophy->item->name_seo == "winterfest"}} {$trophy->item->getItemImage('trophy_trophyicon ipsTrophy-postbit-bit', 2, TRUE)|raw} {{endif}} {{endforeach}} {{foreach $items AS $trophy}} {{if $trophy->item->name_seo == "summerjam"}} {$trophy->item->getItemImage('trophy_trophyicon ipsTrophy-postbit-bit', 2, TRUE)|raw}
-
I'd even be happy being able to change them to show in a descending order instead. Edit: I accomplished this by doing: {{$items = array_reverse($items);}} Would still definitely be nice to have a sort option in admincp.
-
Another feature request: The ability to order medals. Eg. I always want winterfest first, summerjam second, and then the other smaller medals in whatever order they are achieved.
-
By the way, I killed the legend by adding this to CSS: legend.ipsType_center a[href*="node_trophies_TrophiesAndMedals"] { display: none; }
-
Could you also do size and position per medal? For example we have this: Currently this is all controlled by adding people to various secondary groups (one group is SummerJam, one group is Winterfest, and then we have a group that is just one of the bottom icons, another group that is two of them, and another group that is three of them) so obviously our groups setup is a convoluted mess. Obviously the bottom three icons are easily done as medals, but the two wider ones aren't going to work. I'd also like to not have the "Trophies and Medals" heading under the user, either.
-
Just ordered this (under the primary account for our site - I'm just a secondary admin) and can't wait to implement. Until now we'd just been using secondary groups with badges, adding people to secondary groups for various things just to give them the badge. Looking forward to cleaning that entire process up!
-
IPv6Freely changed their profile photo
-
Just purchased this. To be honest I bought it more to use as a code example than for its intended purpose ?
-
Video Tip: Create a homepage in under 5 minutes with Pages
IPv6Freely commented on Matt's entry in Community Management
I completely agree with the above bolded quote, but it also seems to be one of the most difficult to get your head around. -
Video Tip: Create a homepage in under 5 minutes with Pages
IPv6Freely commented on Matt's entry in Community Management
This is fantastic! A great way to get started. I think the most confusing part of Pages though is databases. How they work, what content they contain, how you put content into a database, etc. Would you be able to do a follow-up?