You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm using a thinkup installation I've upgraded some times. For quite a while, I was irretated that the weekly digest generated by thinkup was not showing working links - the domain was missing.
Today in Basel Hackergarten (hackergarten.net) we investigated this and found that the fallback in class.Utils.php, line 307 when the script is not run within a webserver and needs to get the server_name from the DB was not working - my DB was missing that setting.
So we're wondering if that might be a missing piece in the DB migration, to make sure this entry is stored in the tu_options table?
If someone points us to the right place where those DB upgrade / migration is done, we would be happy to create a fix for that :)
A short for for everyone facing this isse is a SQL statement like:
Hi,
I'm using a thinkup installation I've upgraded some times. For quite a while, I was irretated that the weekly digest generated by thinkup was not showing working links - the domain was missing.
Today in Basel Hackergarten (hackergarten.net) we investigated this and found that the fallback in class.Utils.php, line 307 when the script is not run within a webserver and needs to get the server_name from the DB was not working - my DB was missing that setting.
So we're wondering if that might be a missing piece in the DB migration, to make sure this entry is stored in the tu_options table?
If someone points us to the right place where those DB upgrade / migration is done, we would be happy to create a fix for that :)
A short for for everyone facing this isse is a SQL statement like:
INSERT INTO
mynet_thinkup
.tu_options
(option_id
,namespace
,option_name
,option_value
,last_updated
,created
)VALUES ( NULL , 'application_options', 'server_name', 'www.ServerDomainName.de', '', ''
);
best
Jakub, Alfred and Markus on behalf of the Hackergarten's Gardeners ;-)
The text was updated successfully, but these errors were encountered: