#126 Re: Developer Help » New install 404 error » July 6, 2017 11:32am

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

#127 Developer Help » New install 404 error » July 6, 2017 8:52am

doon.mok
Replies: 4

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

#129 Re: Bug Reports » Cross site request forgery detected error » June 13, 2017 12:31pm

Forgot to mention we are on version 4.2.18 of BigTree.

#130 Re: Bug Reports » Cross site request forgery detected error » June 13, 2017 12:23pm

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

#131 Bug Reports » Cross site request forgery detected error » June 13, 2017 12:22pm

doon.mok
Replies: 4

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/

Logout of BigTree through webpage

Error when logging out of bigTree

#132 General » Safari blocks auto play videos MacOS 10.13 beta » June 8, 2017 9:55am

doon.mok
Replies: 1

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

#133 Re: Bug Reports » Small events extension bug » October 28, 2016 2:42pm

Thanks Tim for clarifying this up for me.

#134 Bug Reports » Small events extension bug » October 28, 2016 2:29pm

doon.mok
Replies: 2

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);
		}
	}

#135 Re: Developer Help » Upgraded Form Builder and now using default styling » September 22, 2016 3:42pm

Thanks Tim, we deleted the com.fastspot.form-builder from the extension column as well.

#136 Re: Developer Help » Upgraded Form Builder and now using default styling » September 22, 2016 3:33pm

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.

#137 Re: Developer Help » Upgraded Form Builder and now using default styling » September 22, 2016 3:23pm

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.

#138 Developer Help » Upgraded Form Builder and now using default styling » September 22, 2016 1:16pm

doon.mok
Replies: 6

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

#139 Re: Developer Help » Change email delivery reply-to » July 14, 2016 1:16pm

Thanks Tim, we changed our minds and will not change the reply-to.

#140 Developer Help » Change email delivery reply-to » July 14, 2016 9:19am

doon.mok
Replies: 2

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);

#142 Developer Help » remove trailing slash on file or folder » July 5, 2016 2:46pm

doon.mok
Replies: 2

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

#144 General » Module - change default view » April 26, 2016 8:20am

doon.mok
Replies: 2

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

#145 General » Upload new file renamed to orginal » February 17, 2016 10:27am

doon.mok
Replies: 1

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

#147 Re: Bug Reports » RSS Feeds - GUID not unique » February 3, 2016 1:58pm

Tim,

Is there a place you have the release schedule of updates?

#148 Bug Reports » RSS Feeds - GUID not unique » February 3, 2016 1:44pm

doon.mok
Replies: 4

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.

Board footer

Powered by FluxBB

The Discussion Forum is not available on displays of this size.