Recent content by HeadHodge

  1. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    Hi, Everything is running smooth so far!! I would like to experiment with the cache settings now in my sandbox. It's currently enabled using the Zend cache with a Redis backend. It was set up that way by someone else, so I don't know why they chose Redis instead of memcache. My basic question...
  2. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    The reason I ask is that our system admin said I could set the default create file permissions by hacking the index.php file and adding a umask command to temporarily set it. But it's not a big deal, just curious. The BIG thing is working now. So I'm a happy camper.
  3. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    Thanks I do this in one of my models: //***************** //** Create Node ** //***************** public function createNode($task, &$shared){ if(!isset($task->node)) throw new Exception('createNode Error: Node Name Missing.'); $path =...
  4. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    Oh found it, $config['chmodWritableValue'] - default: 0 If this value is non-zero, all files created by XenForo will be automatically chmodded to this value. Directories will be chmodded to this value as well, though they will also always be user-, group-, and world-executable as well. In most...
  5. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    Forgot to say (for others out there). What worked was changing the cookie prefix and the memcache prefix
  6. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    When a new file is created I believe the system assigns a default permission for the file. On mine system it appears to be 644. I can't find it again but I believe I've read somewhere here that you can change what the default is in the config file (at least I'm pretty sure)
  7. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    No I mean the umask when a new file is created
  8. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    YEAH That did the trick!! It not closes the right board, and I'm able to view the inbox and alerts now. Thank you Can that little trick be used to change the default file permissions?? Right now it's 644 and I would like it to be 664 Thanks
  9. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    Also have more got this message when trying to look at the inbox: The requested URL /sandbox/forum/conversations/popup was not found on this server.
  10. HeadHodge

    XF 1.4 Installing a test copy of Xenforo

    Do you see any problem having two installs on the same server? One is installed at /www/html/forum The test one is installed at /www/html/sandbox/forum I did it by copying the forum directory to the sandbox/forum directory Then I copied the database from the 'forums' database to a new...
  11. HeadHodge

    XF 1.4 Permissions for JS and Library directories

    Thanks. Should it be the server user? (i.e. www-data) If not does the server user need more than read access to the directories?
  12. HeadHodge

    XF 1.4 Permissions for JS and Library directories

    Ok I read the install instructions and peeked into the install zip file. It states to copy the files in the upload directory to your site. In that directory are the directories data, internal_data, js, library, style, and a few others. So if I uploaded those directories using the root user the...
  13. HeadHodge

    XF 1.4 Permissions for JS and Library directories

    Hopefully last question. I'm migrating an existing system to a new server, not reinstalling it. When you do run a new install is the server user used to install the needed directories and files? If so does that mean all directories and files created during the install would be owned by the...
Top Bottom