
Everything posted by GTAPoliceMods
-
rulesListRows is throwing an error
Thank you so much for the reply, Marc! I can confirm that one of our custom plugins was causing that issue... We were able to get this resolved on our end. Thank you!
-
rulesListRows is throwing an error
Hello, We are encountering an error with the Achievement Rules template in our Invision Community setup. The error message displayed is: [[Template core/admin/achievements/rulesListRows is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]] This issue randomly started today, and we are unsure what triggered it. We've attempted basic troubleshooting, including disabling applications, but the problem persists. I reviewed the System Log and found the following backtrace info (removed the backtrace URL): #0 [Removed]/system/Application/Application.php(236): IPS\Patterns\_ActiveRecord::load() #1 [Removed]/applications/core/sources/Achievements/Rule.php(107): IPS\_Application::load() #2 [Removed]/system/Theme/Theme.php(885) : eval()'d code(1397): IPS\core\Achievements\_Rule->extension() #3 [Removed]/system/Theme/SandboxedTemplate.php(61): IPS\Theme\class_core_admin_achievements->rulesListRows() #4 [Removed]/system/Theme/Theme.php(885) : eval()'d code(1354): IPS\Theme\_SandboxedTemplate->__call() #5 [Removed]/system/Theme/SandboxedTemplate.php(61): IPS\Theme\class_core_admin_achievements->rulesList() #6 [Removed]/applications/core/modules/admin/achievements/rules.php(94): IPS\Theme\_SandboxedTemplate->__call() #7 [Removed]/system/Dispatcher/Controller.php(118): IPS\core\modules\admin\achievements\_rules->manage() #8 [Removed]/system/Node/Controller.php(69): IPS\Dispatcher\_Controller->execute() #9 [Removed]/applications/core/modules/admin/achievements/rules.php(45): IPS\Node\_Controller->execute() #10 [Removed]/system/Dispatcher/Dispatcher.php(153): IPS\core\modules\admin\achievements\_rules->execute() #11 [Removed]/index.php(13): IPS\_Dispatcher->run() #12 {main} Loaded Hooks (not sure if relevant?): Loaded hooks applications/axenfontawesome6/hooks/loadJSandCSS.php applications/brilliantdiscord/hooks/standardDispatcherCss.php applications/commongpm/hooks/MDES_Dispatcher.php applications/commongpm/hooks/NAPR_Dispatcher.php applications/commongpm/hooks/DACS_Dispatcher.php applications/commongpm/hooks/COWA_Dispatcher.php applications/commongpm/hooks/AWAS_Dispatcher.php applications/trustfactor/hooks/Member.php applications/tipme/hooks/2775d832a9d3cd0dc532733c0fe16d38.php applications/autoreplypms/hooks/memberModel.php applications/brilliantdiscord/hooks/member.php applications/commongpm/hooks/Member.php applications/commongpm/hooks/PBST_Member.php plugins/blockfromdownloadingmyfiles/hooks/MemberHook.php applications/brilliantdiscord/hooks/group.php applications/memberaway/hooks/maFurl.php applications/deletemyaccount/hooks/dmaFURL.php applications/tipme/hooks/6cd38b391ea1f8993c7098db32ca5f19.php applications/autoreplypms/hooks/friendlyUrl.php plugins/blockfromdownloadingmyfiles/hooks/friendlyUrl.php Could you please provide guidance on how to resolve this? Let us know if any additional information is needed. Thank you for your assistance!
-
Custom HTML Offline Page
Feel free to reach out to us if you have any questions! Happy to help :)
-
Adriano Faria
Adriano has been instrumental in developing our custom applications and plugins, significantly enhancing the experience for our community of over 100,000 members. His dedication and passion for delivering high-quality work are truly exceptional, and his ability to complete projects in record time is remarkable. It's rare to find a developer with such a deep commitment to excellence and efficiency. Thanks to Adriano, our members have enjoyed a seamless and enriched user experience. We couldn't be more grateful for his contributions!
-
Test License Key (Remove)
Hello! We are trying to move our test site to a different domain, however we are unable to reset the license key via the Client Area. Would someone be able to assist with resetting our test license key? Thank you!
-
Report Form - No Report Types
This is great to know! Thank you so much!!
-
Report Form - No Report Types
Hello, I'm experiencing an issue with the report form in my Invision Community. Specifically, the radio buttons for selecting the report type do not appear on the report form. I've checked the report settings in the Admin Control Panel, and everything appears to be configured correctly. I've deleted and created all the report types again with no luck. Steps I Have Taken So Far: Verified the configuration of report types in the Admin Control Panel. Checked for JavaScript errors, and none relevant to this issue were found. Verified the issue occurs on all themes (even the Default IPS theme with no modifications). Disabled all applications/plugins (non-IPS). I'm not too technical, but here is a screenshot of the console window when I opened the report form, not sure if maybe that error corrilates? Any assistance would be much appreciated!
-
Members Tab (Support Topic)
An application should gracefully handle any condition that can be received from user input. A user visiting this URL directly should not be causing our error reporting system to notify our staff team of unhandled exceptions. We have thousands of confirmed cases of real users loading these pages. I don't think the "how" is important, really. If a scenario is necessary: user A loads an index page that references user B, admin deletes user B, user A views user B's info and faces an exception which should be handled. - It's good practice to set a title on any route. Popups may be viewed directly by clients that do not support AJAX. Also, these routes show up in public search results. I can directly view them with a quick Google search. Bad UX. Thanks!
-
Members Tab (Support Topic)
Attempting to load the "info" view for an invalid user ID throws an unhandled exception. The error is arising on L145 of `memberstab/modules/front/memberstab/main.php` due to the call to `followersCount` on the "loaded" member. This functionality should either return guest information or handle the case with a proper error. Adding a check for a non-0 `member_id` after loading the member remediates the issue. Repro: with fURLs enabled, navigate to "/membertab/members/?do=info&id=0" The "id" parameter's value can be any non-registered user ID. Also, please set a title for that route. Thanks.
-
We need webp NOW
Any news on official support for WebP delivery?
-
Error code -200
Try out the following settings: > Memory limit = 512M > Max execution time = 60 > Post max size = 24M > Upload max filesize = 16M > Max input time = 300 It's all too easy to think that just continuously increasing the above will yield better results, but file uploading uses "chunked" uploads, where the file is effectively split into a lot of smaller sections. Turning these settings down tells the system to make more chunks, which will hopefully help your issue.
-
Trophies and Medals - Supporttopic
As @EmpireKicking referenced, line 107 of extensions/core/MemberSync/Item.php should read: \IPS\Db::i()->delete( 'trophies_memberdetails', array( 'member_id=?', $member2->member_id ) ); @Fosters This fixes the error when merging accounts.
-
Trophies and Medals - Supporttopic
Line 52 of "global/profile/table" should read "{$medal->awardedCount}" instead of "{$trophy->awardedCount}" as it does right now @Fosters. Medal counts are currently not displaying properly.
-
Trophies and Medals - Supporttopic
@RoleplayUK Seems like $this->_item is null, because the trophy or medal the app's trying to load can't be found. As a temporary fix, you can try wrapping the offending call in an if statement to check if the trophy or medal is loaded properly. On line ~245 of applications / trophies / sources / Trophy / MemberTrophy.php, try replacing: public function getItemImage($class = '', $sizeForFa = 2, $addTitle = FALSE, $menu = TRUE ) { return $this->_item->getItemImage($class, $sizeForFa, $addTitle, $menu); } with: public function getItemImage($class = '', $sizeForFa = 2, $addTitle = FALSE, $menu = TRUE ) { if ($this->_item) { return $this->_item->getItemImage($class, $sizeForFa, $addTitle, $menu); } } Hopefully that'll stop the errors from appearing. Keep in mind the trophy or medal that can't be loaded won't appear on postbits. @Douglas Glover That functionality already exists in the app. Can be found at example.com/trophies or example.com/index.php?app=trophies&module=items&controller=index , unless I'm misunderstanding.
-
Trophies and Medals - Supporttopic
I'll see what I can do. EDIT: If anyone wants to respond to this post with any info on a bug they're experiencing I can let you know if we encountered it and if so how we remedied it. I'd love to share everything we've patched altogether, but I couldn't tell you where the original author's code stops and where ours begins.
-
Trophies and Medals - Supporttopic
@RoleplayUK We're running the latest version of this app on 4.5. Many issues, but our in-house development team fixed them on our copy. Would be great if the dev would follow through with their promise to fix the app. Keen eye for noticing, by the way.
-
Brilliant Discord Integration
Any plans to integrate ModCP notifications? For example, when someone makes a report it could ping our moderators within Discord.
-
Appreciation thread for removing admin session IDs from URIs
Thank you so much for removing admin session IDs from URIs. This change brings tears to my eyes.
-
Downloads Terminating Early and Files Blocked
Good day, Sorry for the delayed response. Not having any internet at home has been quite inconvenient. Anyway, our PHP-FPM timeout is the default (or whatever Plesk has it defaulted to), though the PHP Max Execution Time is set for 3000s with an input time of 2750s. PHP-FPM max children is set to 50. We've switched from PHP 7.3 to 7.4 in an attempt to see if it was configuration headache and it's resulting in the same error. I'm not sure if I explained the issue correctly, but this is basically the tickets we're seeing more often: I've checked the error logs from the ACP and all I see are: 2S119/1 Something went wrong. Please try again. [IP REDACTED] /index.php?/files/file/638-4k-sast-pack/&do=downlo… Dirty Dan 07/11/2020 12:00 PM 2S119/1 Something went wrong. Please try again. [IP REDACTED] /index.php?/files/file/638-4k-sast-pack/&do=downlo… Dirty Dan 07/11/2020 12:00 PM We're also seeing an uptick of "2S119/1 - The CSRF protection key did not match. This may indicate a plugin or theme is out of date. Please contact technical support for more information." errors as well. I've checked our server's php & apache error logs and can't find any errors associated with the user's IP address. So I'm starting to get really perplexed. Thanks again, - Mike Systems Administrator GTA Police Mods
-
"Sorry, you aren't permitted to download this file." Bug
Hello everyone, After looking through support tickets we have several users report to us on occasion that they have an error message that says "Sorry, you aren't permitted to download this file.". We do not have any restrictions enabled on the site for downloads. The error goes away eventually after logging in and out (sometimes waiting 20-30 minutes). Nothing alerting in Error Logs or System Logs. Any idea on what could be causing this? Screenshot: https://i.imgur.com/E82NngC.png Kind regards, Ray
-
Downloads Terminating Early and Files Blocked
Good day, Please forgive me if this is the wrong area to post thing. As of late, we've been seeing an uptick in users reporting to us that their downloads get to something like 70% and then will fail with a 'Error - Forbidden' message from their web browser and when they try to get the file again, the site tells them that they don't have permission to download the file. This used to be a rare occurrence, but it's been picking up (with 4 reports in the last 3 days) and our usual advice to users was to log out, clear cache/cookies, and log back in. Which we assume fixed their issue as we'd never hear back from them, despite us asking to provide a link to the file(s) they were encountering issues with. However, as this is occurring on a more frequent basis and I can't seem to find any sort of error logs generated by our users' IPs when they report the issue. This has become quite baffling and as I'm not quite 100% familiar with IPB's inner workings. It's proving to be a pain to track down the headache and nip it. We have 27k+ users and I don't need to start getting hundreds of tickets when this 'glitch' really starts becoming an issue. So any advice/input would be much appreciated. Thanks, - Mike Systems Administrator GTA Police Mods.
-
How do we extend functionality contained within traits?
Any updates on this? Trying to hook into a trait on 4.4.
-
Block Specific Incoming Emails From Creating Support Tickets
Hello, Recently we have been getting a lot of spam emails that are creating support tickets by emailing our support email. Is there a way to block an email from creating an incoming support ticket? Thank you
-
Test License, is that a thing?
Thank you 👏
-
Test License, is that a thing?
Hello, Does Invision Power Boards provide us license holders the ability to have a test license? We want to start building custom applications/plugins however we do not want to develop it on our main site. Someone mentioned to me that there is a way for license holders to have one license for a test server? Was wondering on where I can receive more information on that. Thank you!