The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
500 Error
#11
haha. That is pretty funny. Sorry about your time on that though. I guess we're all going to say namecheap is not recommended. I want to start compiling a list of recommended hosting providers. We've bent over backwards building compatibility with everything from apache to nginx and dozens of providers, but that's just uncalled for.
  Reply
#12
Ok, so I had issues with Error 500. Maybe this helps to someone:

I got Error 500 every time I tryed to access any page other than index.php. Error occured when I copyed login.php from users to usersc or when I copyed index.php and renamed it. Only index.php was working correctly.

Solution: in every page you create you must have some php code

<?php
require_once 'users/init.php';
require_once $abs_us_root.$us_url_root.'users/includes/header.php';
require_once $abs_us_root.$us_url_root.'users/includes/navigation.php';
?>


change code above with the one below

<?php
require_once $_SERVER['DOCUMENT_ROOT'].'/users/init.php';
require_once $abs_us_root.$us_url_root.'users/includes/header.php';
require_once $abs_us_root.$us_url_root.'users/includes/navigation.php';
?>


Note the / before users/init.php!

Apache2 on Debian 8
  Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)