You are not logged in.
Tim,
After doing some more research, in the error log
site/.htaccess: Invalid command 'php_flag', perhaps misspelled or defined by a module not included in the server configuration
The reason is InMotion uses SuPHP as its handler, from what I read I need to create a php.ini file. Do you recommend a different handler or create a php.ini file? They also have DSO, FCGI and CGI handlers available.
Doon
Hello,
Hosting through InMotion, I installed BigTree but getting 404 errors on the homepage and admin page.
After the install, there were no errors/warnings but the Install Complete screen was without CSS(white background) and at first I got a 500 error when I went to the homepage/admin page. I followed your "Installing BigTree on 1and1 Hosting" instructions and added / in the /.htaccess file, then got 404 error. Changed /site/.htaccess from your instructions but still getting 404 error.
Any ideas what could be wrong?
Thanks
Thanks Tim
Forgot to mention we are on version 4.2.18 of BigTree.
Not sure why images are not showing up but here are the links to the images
http://imgur.com/EV3eO9C
Logout of BigTree
http://imgur.com/9UOr4XD
Error when logging out of BigTree
Hello,
We got this error when trying to logout of BigTree when on a webpage, this error does not occur when logging out of BigTree in Admin section. We tried this on a few different browsers/machines and on two separate websites with the same result.
Error: Cross site request forgery detected
Page: /admin/login/logout/
Hello,
We were testing the new version of Safari on the MacOS 10.13 beta to see if it blocked our homepage video from auto-playing. Luckily our website is fine but we noticed your home page video on bigtreecms.org does not auto-play. Our video is hosted through youtube and yours is self hosted but we don't know if that is causing it to auto-play. Just thought we would give you a heads up.
https://www.apple.com/macos/high-sierra-preview/
Image of the feature: http://imgur.com/9lxhC7i
Thanks Tim for clarifying this up for me.
Hello,
I think I found a very small bug in the the Events extension. The formattedTime function in events.php was not working for me and I looked at the code for the function and it was looking for $item["start"] and $item["end"] on lines 249 and 250 in events.php and when I changed it to $item["start_time"] and $item["end_time"] the times are showing.
File location: com.fastspot.events > classes > events.php
static function formattedTime($item,$time_format = "gi:a") {
$s = strtotime($item["start"]);
$e = strtotime($item["end"]);
if ($item["all_day"]) {
return "All Day";
}
if ($s != $e && $item["end_time"] != "") {
return date($time_format,$s)." - ".date($time_format,$e);
} else {
return date($time_format,$s);
}
}
Should be
static function formattedTime($item,$time_format = "gi:a") {
$s = strtotime($item["start_time"]);
$e = strtotime($item["end_time"]);
if ($item["all_day"]) {
return "All Day";
}
if ($s != $e && $item["end_time"] != "") {
return date($time_format,$s)." - ".date($time_format,$e);
} else {
return date($time_format,$s);
}
}
Thanks Tim, we deleted the com.fastspot.form-builder from the extension column as well.
Hello Tim,
I think we figured it out. After upgrading Form Builder, the id in bigtree_templates table was changed to com.fastspot.form-builder*btx-form-builder.
I changed the id back to btx-form-builder and everything is working fine now and our forms are using the right routed template.
Hello Tim,
We looked in the dev database table bigtree_templates and we only see one row for the Form Builder
'com.fastspot.form-builder*btx-form-builder', 'Form Builder', 'on', ... ,'0', '0', '10', 'com.fastspot.form-builder'
We also haven't modified any files in the Form Builder extension.
We are currently on version 4.2.13 of bigtree on our development website and upgraded to Form Builder 1.1 today but after the Form Builder upgrade, all of our Routed Templates Form Builder is now using the default styling from the Form Builder extension located
extensions/com.fastspot.form-builder/templates/routed/btx-form-builder
We are not sure why it is not using our \templates\routed\btx-form-builder page styling when view the page?
Thanks
Thanks Tim, we changed our minds and will not change the reply-to.
Hello,
In Developer > Email Delivery, we added a default email address for when bigtree sends emails. The From address is correct but we would like to change the default reply-to: email address, currently it is no-reply@... Can we change the email through bigtree or do we make the change in admin.php?
admin.php
if ($es->Settings["bigtree_from"]) {
$reply_to = "no-reply@".(isset($_SERVER["HTTP_HOST"]) ? str_replace("www.","",$_SERVER["HTTP_HOST"]) : str_replace(array("http://www.","https: //www.","http://","https://"),"",DOMAIN));
$es->sendEmail("$site_title Daily Digest",$body,$user["email"],$es->Settings["bigtree_from"],"BigTree CMS",$reply_to);
} else {
BigTree::sendEmail($user["email"],"$site_title Daily Digest",$body);
Awesome, thanks Tim!
Hello,
We have some special forms that were not created through Form Builder that are in a separate folder site/forms. The issue I am having is it is automatically adding a trailing slash and getting a 404 error.
An example is I have a page that links to housing.php but it is adding housing.php/ and I am getting a 404 error.
Can I remove the trailing slash for the whole forms folder or just certain files?
Thanks
That worked, thanks Tim!
When creating a module, the first View that is created is the default view when looking at in Modules but if I wanted to change the default view, how do I go about doing that? I don't see anything to change that while in Edit Module.
For example if I create a School Module with two views Faculty and Buildings. The first view I created was Buildings and it will be the default view when going into Modules > School. How would I change the default view to Faculty?
Thanks
Hello,
I was just trying to upload a new file but when it uploaded the file, the file was not there even though it looked like it succeeded to upload. After doing some research, the new file name I uploaded was renamed to the original file that was uploaded before. I didn't know the original file with a different name was already uploaded.
I have two questions:
1. How does bigtree know the original file vs the new named file are the same when uploading?
2. Is there a way to know when the new file being uploaded is renamed to the original?
Thanks
Thank You
Tim,
Is there a place you have the release schedule of updates?
Hello,
We created a RSS 2.0 feed through the Feed Module and we are testing it out through W3C feed validator and getting a GUID error.
https://validator.w3.org/feed/check.cgi … -donors%2F
Error:
This feed does not validate.
line 16, column 65: guid values must not be duplicated within a feed: https://rosalindfranklin.edu/feeds/day- … ng-donors/
This is not something we can change through the module.