Jump to content

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. Yes unzip the file before importing.
  2. Why not use subscriptions. A better program for membership subscriptions then Nexus. But both do have an expiration setting to put a member back to the old group. I don't have nexus but it is in the package setup for subscriptions and the settings to tell what group if not their old group.
  3. That is done in the acp system scheduler. Make sure the 2 tasks are enabled and also enable the logs so you will know if they ran.
  4. in the template of your skin under Board Index > boardindextemplate near the bottom . You will see it just add the image you want.
  5. The easiest way is to give new members special group that has post access only to the intoductions forum. Then set them to automatically promote to regular member access after that post. If you want you can also set that lower group to having that post be moderated.
  6. In the hooks folder find a .php file with latestfiles in the name. edit it and find //----------------------------------------- // Get images //----------------------------------------- $files = array(); $files = $idm_api->returnDownloads( 0, 10, 1 ); Change the 10 to a 20
  7. Lock Down

    Feedback Answered mod

    I agree with Evarni and Justin. If not thanked or said solved leave them open 30 days and if not responded or if member has been banned close them. That is the only fair solution. To think the new members can understand and test these solutions in 24-36 hours is totally unrealistic...... Also to mark a topic solved and choosing your own answer as best is ludicrous. Just close them and move on. It will cause bad feelings when you tell a member to search for the answer and they find 3 or 4 chosen by mods as working and they don't. I really don't think that is what this forum want to become.
  8. Lock Down

    Feedback Answered mod

    Ok this answered mod leaves a lot to desire. I see many topics closed before a reply is made from the member who started it. This is very aggravating because when I come back to see if they have been answered by the member and if the solution was correct they are gone. I have to search the answered section and some seem to be closed before the member sees it. I am guessing it is because they didn't see it or click the answered button.
  9. Hmm worked for me on default skin. Your skin must have changed it somewhere else. A link and test login could help.
  10. Here you go in template Board Index > hookDonateSidebar find and remove <if test="!$this->settings['devfuse_copy_num_free']"> <div class='ipsType_smaller desc lighter ipsPad short'>Donate Sidebar by <a href='http://www.devfuse.com' title='View DevFuse home page'>DevFuse</a></div> </if>
  11. You can't import it but you can make a second database and copy the 3.4.2 database into it. Then upload the new 3.42 files in a different folder and change the conf_global.php with the new db/user information and try it. This way it won't bring down your site if it screws up.
  12. find in the boardindextemplate <if test="showTotals:|:$this->settings['show_totals']"> <div id='board_stats'> <ul class='ipsType_small ipsList_inline'> <li class='clear'> <span class='value'>{$stats['info']['total_posts']}</span> {$this->lang->words['total_posts']} </li>Yours may be a little different but add after any </li> or before any <li> .. 5 is the group id for banned so if you changed it change the 5.. <php>$banned = ipsRegistry::DB()->buildAndFetch( array( 'select' => 'count(*) as banned', 'from' => 'members', 'where' => "member_group_id=5" ) ); </php><if test="$banned[banned]> 0"> <li class='clear'> <span class='value'>{$banned[banned]}</span> Banned </li></if>
  13. Try editing the css file public/js/3rd_party/ckeditor/contents.css find body{ /* Font */Should be at the top of the file. add a color: white; after those lines.
  14. All the information is in the template Global Templates > userinfopane in your skin. You can remove parts from there. To remove the whole thing in the template Topic View > post find <div class='author_info'> {parse template="userInfoPane" group="global" params="$post['author'], $post['post']['pid'], array( 'isTopicView' => true, 'wl_id' => $post['post']['wl_id'] )"} </divand remove it or change to this <!-- Removed userinfo <div class='author_info'> {parse template="userInfoPane" group="global" params="$post['author'], $post['post']['pid'], array( 'isTopicView' => true, 'wl_id' => $post['post']['wl_id'] )"} </div End of removed userinfo -->
  15. It is not working because the system is reporting guests as bots. Why I don't know. File adminapplications_addonotherticketssourcesclasseslibrary.phpCheck function public function checkViewPermissions() { /* Guest? */ if ( !$this->memberData['member_id'] || $this->member->is_not_human ) { $this->showError( 'ts_no_guests', 1000 ); } If you want change this $this->showError( 'ts_no_guests', 1000 );to this // $this->showError( 'ts_no_guests', 1000 );
  16. It is in the php file in the hooks folder. Should have something like this in the file name bim_hidelinkcode_topic
  17. My guess is someone reported you. And they ran the url check for your site. What they posted in their message is not true tho.
  18. You are welcome. If you click variables in the upper right hand corner of that template it will show you what variables are available to use.
  19. That makes no sense. I just tried it and it worked fine. What template and where did you put the code??
  20. Guests have member id 0 i think. So I think your original code should work... If it did not change the code to this to see why it is not working <if test="isGuest:|:$this->memberData['member_id']==0"> <p class="message error">******************** {$this->memberData['member_id']} **********<br> Small notice here</p> <else>******************** {$this->memberData['member_id']} **********<br> Normal page here </if>
  21. I went to IPB site and they said that option has been removed but bots now should only have the same access as guests. So if guests are set to not see those topics the bots should not either.
  22. Close but not quite. That way it overwrites all fields in the database. If you are trying to copy just one field from one db to another you have to make sure the tables have equal number of rows and they matchexcept for not having the one field. First create the thanked field in the second database using phpmyadmin. Next run this sql command changing the database names to your databases. The profile_id may not exist but the real name should be the first column in the table... UPDATE dbase2.profile_data set thanked = (select thanked from dbase1.profile_data where dbase2.profile_id = dbase1.profile_id )
  23. If you want me to look at it pm me the phpmyadmin login and admin login and url.
×
×
  • Create New...