Posted April 11Apr 11 Community Expert I'm running the new IC5. How do I delete old applications that are no longer available in IC5, but still show up on my Admin Panel>System>Applications>Applications not currently installed?The plugins have been deleted from /plugins file directory, but they still show up in the Applications list.
April 11Apr 11 Author Community Expert 1 hour ago, Daniel F said:There's an "uninstall" button I did that, and now I can't log into my site on the forum or the admin panel.
April 11Apr 11 Community Expert Which application specifically did you uninstall? I am seeing: Class IPS\profilestatistics\Application could not be loaded. Ensure it is in the correct namespace.
April 11Apr 11 Author Community Expert @Jim M I believe it was InvisionDevs profilestatistics. It wasn't really installed to begin with. It was just laying dormant in the applications listing.I ran the following command in MySQL to see which tables were updated right after I could not access my site:SELECT * FROM information_schema.tables WHERE TABLE_SCHEMA = 'myforum' ORDER BY tables.UPDATE_TIME DESCThe only table updated was the core_applications table.6 minutes ago, Jim M said:Which application specifically did you uninstall?I am seeing: Class IPS\profilestatistics\Application could not be loaded. Ensure it is in the correct namespace.I'm not sure what that means. Can you explain what to do? Edited April 11Apr 11 by NAWAC
April 11Apr 11 Community Expert Do any other application which you have installed rely on the files from that one? If so, that would create the issue seen here or if the application installed something. You would need to contact the author of the application.You can use recovery mode to get your community at least online again but it will disable third party items. Getting Support - Client Services
April 11Apr 11 Author Community Expert Solution I looked at a previous problem I had, it was a namespace issue too. I got it fixed by doing the same thing here.I changed this...namespace IPS\profilestatistics; class _Application extends \IPS\Application { }To this, below...namespace IPS\profilestatistics; use IPS\Application as TheApplication; class Application extends TheApplication { }^ That did the trick. I'm back into my site.17 minutes ago, Jim M said:I am seeing: Class IPS\profilestatistics\Application could not be loaded. Ensure it is in the correct namespace.Thanks for detecting that and letting me know. I appreciate it! 🙂 Edited April 11Apr 11 by NAWAC