Jump to content

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. Show what you have for that in the userinfopane template. Usually it is as simple as changing this <li class='post_count desc lighter'> {parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"} {$this->lang->words['m_posts']} </li> to this <li class='post_count desc lighter'> <span class="ft" style="float:right">{$this->lang->words['m_posts']}</span><span class="fc" style="float:left">{parse expression="$this->registry->getClass('class_localization')->formatNumber( intval( $author['posts'] ) )"}</span> </li>
  2. Find the css class category_block block_wrap usually found in the ipb_styles.css in the admin panel > look&feel> your skin > css And show it here.
  3. Sorry but what are you asking? Change the appearance or change the title of the category. The appearance of a category would be normally the css class category_block block_wrap usually found in the ipb_styles.css The title would be in admin panel under forums.
  4. it is saying the ip.nexus version is encoded for php 5.0 and you have php 5.5, So you have to get the updated ip.nexus or remove the php 5.5 and install php 5.0
  5. Have you tried to remove it and install it again?
  6. Well he had at least 2914 according to you. So run this command and change the command from 2914 to what ever you want it to be. update ipb_members set posts=2914 where member_id=10197; PS Do you allow guests to post? If you did not delete any other members all those posts must be his.
  7. That is because you didn't ask to have his posts updated. all you have to do is go to admin panel members and find him and click his name. Put the post count you want in the field posts. Or you can run this query update ipb_members set posts=3476 where member_id=10197;
  8. Funny added a 1. Ok here is the 2 sql commands you need to run. You should export the posts & topics tables first. update ipb_posts set author_name='Kopakabana1', author_id=10197 where author_name = 'Kopakabana'; update ipb_topics set starter_name='Kopakabana1', starter_id=10197 where starter_name = 'Kopakabana';
  9. And what is the new member display name??
  10. You know the new members name? If you do put the mouse on the name and it will show id= in the address (url) or if it is furl it will look like this user/25038-disconnect/ and 25038 is the id.
  11. Check your members in the admin panel for kopakabana if it does not exist then that is the correct one. What is the new member name and member id number for kopakaban ?
  12. ok your command is this and it should come back with 3476. If it does I will need the name and member id that he was changed to. select author_name, count(*) from ipb_posts where author_name = 'Kopakabana'
  13. No you are showing the bottom of the page. I want to see the top of the page like this:
  14. That will clear the guest_ but will not merge the old members posts with his new id. Under the title Table at the top of that screen what is the complete name it shows for admin_logs ??
  15. Version 1.21

    327 downloads

    [color=rgb(40,40,40)][font=helvetica][size=3]This is an application that allows you to create multiple countdowns placed around the board at your choice. The type of countdowns can be anything from a global happening, a local gathering with your members or any other kind of events, your sites anniversary, airing of a TV show, or pretty much anything else you would want to count down to.[/size][/font][/color] [b]Features[/b][list] [*]The initial placement for the counters are the top and bottom of the page, and in the board index sidebar. Others can be added on request. [*]Group, forum and IP.Content pages restrictions. [*]Post embedding. Using IP.Board's "Shared Media" feature, you can add a countdown to all the official addon applications, and a lot of unofficial ones as well. All members can share a countdown that is enabled and they are allowed to see as per the group restriction. [*]Experts only: [*]Custom style formatting. If you want to change the color, or the font size, this is easily doable if you know a little CSS. [*]Change the layout and format of the counter [/list] [color=rgb(40,40,40)][font=helvetica][size=3]As this is the first release of this application, more features will be added in the future based on requests from you, the users.[/size][/font][/color] [color=rgb(40,40,40)][font=helvetica][b]Common Error[/b][/font][/color] [color=rgb(40,40,40)][font=helvetica][size=3]There have been reports from users that get errors about missing templates after installation. Follow these steps to attempt to fix that:[/size][/font][/color] [color=rgb(40,40,40)][font=helvetica][size=3][font=helvetica]Go to Look & Feel > Template Tools > Rebuild Master Skin Data, tick off "Rebuild HTML" and "It's the Final Countdown", and click "Rebuild".[/font][/size][/font][/color] [color=rgb(40,40,40)][font=helvetica][size=3][font=helvetica]Once that's completed, rebuild the skin cache for all your skin sets (on the same page).[/font][/size][/font][/color]
  16. Put the original back so I can see what it looks like.
  17. You might want to delete that image as it gave the member ip address. This will not fix it but will tell us if this is the correct person to fix it. Run this sql command in the sql toolbox in the acp under support > sql management. use one if the 2 commands select author_name, count(*) from posts where author_name = 'Kopakabana' or select author_name, count(*) from ibf_posts where author_name = 'Kopakabana'
  18. Without a link to your site I don't think anyone can help more than was in that tutorial. Too many differences in those custom skins.
  19. What does that mean? It didn't help. What was the results? You will not find a perfect set of instructions since most skins are different unless you use the default skin.
  20. You are welcome. But next time save us some typing and give me more information.
  21. That is telling you the file is too large. Check the size of the file and check your admin panel > support > diagnostics > overview click the words PHP INFO . Search for upload_max_filesize
  22. You should have told me that to start .. Try this one. <?php if ( ! $this->registry->isClassLoaded( 'members_hookGateway' ) ) { $classToLoad = IPSLib::loadLibrary( IPSLib::getAppDir( 'members' ) . '/sources/classes/hooks/gateway.php', 'members_hookGateway', 'members' ); $this->hookGateway = new $classToLoad( $registry ); } print $this->hookGateway->statusUpdates(); ?>
×
×
  • Create New...