Jump to content

GTAPoliceMods

Clients
  • Posts

    173
  • Joined

  • Last visited

3 Followers

Contact Methods

Recent Profile Visitors

4,670 profile views

GTAPoliceMods's Achievements

  1. 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!
  2. 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!
  3. Feel free to reach out to us if you have any questions! Happy to help :)
  4. 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!
  5. 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!
  6. This is great to know! Thank you so much!!
  7. 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!
  8. 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!
  9. 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.
  10. Any news on official support for WebP delivery?
  11. 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.
  12. 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.
  13. 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.
  14. @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.
  15. 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.
×
×
  • Create New...