Recent content by KenSmith

  1. KenSmith

    Better Hosting Solutions so mails not blacklisted

    Whatever host you go with, specifically ask for an IP address that has no spam blacklist issues. Certainly, once you get assigned IPs, check them yourself for trouble. Here are two ways to check lots of lists: http://www.anti-abuse.org/multi-rbl-check/ http://mxtoolbox.com/blacklists.aspx If...
  2. KenSmith

    github - cracked

    The good news is that your LastPass decryption key never leaves your machine, and the data stored on the LastPass servers would be worthless even if it were stolen via a hack. However, your concerns about keyloggers and the like are valid. Still, I think LastPass is more secure than any other...
  3. KenSmith

    Proper code for calling my own function

    Probably this is what you meant: $myData = $this->mainLoop($newMessage);
  4. KenSmith

    Members signing up with their real names

    Now that I'm paying attention and talking about the same thing everyone else is, I'll summarize the phrases involved! :D In the drop-down that appears when you click Log In / Sign Up, there is a label : "Your name or email address". To change this one, the phrase is...
  5. KenSmith

    Members signing up with their real names

    I understand. That's why I mentioned how to find this answer. There is a lot to learn.
  6. KenSmith

    Members signing up with their real names

    The correct phrase to edit is: your_name_or_email_address Admin / Search Phrases lets you answer these kinds if questions quickly.
  7. KenSmith

    getting started with development

    The code that does this is in js/xenforo/full/xenforo.js Search for the phrase a_moment_ago and you'll be in the neighborhood. Your board is probably using the minified version at js/xenforo/xenforo.js though.
  8. KenSmith

    New Threads to Twitter

    Social Connect looks like it allows members to tweet their threads to their own Twitter account. I'm looking for something that posts all new threads to the site's Twitter feed. Is there an addon that does that? My searching didn't turn one up.
  9. KenSmith

    Post Content Find / Replace

    Here are four settings to convert vb3 [thread] and [post] bbcodes after importing. [thread] #\[thread\](\d+)\[/thread\]#i http://yoursite.com/threads/$1 [thread= #\[thread=(\d+)\](.*?)\[/thread\]#i $2 [post] #\[post\](\d+)\[/post\]#i http://yoursite.com/posts/$1 [post=...
  10. KenSmith

    Do soft 404's get logged to the appache log?

    I just went live this week and I'm noticing the same thing. I do not see any errors at all being logged in my Apache error_log.
  11. KenSmith

    Autovalidator

    Just in case anyone else finds this unanswered question via search, you can find the answer here.
  12. KenSmith

    Is there a function to get a thread URL based on $thread_id input?

    Andy, here's some more detail... The magic sauce for link-building resides in the Route_Prefix class for any given route. As Jeremy pointed out, for threads, that class is XenForo_Route_Prefix_Threads. Look in library/XenForo/Route/Prefix/Threads.php and you'll find a function buildLink. The...
  13. KenSmith

    XF 1.2 How to add bubble itemCount to an element on XF page

    I'm interested in this idea as well, so please post whatever you learn. Thanks!
  14. KenSmith

    How do I create an add-on with a route that calls a template

    I'm debating whether to respond because I'm still learning the nuances of this myself. But hopefully I can provide some direction for you. Returning a template from a controller looks like this: class Andy_ControllerPublic_ShowDeleted extends XenForo_ControllerPublic_Abstract { public...
  15. KenSmith

    Tags not alerting

    It appears that the setting "Maximum tag alerts per message" defaults to zero in a new install, so most people will probably want to change it.
Top Bottom