Testing Latest Version (error) - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: Testing Latest Version (error) (/showthread.php?tid=566) |
RE: Testing Latest Version (error) - joebordes - 02-24-2017 Hi, I deleted that directory a few days ago and missed that it was being controlled in the install. I deleted it because that functionality is not used anymore. I updated the install and also another deprecated function that used it. Download again and let me know how it goes. Thanks for informing !! Have a nice weekend RE: Testing Latest Version (error) - joebordes - 02-24-2017 does your install have this file: https://github.com/tsolucio/corebos/blob/master/Smarty/libs/plugins/outputfilter.trimwhitespace.php ? is it failing also with the fresh install? RE: Testing Latest Version (error) - mweaver - 02-24-2017 (02-24-2017, 04:56 PM)joebordes Wrote: does your install have this file: It does have that file and is failing with a new install. Just tried it. RE: Testing Latest Version (error) - joebordes - 02-25-2017 I had a look at the code and see no reason why that would be happening. Searching on the internet doesn't turn up anything either, so I am a bit at loss here. You can try this patch: Code: diff --git a/Smarty_setup.php b/Smarty_setup.php that will output the plugins directory to the browser screen just to make sure it is looking in the right place for this plugin. Ultimately you can comment out this plugin: Code: diff --git a/Smarty_setup.php b/Smarty_setup.php that will generate more spaces and make it go a little slower but it shouldn't have any other impact Let me know what the output on screen is for the plugin dir and how the application performs without the whitespace filter RE: Testing Latest Version (error) - mweaver - 02-25-2017 I think my head just exploded or the Ale was too strong last night. If I could just peel my arse outa this recliner and get back to where the server rack is I might get something accomplished today. RE: Testing Latest Version (error) - mweaver - 02-26-2017 I am rather certain I'm not losing my mind, however I am also certain that I am stumped as to what exactly could be going on here: As you can see there are some items on this list that appear to be refusing to cooperate. I have so far done:
Code: short_open_tag= RE: Testing Latest Version (error) - joebordes - 02-26-2017 first thing to look at is phpinfo create a script inside the webserver root with this contents: PHP Code: <?php phpinfo(); ?> now call that page in the browser. search on that page for imap, that is where you need to have php-imap support, this is usually installed in the operating system, probably somthing like Code: yum install php-imap Code: short_open_tag = On although this setting is really not important. after you make a change to php.ini you have to rester apache server: Code: apache2ctl restart you can find the exact location of the php.ini file in the phpinfo output, search for "Loaded Configuration File" as for the permissions look in the phpinfo for "User/Group" under the apache handler section, that will tell you who the files have to be assigned to. I am supposing that centos has a rather strict permission system and it won't let apache read files assigned to root. Try changing the owner of the files and directories to the webserver user Finally, that PHP version is rather old, I would recommend a php5.6 or higher if possible. Keep asking.... RE: Testing Latest Version (error) - mweaver - 02-26-2017 (02-26-2017, 03:19 PM)joebordes Wrote: first thing to look at is phpinfo Hi Joe, I finally got PHP upgraded tol 5.6, however there is no php-imap package. To get 5.6 on CentOS 7.3 I had to enable the epel-release repo and IUS repo. As I mentioned before the web server directory root: /var/www/html and everything under that is owned by apache:apache. Current permissions are set all the way down through the tree to 775: Code: [root@merlin cbostest]# ls -l config.inc.php That is just a small example of the permissions settings. I've done lots of Apache web servers and I can't remember ever running into something like this. Apache is setup to run as apache (user) apache (group) and since this is the case I'm at a total lost as to why I'm seeing the program install check returning information to the screen that claims the file permissions need adjusted. I though perhaps there was something odd with Apache's configuration but while I've been comparing the differences between the old and new server config files I don't see any real differences. RE: Testing Latest Version (error) - mweaver - 02-26-2017 Yes... I took a breath and realized I was asking yum for the wrong package and found the correct php-imap package: Perms haven't changed though. I know it's right in front of me and I'm gonna feel really stupid when I see it. RE: Testing Latest Version (error) - joebordes - 02-26-2017 paste here the value of "User/Group" in phpinfo output and a screen capture of an "ls -l" of the top directory if the coreBOS application |