#1 Bug Reports » 404s not displaying » September 27, 2023 6:39am

joeignition
Replies: 0

We're running big tree 4.5.7 on a couple sites. Client reported the Active 404s returned empty, possibly after th most recent update, I haven't been keeping an eye on this specifically.

Seems that there was a DB update at some point that failed to run, as our bigtree_404s table retained the "NULL" for redirect_url column.
DB structure:
CREATE TABLE `bigtree_404s` (
  `id` int UNSIGNED NOT NULL,
  `broken_url` varchar(1024) DEFAULT NULL,
  `get_vars` varchar(1024) DEFAULT NULL,
  `redirect_url` varchar(1024) DEFAULT NULL,
  `requests` int UNSIGNED NOT NULL DEFAULT '0',
  `ignored` char(2) NOT NULL DEFAULT '',
  `site_key` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

Ran the following queries not he DB table to correct:
// update existing records to avoid null values
UPDATE `bigtree_404s` SET `redirect_url` = '' WHERE `redirect_url` IS NULL;

// update structure to not have a null on that column
ALTER TABLE `bigtree_404s` CHANGE `redirect_url` `redirect_url` VARCHAR(1024) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL;

Just FYI in case someone else runs into this. Not sure why our production server would fail on this update.

#2 Bug Reports » TinyMCE icons not showing » February 25, 2022 1:15pm

joeignition
Replies: 1

Not sure if this is the right place, but today, tinymce isn't loading icons for the WYSIWYG controls in BigTree on a specific client site. No code changes were being made.

Curious if it's an issue at the TinyMCE level or where. Seeing this in Chrome / Edge, Firefox & Safari are ok. Considering the 2 affected are Chromium browsers, the issue may be browser based, but I'm not seeing this with other non-big tree tinymce implementations.

screenshot.png

#3 Developer Help » BigTree and PHP 7.3.x? » October 18, 2019 7:42am

joeignition
Replies: 1

Is this working yet? Any special considerations?

PHP 7.2 - works fine, but PHP 7.3 with an identical package load out fails with not finding the class "mysqli" ?

A bit puzzled here.

Thanks
Joe

#4 Bug Reports » 4.3.1 Admin area styling, misaligned navigation? » November 16, 2018 2:50pm

joeignition
Replies: 2

I've cleared out the cache folder, but the main nav (logged in as admin/dev) in back office of big tree is causing display issues: nav shows below its intended area.

Linked screenshot:
https://drive.google.com/file/d/1nBrwo3 … sp=sharing

Any ideas on this? I've logged out, back in, cleared local & remote cache.

Thanks
Joe

#5 Re: Bug Reports » Shortcut array creation causing PHP parse errors » March 14, 2018 11:10am

My solution was to push for upgrading to PHP 5.6.x

Thanks!
Joe

#6 Re: Bug Reports » Shortcut array creation causing PHP parse errors » March 14, 2018 10:07am

Oh yeah, anything less than PHP 5.4 will throw these errors and prevent proper function. May want to update documentation if you're only supporting PHP 5.4+

#7 Bug Reports » Shortcut array creation causing PHP parse errors » March 14, 2018 9:59am

joeignition
Replies: 3

Not sure if this affects other versions of PHP, this client's server is on PHP 5.3.3 (not my choice).

Creating an array via [ ] appears to be the problem, replacing these with array( ) resolves the issue.

PHP Parse error:  syntax error, unexpected '[', expecting ')' in /core/inc/bigtree/sql-class.php on line 30
(only first instance shown)

Affected files are cms.php & sql-class.php

Joe

#9 Bug Reports » "Replace Image" doesn't appear to fire request or complete » June 20, 2017 10:40pm

joeignition
Replies: 2

Not sure what's going on here, but uploading new images: a-ok as expected.

When attempting to use the "replace image" option, it gets stuck showing "replacing file. Please wait" but never finishes. The upload POST request returns a full backend CMS page, nothing for the UI to hook into.

Any thoughts on this? Running latest 4.2.18.

Can share screenshot if necessary.

#10 Re: Developer Help » Including Module Output into Sitemap automagically? » April 14, 2015 8:28am

Thanks Tim,

The Hide from Search Engines box isn't checked, so that's not an issue. I'll take a look at the getSitemap method.

In our templates, we did a check on the "Hide from Search Engines" and if it's on, specifically add a meta robots tag to prevent indexing.

#11 Re: Developer Help » Including Module Output into Sitemap automagically? » April 13, 2015 10:22am

Tim,

Thanks, no I didn't stuff a picture in there, and yes, we went the routed template route for faculty directory, the problem is the created Module output (detail pages per faculty member for example) do not have their paths added to the generated sitemap.xml file, and as such do not get indexed, at least not that I've seen yet.

Does that make sense? The same issue causes other Module / routed template implementations to not be part of the sitemap.xml file, and consequentially, not automatically indexed, unless we missed something in the buildout. These were our first 2 builds using Bigtree.

Thanks!
Joe

#12 Developer Help » Including Module Output into Sitemap automagically? » April 9, 2015 3:42pm

joeignition
Replies: 4

Is this possible to accomplish? For example, a faculty directory with detail screens for each faculty member.

If not, would the Module Report feature be able to accomplish part of this (generating the data to be translated into sitemap xml data)

Thanks!
Joe

Board footer

Powered by FluxBB

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