Jump to content
  • Sign Up

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. That is a bug with the IPB software. They keep saying they will fix it but not yet. To avoid this you have to copy all the quote contents then delete the quote and add a new one from scratch pasting the copied contents.
  2. Contact your host and ask them to increase the php memory limit to a maximum of 128 meg...
  3. They are still on. So check using ftp or file manager by editing file conf_global.php. find $INFO['use_friendly_urls'] = '1';make it $INFO['use_friendly_urls'] = '0';Save it. Clear your browser cache and try it again.
  4. acp > forums > archiving > Enable Archiving
  5. Acp > Look & Feel > Manage Skin Sets & Templates > Manage Templates > Global Templates > globalTemplate add it before this line <!-- ::: MAIN CONTENT AREA ::: -->
  6. You are welcome. Yes it is caused by php versions and settings. But normally shared hosts will not change those settings for one site.
  7. Otherwise use a ftp or file manager from your host.
  8. First make sure it is the correct version of the hook for your version of IPB forum. If it is and you want to keep the hook your only choice is to edit initdata.php in the forum folder using ftp or file manager. find //--------------------------------------------------------------------------// ADVANCED CONFIGURATION: ERROR REPORTING//--------------------------------------------------------------------------error_reporting( E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING ); change to //--------------------------------------------------------------------------// ADVANCED CONFIGURATION: ERROR REPORTING//--------------------------------------------------------------------------error_reporting( E_STRICT | E_ERROR | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING ); and save it.
  9. You are welcme. It was not in any updated template so the hook was the only thing left.
  10. Ok that is because there is none. <div style="float:left;padding:9px 5px 0 0;"> Add and remove your css in that style quoted statement. Check the hooks folder for a file with sldTopicPrefixes_TopicView in the name. The div is there.
  11. Thanks Sanctuary but I was not, just mentioning that it was an extra call and on a busy server that could save cpu and memory.
  12. The only suggestion I have for this is not to call the php interpreter just to create the array $groups . Use it like this <if test="in_array($this->memberData['member_group_id'], array(1,2,3,5))"><div class="your_class_here">
  13. You can use this hook (M34) Delete Old Topics 1.1.0 or do it through sql commands and rebuilding forums/topics.
  14. Check your skin templates and make sure the mainPage template is there under tutorials_display. If yes go to template tools and click the rebuild boxes on left and right and choose rebuild. Then at top of page recache all skins.
  15. That is not what I told you to do! <if test="showSubForums:|:$forum_data['show_subforums'] AND count( $forum_data['subforums'] ) AND $forum_data['show_subforums'] AND $_data['cat_data']['id']!=18">
  16. Show me the exact code you changed it to.. And what templates did you put the code in?
  17. Should have stated that in the beginning. Since all skins are not the same this line may be different. find <if test="showSubForums:|:$forum_data['show_subforums'] AND count( $forum_data['subforums'] ) AND $forum_data['show_subforums']"> change to <if test="showSubForums:|:$forum_data['show_subforums'] AND count( $forum_data['subforums'] ) AND $forum_data['show_subforums'] AND $_data['cat_data']['id']!=??"> Change the ?? to the category number
×
×
  • Create New...