Lincoln -
I just downloaded .14, the issue with gravatars (in the plug in itself is not fixed):
$User->Photo = 'http://www.gravatar.com/avatar.php?'
.'gravatar_id='.md5(strtolower($Object->$Email))
.'&default='.ur…
Hi Lincoln -
All of them that were outlined or just the one in this thread? (ie. Issue with gravatar, https issue with any link, AND the https issues related to photos)
The issue is line 255 in functions.render.php needs to be replaced with:
if(strtolower(substr($User->Photo, 0, 7)) == 'http://' || strtolower(substr($User->Photo, 0, 8)) == 'https://'){
$PhotoUrl = $User->Photo;
}else{
$PhotoUrl =…
Thanks, but that doesn't resolve the issue, the gravatars are still going to:
https://www.wbpsystems.com/forum/uploads/https://secure.gravatar.com/navatar.php...
That seems to have fixed all of the issues except the gravatars, it does this to them:
/forum/uploads/https://secure.gra....
I assume somewhere in the code for the photo it is specifically looking for www.gravatar.com
Ok, so I've done a little digging and playing and the issue seems to be that anything with http:// Vanilla wants to leave alone. But anything starting with https: it thinks is a relative path. Once I modified the gravatar plugin to handle SSL this…
yes, I'm not saying that I can't select the box; I'm saying that it doesn't save that way.
I downloaded an entire new RC after you posted and replaced all files; ran the update to the DB structure you introduced in that update and cleared the cache…
Well, the good news is it doesn't produce an error. But that bad news is it doesn't work.
When you try to create the route, it shows up as a type of "internal" and editing it doesn't fix it. When you type in the address of one of the rss feeds i…
Thanks but that results in:
atal Error in PHP.Gdn_ErrorHandler();
Undefined offset: 1
The error occurred on or near: /home/ben/forum.wbpsystems.com/html/library/core/class.routes.php
119: $Destination = $this->_FormatRoute($Destination…
I added UrlCode manually; which got the app loaded far enough to be able to log in. Then I ran the structures for the other changes.
Disabling and enabling the plug-in through the interface still causes the failure (I have filled in the UrlCode f…
Ok; I found in the code that it was a VarChar,
Now I'm getting:
Base directory /home/ben/forum.wbpsystems.com/html/cache/HtmlPurifier does not exist, please create or change using %Cache.SerializerPath
The error occurred on or near: /home/ben/foru…
Mark, I can't get far enough to log in as any one. I do now see that it is a column:
Table GDN_Category: Column UrlCode
What is the type of column that this is? I can then just go in and manually modify it.
Todd -
Where is the alter table commands in the code? I had already added full text searching to my copy and I want to see what I need to delete/alter.
Hi Mark -
That produces a fatal error. If I remove the if it doesn't error, but it still doesn't remove the activity menu. I've tried it before and after the render menu command.
Hi Mark -
I've added that line to default.master.php (and variations including $this->RemoveGroup('Activity');), however all appear to result in an error. I take it you are assuming that the $Menu object exists when the template is executed: is…
Not knowing the exact structure where stuff is stored I can't be sure, but in general it is almost always better to use a mysql union. MySQL executes each part of the union independently of each other then merges the results, which means you can us…
So, maybe this should be in a new thread, but I'm still a bit confused on the reasoning here @Todd. From even the relatively limited number of posts sense the upgrade, there is now a huge number of words. And it isn't stored as efficiently as a fu…
Thanks @Lincoln, I still haven't spent the time to learn Git, I probably should do that so that I can post to projects like this.
Yeah, I looked at the search tables and you are right, it looks like it hasn't indexed and of the old posts. Do you h…
Ok, I've gotten past this (BTW, you have two errors in step 11 of the import process - two tables have been lowercased in your code making it so it can't find the tables).
Everything is imported, however, only NEW (post import) comments can be sear…