Jump to content

lkrou

Newbie
  • Posts

    14
  • Joined

  • Last visited

Profile Information

  • Language
    English
  • Software
    Legacy IPB
  • Version
    3.4.6

Recent Profile Visitors

947 profile views

lkrou's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Collaborator Rare
  • Reacting Well
  • Week One Done
  • One Month Later

Recent Badges

1

Reputation

  1. Good point . What would be nginx equivalent rules ?
  2. You may edit log-in class code to first check if there is other account in session table with the same ip , then deny access if so . But i think users can use proxy to provide fake ip/location/useragent to bypass ip checks .
  3. You can use something like this : server { listen 80; server_name example.com; access_log logs/example.com_access.log; error_log logs/example.com_error.log; root /home/forums; index index.php; location / { try_files $uri $uri/ /index.php; } location ~ \.php$ { try_files $uri $uri/ /index.php; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } Of course you will have to change it to suit your needs and may be add more security/performance related settings . Your issue "nginx start downloading your page (php file)" is due to php location not set or wrong configuration for : fastcgi_pass unix:/run/php/php7.0-fpm.sock;
  4. Check what CAPTCHA Type you have set in ACP , and also if keys are correct . This is one of available options : https://www.keycaptcha.com/
  5. It's not that hard to upgrade your forum ( you have only a few topics ) , just copy new files over old one then go to /admin/upgrade/ and follow instructions . You can do that first in some subdomain to test , then if all was good , do the same on main domain .
  6. Just be sure it is added to startup , oor you will have problems if server restarted for any reason .
  7. Maybe checking session.save_handler & session.save_path & session.gc_maxlifetime in php.ini. Using something like memcache or redis to handle sessions will solve this issue and provide more performance ..
  8. Dark themes , dark editors & screensavers too ?
×
×
  • Create New...