Recent content by Nikolaos

  1. Nikolaos

    XF 2.1 HTTP403 Error when editing style properties in v2.1.4

    We very recently upgraded from XF1 to XF2.1.4. It was a pretty major upgrade of course, but the forum is functional and our post history is intact. However, I get HTTP403 errors when I attempt to edit style properties in the administrative panel. I can perform other actions such as assigning...
  2. Nikolaos

    Trying to extend the ordered list BBcode, running into errors

    The above post was a bad idea. I replaced "decimal outside" with "inherit" instead of removing it. The change works completely now. Anyone who wants to know how I did it can feel free to ask me for a log of all the final changes.
  3. Nikolaos

    Trying to extend the ordered list BBcode, running into errors

    I hate to post in this thread again, for fear that it will be ignored, but I think that it would be profitable for any others who should try to do this in future if I post here. Now, with various template edits, ending with the one above, I have managed to get the HTML to publish correctly...
  4. Nikolaos

    Trying to extend the ordered list BBcode, running into errors

    Solved. I did this: public function handleTagOl($text, XenForo_Html_Tag $tag) { $listStyle = $tag->attribute('style'); if($listStyle) { if(preg_match('/^decimal/', $listStyle['list-style-type'])) $target = '1'...
  5. Nikolaos

    Trying to extend the ordered list BBcode, running into errors

    Hm, I'm afraid that neither of those work. They don't throw a forum error, but the preview simply doesn't load. Thanks for giving it a shot, though. The class XenForo_Html_Tag is defined in /library/XenForo/Html/Tag.php. Does anyone know how to create a quick and dirty method to return the...
  6. Nikolaos

    Trying to extend the ordered list BBcode, running into errors

    I had it print the contents of the attribute "style", and found that the problem is that the attribute itself has an attribute: [15:37:25.654] PHP Array ( [style] => Array ( [list-style-type] => upper-alpha ) ) I have no idea how to make the function...
  7. Nikolaos

    Trying to extend the ordered list BBcode, running into errors

    Note: Line 478 of my BbCode.php is this one: $listType = trim($tag->attribute('style'));
  8. Nikolaos

    Trying to extend the ordered list BBcode, running into errors

    Hello, I have made several edits to the BBcode related scripts in order to accommodate special ordered lists, such as: I. foo II. bar But, I am running into trouble with the HTML interpretation. Here is what I did in /library/XenForo/Html/Renderer/BbCode.php:, which is throwing the...
  9. Nikolaos

    How to change BBcode

    Solved. The missing link was /library/XenForo/Html/Renderer/BbCode.php.
  10. Nikolaos

    How to change BBcode

    Hello. Our forum is focused on learning foreign languages, and in translating we tend to mark things that can be taken as either plural or singular with [s ], minus the space. Now that we have migrated to Xenforo, though, all posts that use this syntax have converted it to a strike-through...
  11. Nikolaos

    [LN] Blog [Deleted]

    Found it - it has nothing to do with Xenforo or the add-on, but rather the .htaccess in the root directory (the homepage). Thank you for pointing me in the right direction! Now, I didn't write the .htaccess, and I don't want to poke around in it without knowing what I'm doing. I'll PC it to...
  12. Nikolaos

    [LN] Blog [Deleted]

    This is through Firefox. I haven't tried to access it through Tapatalk. No other add-ons have been installed, and the error occurs only when attempting to view an entry. I'll play with some settings over the course of the week, and let you know if I find what might be causing this.
  13. Nikolaos

    [LN] Blog [Deleted]

    No. I installed the software Friday night, and no changes have been made server-side except for: Changing the permission levels on /data/ and /internal_data/ Installing Tapatalk Installing LN Blog I also imported from phpBB, but I don't know if that changes anything vital. Here is the...
  14. Nikolaos

    [LN] Blog [Deleted]

    I solved it. The plugin is incompatible with the Full Friendly URL setting.
Back
Top Bottom