Jump to content

Leaderboard

  1. Tony

    Tony

    Administrator


    • Points

      32

    • Posts

      5,256


  2. Skye

    Skye

    Frost


    • Points

      2

    • Posts

      122


  3. FlinTY

    FlinTY

    Contributor


    • Points

      1

    • Posts

      135


  4. Justin™

    Justin™

    Retired Staff


    • Points

      1

    • Posts

      369


Popular Content

Showing content with the highest reputation on 03/18/2013 in all areas

  1. Here is a little tutorial for show to you how to edit the copyright at the bottom of your page without a template edit.. Per defaut : After follow this tutorial : Here we go : 1) Let's go on your FTP > public_html and go in : adminsourcesclassesoutputformatshtml 2) Open htmlOutput.php 3) Go at the line 632 or search for : <!-- Copyright Information --> You will see that : $copyright = "<!-- Copyright Information --> <p id='copyright'> <a href='http://www.invisionpower.com/apps/board/' title='Community Forum Software by Invision Power Services'>Community Forum Software by IP.Board{$version}</a>"; 4) Custom step : After the </a> add your custom code.. and when it's done don't forgot to check if the "; is after your code. Exemple : $copyright = "<!-- Copyright Information --> <p id='copyright'> <a href='http://www.invisionpower.com/apps/board/' title='Community Forum Software by Invision Power Services'>Community Forum Software by IP.Board{$version}</a></br>Skin By Paradiizee - WebFlake"; 5) Save and re-upload the htmlOutput.php 6) It's done ! Tutorial by Skye for WF community. Hit the Like button if you wanna thanks me.
    2 points
  2. goto: ACP > LOOK and FEEL > your skin click on it > TOPIC VIEW > TOPICVIEW TEMPLATE and replace this code ipb.templates['post_moderation'] = new Template("<div id='comment_moderate_box' class='ipsFloatingAction' style='display: none'><span class='desc'>{$this->lang->words['comment_action_count']} </span><select id='tactInPopup' class='input_select'><option value='approve'>{$this->lang->words['cpt_approve']}</option><option value='delete'>{$this->lang->words['cpt_hide']}</option><option value='sundelete'>{$this->lang->words['cpt_undelete']}</option><option value='deletedo'>{$this->lang->words['cpt_delete']}</option><option value='merge'>{$this->lang->words['cpt_merge']}</option><option value='split'>{$this->lang->words['cpt_split']}</option><option value='move'>{$this->lang->words['cpt_move']}</option></select>&nbsp;&nbsp;<input type='button' class='input_submit' id='submitModAction' value='{$this->lang->words['comments_act_go']}' /></div>"); replace with: ipb.topic.modPerms = []; <if test="$this->memberData['g_is_supmod']"> ipb.topic.modPerms['approve'] = 1; ipb.topic.modPerms['delete'] = 1; ipb.topic.modPerms['hide'] = 1; ipb.topic.modPerms['unhide'] = 1; ipb.topic.modPerms['merge'] = 1; ipb.topic.modPerms['split'] = 1; ipb.topic.modPerms['move'] = 1; <else /> <if test="isset( $this->memberData['forumsModeratorData'][ $forum['id'] ] )"> ipb.topic.modPerms['approve'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['post_q']}; ipb.topic.modPerms['delete'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['delete_post']}; ipb.topic.modPerms['hide'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['bw_mod_soft_delete']}; ipb.topic.modPerms['unhide'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['bw_mod_un_soft_delete']}; ipb.topic.modPerms['merge'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['split_merge']}; ipb.topic.modPerms['split'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['split_merge']}; ipb.topic.modPerms['move'] = {$this->memberData['forumsModeratorData'][ $forum['id'] ]['split_merge']}; </if> </if> ipb.templates['post_moderation'] = new Template("<div id='comment_moderate_box' class='ipsFloatingAction' style='display: none'><span class='desc'>{$this->lang->words['comment_action_count']} </span><select id='tactInPopup' class='input_select'><option value='approve'>{$this->lang->words['cpt_approve']}</option><option value='delete'>{$this->lang->words['cpt_hide']}</option><option value='sundelete'>{$this->lang->words['cpt_undelete']}</option><option value='deletedo'>{$this->lang->words['cpt_delete']}</option><option value='merge'>{$this->lang->words['cpt_merge']}</option><option value='split'>{$this->lang->words['cpt_split']}</option><option value='move'>{$this->lang->words['cpt_move']}</option></select>&nbsp;&nbsp;<input type='button' class='input_submit' id='submitModAction' value='{$this->lang->words['comments_act_go']}' /></div>"); goto: ACP > LOOK and FEEL > your skin click on it > FORUM VIEW > FORUMINDEX TEMPLATE find this should be near the top though ipb.templates['topic_moderation'] = new Template("<div id='comment_moderate_box' class='ipsFloatingAction' style='display: none'><span class='desc'>{$this->lang->words['f_comment_action_count']} </span><select id='tactInPopup' class='input_select'></select>&nbsp;&nbsp;<input type='button' class='input_submit' id='submitModAction' value='{$this->lang->words['comments_act_go']}' /></div>"); and replace it with ipb.forums.modPerms = []; <if test="$this->memberData['g_is_supmod']"> ipb.forums.modPerms['approve'] = 1; ipb.forums.modPerms['delete'] = 1; ipb.forums.modPerms['hide'] = 1; ipb.forums.modPerms['unhide'] = 1; ipb.forums.modPerms['pin'] = 1; ipb.forums.modPerms['unpin'] = 1; ipb.forums.modPerms['open'] = 1; ipb.forums.modPerms['close'] = 1; ipb.forums.modPerms['move'] = 1; ipb.forums.modPerms['merge'] = 1; <else /> <if test="isset( $this->memberData['forumsModeratorData'][ $forum_data['id'] ] )"> ipb.forums.modPerms['approve'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['topic_q']}; ipb.forums.modPerms['delete'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['delete_topic']}; ipb.forums.modPerms['hide'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['bw_mod_soft_delete']}; ipb.forums.modPerms['unhide'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['bw_mod_un_soft_delete']}; ipb.forums.modPerms['pin'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['pin_topic']}; ipb.forums.modPerms['unpin'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['unpin_topic']}; ipb.forums.modPerms['open'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['open_topic']}; ipb.forums.modPerms['close'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['close_topic']}; ipb.forums.modPerms['move'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['move_topic']}; ipb.forums.modPerms['merge'] = {$this->memberData['forumsModeratorData'][ $forum_data['id'] ]['split_merge']}; </if> </if> ipb.templates['topic_moderation'] = new Template("<div id='comment_moderate_box' class='ipsFloatingAction' style='display: none'><span class='desc'>{$this->lang->words['f_comment_action_count']} </span><select id='tactInPopup' class='input_select'></select>&nbsp;&nbsp;<input type='button' class='input_submit' id='submitModAction' value='{$this->lang->words['comments_act_go']}' /></div>"); Screen Shots: Forum View Screen Shots: Topic View
    1 point
  3. The unfortunate part about malware infections, is that without site scanning software, you'll be doing it by hand. You'll need to review virtually any .php file you have in your FTP. I believe there was another thread posted with a similar question, where I displayed some examples of what to look for. In fact, I think the thread title is the same as this one. Most times it's caused by out-of-date software.. I'd review everything you have installed, and be sure to update them. Also check for any files in your root folder that seems to be repopulating (i.e. you delete it and it autmagically reappears).
    1 point
  4. http://webflake.net/topic/2300-can-you-tell-me-what-font-this-is/?p=11156
    1 point
  5. Hope it helps. If you have any questions, don't hesitate to ask. I'll do my best to assist.
    1 point
  6. That would be a malware infection.. I strongly recommend following the tutorial I posted about a week ago:
    1 point
  7. Welcome ban, and your english is great for a french person.
    1 point
  8. ACP-System Settings-Members-Reputation System Allow users to give themselves reputation Chose the No and save
    1 point
  9. Actually, the hook hasn't been updated to work properly with 3.4.x. According to the author it is compatible for 3.2.x and 3.3.x only.
    1 point
  10. You're mistaken. The hook is not nulled, nor is this tutorial to be used for nulling it. This tutorial is for fixing the compatibility issues it has with IPB 3.4.x.
    1 point
  11. Have you bothered to recache the skin? How about doing a Global Recache?
    1 point
  12. Well for starters, you have your IPB version listed as being older than 3.0.x.. if that's the case, I have no idea what you hope to achieve by using a 3.4.x tutorial.
    1 point
  13. You didn't make the edit properly. A 500 error usually occurs when you "break" the file.. such as not commenting properly (i.e. only using /* and not adding the closing */ ).
    1 point
  14. Both of these issues could have been resolved by a simple search.. to sum them up: Issue #1: Issue #2: The question(s) in this support topic have been answered and the owner has been able to solve the problem. Because of this, the support topic has been closed and moved. If you have other questions, please open a new topic.
    1 point
  15. Welcome to WebFlake! Be sure to have a look at our Community Guidelines-- enjoy your stay!
    1 point
  16. I'm going to have to respectfully disagree. In some instances, I'd tend to agree with you. However, I've found creative use for the Blogging system on one of my communities -- players from one of my gaming servers utilize it to chronicle exploration across various maps, or even offer in-depth user guides for a variety of in-game aspects. Communities that offer blogs that will never be used, or communities that have users who update their blogs like a Facebook status, are definitely fail..but some of us, are able to cleverly employ this system and succeed.
    1 point
  17. Glad to see you found a solution - you should consider posting this in IPB Tutorials for easy reference.
    1 point
  18. Well, as Para mentioned in the other thread I linked above, it's likely an issue with the theme itself. I've moved away from the theme I was using, and no longer have any issues. Unless someone sits down with one of the themes known to be having issues and merges it all by hand, it's not likely you'll be using it anytime soon (barring an update from the theme author).
    1 point
  19. Not trying to discourage you, just being realistic. Ultimately, the choice is yours.
    1 point
  20. If it's not related to acp restrictions, you've run every cache reset option, and you've refreshed your browser's cache.. I can't foresee any other fix than uploading a fresh copy of the Admin folder. If there's another option, then anyone can feel free to enlighten me. Certainly not something I've ever run into myself.
    1 point
  21. That, I'm not sure about. I'd imagine it still depends on how "popular" your forum becomes, but even a whiff of it, and IPS would likely terminate your license as it'd be in direct violation of their TOS.
    1 point
  22. It's simple really.. IPS isn't butt-hurt by people using their content -- that's free advertising. They're concerned that people are using their content without paying for it. If you're using a null copy and opt to step-up and purchase a license, IPS simply isn't going to care that you were using a nulled board beforehand. They have their money, and that's all they're interested in. Think of it this way.. if you walk into a store, grab a cold soda from a cooler, open it and start drinking it.. obviously you're going to be in a world of crap. If you pay for it, they'll subsequently "forget" you ever opened it to begin with. You may receive a stern lecture for doing so, but regardless.. you purchased it. Using nulled content is basically opening the bottle, drinking from it, setting it down and leaving.
    1 point
  23. Thanks for the contribution! I know I banged my head against the wall often, while making my first attempts at using this. Very thorough tutorial.
    1 point
  24. Depending upon whether or not you recently launched the board, you may want to consider just re-uploading a fresh copy of the Admin folder.
    1 point
  25. Check their Pre-Sales Questions board.. it contains dozens (if not hundreds) of posts/threads about users wishing to upgrade from a nulled board to a licensed copy. IPS only pursues people who acknowledge the use of a nulled board and refuse to purchase a license.
    1 point
  26. I've seen them intimate various versions wouldn't happen (in the past), and they still did.... but security exploits and bugs between now and then could bring about a 3.5, very easily.
    1 point
  27. Considering they just released 3.4.3 final, I can't imagine 4.x will be out any time soon. They go in version increments, not sets of 10, so you'll be waiting awhile.
    1 point
  28. You may be able to. Creating something so intricate is a bit out of my reach, otherwise I'd offer to do it for free. I'd clear it with Staff first to be certain such transactions are permitted. I've seen folks pay for theme rips, so I can't imagine something that'd benefit the community as a whole (assuming you'd release it) would be such a bad thing. Best of luck in getting what you're looking for! If I find anything remotely relevant, I'll be sure to reply to this thread.
    1 point
  29. Yeah, it appears I misunderstood.. I was thinking it was more along the lines of phpBB's "Apply to User Group", but minus the "application" -- they would simply change groups without required approval. Maybe this is more along the lines of member title, or changing their primary group as mentioned above? No clue. Either way, I'm not aware of any app/hook that handles anything of the sort.
    1 point
  30. If you can get your hands on (TB) Change Group in UCP.. http://www.invisionbyte.net/shop/ipb/change_group_in_ucp.html You may be able to modify it to allow basic members to use the hook.
    1 point
  31. An Administrator of WebFlake wouldn't share a tutorial that could potentially damage your site. It's the same method that any *good* nulled version utilizes... the DGT release simply didn't have it. Not to mention, some folks use retail without a license and want to remove the alert.
    1 point
  32. Not likely, considering virtually every hook/app is developed by users, and not IPS themselves. The chances of any callbacks to IPS' servers is virtually null. If I'm wrong, anyone is free to correct me.
    1 point
  33. I found a possible resolution (have not tested it myself).. care to give it a try and post your results? http://invisionfocus.com/topic/6808-no-options-for-post-moderation/
    1 point
  34. The search tool can be really useful.
    1 point
  35. Para is actually trying to lend a hand in another thread.. he has already indicated that he plans to have a more in-depth look tomorrow when he has a bit more time. It appears to be a theme-related issue only (I can verify that). Skim over the impatience of the OP, and you'll find some of Para's answers.
    1 point
  36. I've done a good bit of searching on IPS, and haven't turned up any results. I'm willing to bet its an issue with the 3.4.1 and 3.4.2 versions, or possibly even a missed edit in nulled copies.
    1 point
  37. I can verify that this is an issue with 3.4.x... haven't gotten around to looking (or asking) for a solution yet, so I'll be keeping tabs on this thread.
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...