Recent content by ScottLott

  1. ScottLott

    [oxy] News Portal [Paid] [Deleted]

    Is there any way to double this addon? Another words, lets say I wanted a second portal with the url "reviews" instead of "news" with a completely different set of forums to update from. How would I go about doing that?
  2. ScottLott

    Post Problem

    Nevermind, I ended up just using XenPorta and modifying the layout to fit my needs.
  3. ScottLott

    Post Problem

    Hey Guys, I'm trying to get a thread to display inside a page node. So far I've go this code: class scootloot_ShowBlogStyle { public static function showThreadsinPage(XenForo_ControllerPublic_Abstract $controller, XenForo_ControllerResponse_Abstract &$response) {...
  4. ScottLott

    XF 1.2 Display Post/Message in Page

    I found the tutorial that shows how to display the contents of a post inside a XF page node, but I'm having trouble getting the posts to display like they do inside a thread, instead of just showing the post contents. I'd like to setup a page that shows the first post of several different...
  5. ScottLott

    XF 1.2 Intermittent Speed Issue

    Alright, another update. The PHP files were part of the problem, but not the whole one. Here's what I did after 3 days of pulling my hair out to get this fixed: 1 - Enable MySQL logging using the following sql queries: set global general_log=1; set global log_output='table'; This won't...
  6. ScottLott

    XF 1.2 Intermittent Speed Issue

    I found the problem, there was another PHP script installed that was opening MySQL connections and not closing them. I updated the script with MySQL close commands and everything sped up. I'll probably still update the MySQL server since 5.1 is reaching end of life soon.
  7. ScottLott

    XF 1.2 Intermittent Speed Issue

    Yeah, I've got these on: - BBCode Media Sites Pack - Custom BBCode Manager - ParseHTML - Tapatalk - Thread Thumbnails. I'm running v1.2.2, so the custom BB code plugin is still needed. It's more than likely a MySQL related issue, I restarted the mySQL service on my server and that spead things...
  8. ScottLott

    XF 1.2 Intermittent Speed Issue

    Alright, thanks! I'll do the upgrade and get back to you with the results.
  9. ScottLott

    XF 1.2 Intermittent Speed Issue

    I'm using MySQL v5.1.7, it doesn't support Innodb. I guess you're saying it's time to upgrade the MySQL database?
  10. ScottLott

    XF 1.2 Intermittent Speed Issue

    Hey Guys, I've searched Google and the forums until my eye balls bled and haven't found a solution to this issue. My forum will randomly drop to a snails pace for a few hours, then go back to normal, then back to a snails pace. I'm running on a VPS, server load is minimal, the CPU never gets...
  11. ScottLott

    New Company contemplating Xenforo...

    Looking out our server logs and active users, a single active user burns through an average of 40MB/month on my XenForo site (www.RCPowers.com). We've got tons of hi res pictures that folks upload and view, that likely contributes pretty heavily to that figure. Keep in mind that things like...
  12. ScottLott

    Custom login script

    That's the direction I was thinking, maybe you can setup the PHP file to hook into a page node? The page nodes can use template syntax in their HTML, I'd assume that's the direction you have to go.
  13. ScottLott

    Custom login script

    Here's a few things to look into, but I don't know if it'll help: - Many of the XenForo controllers have a "viewParams" variable in the PHP file that list variables that are accessible to the templates. For example, the XenForo file that shows the "Alerts" page has the "$alerts" variable in the...
  14. ScottLott

    Custom login script

    I've never really taken the time to learn how to write PHP correctly inside XenForo, all of my mods (including the one above) are running on PHP files outside XenForo. Makes it simpler, I only have to worry about my PHP/HTML/Javascript not working. Sorry I can't be of more help at this point.
  15. ScottLott

    XF 1.2 Unsubscribe From Everything?

    Thanks for all the replies, guys! Looking at the Email template, I see this is the line doing the work: 'disable_all_link={xen:link canonical:watched/via-email, '', 'u={$receiver.user_id}', 'c={$receiver.email_confirm_key}', 'a=no_email'}', I'm not sure how I would get the "email confirm...
Top Bottom