03-26-2016, 05:14 PM
I followed the guide and got everything setup correctly. I had to manually remove setup files. Now when i go to the page for userspice it is just blank nothing there
The following warnings occurred: | ||||||||||||
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
|
Fresh userspice install
|
03-26-2016, 05:14 PM
I followed the guide and got everything setup correctly. I had to manually remove setup files. Now when i go to the page for userspice it is just blank nothing there
03-26-2016, 09:23 PM
what version did you try to install ? for i had a similar issue trying to install 3.2.0 ?
03-27-2016, 09:03 AM
Hello rbfritz - yes please tell us: what version of UserSpice and what is your server environment.
The failure of the deletion of install files and subsequent blank screen looks like a permissions problem. Can you enable error reporting and/or access your server logs?
03-28-2016, 01:26 AM
ive installed userspice 4.0 on ubuntu 15.04
03-28-2016, 10:55 AM
Thankyou, I have seen a similar problem on *Nix systems.
Can you please tell us: how many lines do you have in /core/init.php ? Did you try chmod -R 777 to the /core/ directory before installation? You can revert to secure permissions on the resulting init.php file afterwards.
03-28-2016, 12:16 PM
looks like 90 lines in that file. i did the chmod before install
03-28-2016, 04:13 PM
that seems to be in order;
Did you enable some error reporting? If your dev server isn't configured for error reporting look here: http://ubuntuforums.org/showthread.php?t=961202 If you can't make the change globally you can add directives directly intu your code: Paste the following lines into /core/init.php just after the session_start(); // Enable error reporting AND display the errors. error_reporting(E_ALL); ini_set('display_errors', 1); Do you get any errors reported?
03-28-2016, 08:36 PM
ok added that to the init file, where would i see a error at?
03-28-2016, 09:07 PM
iam clearing out everything and starting fresh
03-28-2016, 09:08 PM
Usually you would see the errors at the top of the page you are trying to access.
|