Jump to content

thefarang

Clients
  • Posts

    16
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by thefarang

  1. @bfarber Fanstastic! That did it. Went from 17GB to 176K. Thanks.
  2. BTW, what are my options if it doesn't prune? I can't purge the table because it's not showing up in phpMyAdmin.
  3. mysql mysql 17G Feb 1 13:32 ipbcore_output_cache.ibd In the last few weeks, I began to notice that my database volume has been starting to fill up quicker than normal. When I went to check the file sizes, I noticed this ipbcore_output_cache file in the MySQL folder and it was 17GB. When I tried to find this in phpMyAdmin, it doesn't show a table called ipbcore_output_cache (just ipbcore_cache). Searching Google results in no pages found. Searching this site shows no pages found. Any idea what it might be and why it's so huge?
  4. Just an update in case anyone else has this issue. I changed: try_files $uri /index.php?$args; to try_files $uri $uri/ /index.php; I can log into /admin now. Not sure everything is working yet (still testing) but that overcomes the first hurdle 🙂
  5. I just moved everything over from Apache2 to NGINX and everything seems to work except I cannot log into the Admin section. I get the following error when I try to access https://www.mysite.com/admin/: Sorry, there is a problem The page you requested does not exist Error code: 1S160/2 I do see the 404 in the access logs. If I type in https://www.mysite.com/admin/index.php it redirects me to https://www.mysite.com/login/?error=&ref= gives me a login page. When I login in, it redirects me to the homepage of the forum. Returning to https://www.mysite.com/admin/index.php redirects me to the login page again. I've tried this on several different browsers. Even on mobile using FireFox Focus to eliminate any browser cache issues. If I shut down NGINX and fire up Apache2 again, no problems, I can log in. Here's the relevant part of my NGINX config file (I was trying to keep it absolute minimal until I got everything working - I'll add in compression, restrictions, etc later): index index.php; location / { try_files $uri /index.php?$args; } location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_param SCRIPT_FILENAME $request_filename; fastcgi_pass unix:/var/run/php-fpm/php7.2-fpm.sock; fastcgi_index index.php; include fastcgi_params; } Any thoughts?
  6. I did. The option to upload a logo reappeared. Turned everything back on that Support Tool turned off, everything is still there. Not sure why that worked but glad it did. Thanks!
  7. Just updated to 4.5.2 and my logo disappeared. Ok, fine. Went to go into the themes and I see no way to upload or set a logo. Am I missing something?
×
×
  • Create New...