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

Posts posted by thefarang

  1. 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? 

  2. 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?  

×
×
  • Create New...