Advertisement
-
Posts
143 -
Joined
-
Last visited
-
Days Won
3
Community Answers
-
xzoex's post in Name of this app/hook? was marked as the answer
This one? https://community.invisionpower.com/files/file/4384-m34-auto-welcome-members/
-
xzoex's post in Need help with [EN34] Ajax Thanks & (TB) Hide Content was marked as the answer
Try the fix in this post
-
xzoex's post in Post / topic limit per second/minute was marked as the answer
Probably. You'll have to check all of your usergroups to make sure they don't have "can avoid flood control" enabled.
-
xzoex's post in Ajax Thanks - Hide Content [Problem] was marked as the answer
Did you do the edit in the readme file? In case you don't have it its:
Open /admin/sources/classes/text/parser/bbcode/tbHideContent.php
Find:
$existing[ $this->topic['tid'] ] = ( intval($hideCheck['pid']) > 0 ) ? true : false;Add Below:
// [EN34] Ajax Thanks v1.0.8 if ( $this->settings['en30_ajaxthanks'] && $this->settings['en30_ajaxthankshidehack'] && ! $existing[ $this->topic['tid'] ] && $this->memberData['member_id'] ) { $this->DB->build( array( 'select' => 'thankers', 'from' => 'posts', 'where' => 'topic_id='.$this->topic['tid'] ) ); $this->DB->execute(); while( $row = $this->DB->fetch() ) { if ( $row['thankers'] != "" ) { $thankers = unserialize( stripslashes( $row['thankers'] ) ); foreach ( $thankers as $id => $name ) { if ( $id == $this->memberData['member_id'] ) { $existing[ $this->topic['tid'] ] = true; break; } } } if ( $existing[ $this->topic['tid'] ] ) { break; } } } // [EN34] Ajax Thanks v1.0.8That's the one to stop the content disappearing. The one I quoted in my post above is just to stop the content repeating if you are using a custom skin.
-
xzoex's post in CODE bbcode with scrollbar was marked as the answer
In your admin panel go to Look and feel and click on your skin, then click the CSS tab. Open ipb_common.css and look for
pre.prettyprint, code.prettyprint {and addmax-height: 200px; underneath (change 200px to suit you) -
xzoex's post in IPB Search Problem was marked as the answer
In your admin panel go to Other Apps - Content - Settings - Basic Settings and scroll down to the bottom then change Search Default.
-
xzoex's post in How to manage automatic foto for banned members? was marked as the answer
You could use this http://community.invisionpower.com/files/file/6137-default-photo-per-group/ not sure if its here but if not I can upload it if you don't have a licence?
-
xzoex's post in Forced skin changes... was marked as the answer
You don't need a hook, its built in Go to Look and Feel and then click "Manage URL Mapping" in the dropdown next to the skin you want to force.
-
xzoex's post in *Help* What app is that? was marked as the answer
http://webflake.sx/files/file/268-dp32-forum-icons/ -
xzoex's post in host migration was marked as the answer
Could you have setup friendly urls and forgotten to replace the .htaccess?
-
xzoex's post in TB Moods - Problem with mickey mouse logo (HELP) was marked as the answer
You need to upload icon_moods.png to the folder of the skin you are using.
-
xzoex's post in error to start a new topic was marked as the answer
Did you install a language pack? Someone had the same issue here http://community.invisionpower.com/resources/bugs.html/_/ip-board/getting-php-warning-warning-sprintf-functionsprintf-too-few-arguments-r42325
-
xzoex's post in Enabling Statuses on IPB was marked as the answer
They should be enabled by default, check in usergroup settings under the global tab and make sure "Remove Status Update ability" is set to no.
-
xzoex's post in Users online - how long ago instead of time was marked as the answer
Go to 'System Settings > Advanced > Date, Time and Number Formats' and change it in the dropdown where it says Use relative dates.
-
xzoex's post in Problem with Moderating team page was marked as the answer
Sorry, I didn't notice Its because of the group_strip template like you suggested and the fix is here http://community.invisionpower.com/resources/bugs.html/_/ip-board/moderating-team-page-fatal-error-r36350 -
xzoex's post in Magnet links for downloads? was marked as the answer
There's a paid hook http://www.tezaurul-ortodox.com/store_scripts/ not sure if it works with 3.4 though, it only says 3.1/3.2 are supported.
-
xzoex's post in Remove Auto Friend Approval by default. was marked as the answer
Its answered in this topic
-
xzoex's post in Shoutbox Tab Problem was marked as the answer
I think he or she is saying the page redirects to home when they try to do it that way. Not sure why it would though, maybe something in .htaccess?
You should be able to hide it with phpmyadmin in core_applications.
-
xzoex's post in How to edit default profile settings? was marked as the answer
Its answered here http://community.invisionpower.com/topic/317998-resolved-how-to-disabled-friends-approval-by-default/?p=1999493&hl=profile default friends&fromsearch=1 In case you can't access the thread run these two queries
UPDATE ibf_profile_portal SET pp_setting_moderate_friends=1;ALTER TABLE ibf_profile_portal CHANGE pp_setting_moderate_friends pp_setting_moderate_friends TINYINT( 1 ) NOT NULL DEFAULT '1';You'll have to change ibf to your database prefix. -
xzoex's post in The Moderating Team Page was marked as the answer
I think your skin must need to be updated. There's a manual fix here http://community.invisionpower.com/resources/bugs.html/_/ip-board/moderating-team-page-fatal-error-r36350
-
xzoex's post in Urgent Help with upgrading was marked as the answer
It doesn't sound like you've actually got to upgrading yet then. What happens when you go to http://yoursite.com/admin ? edit: did you rename the admin folder in the files you downloaded before you uploaded to your ftp? Also you would have to try to go to
http://yoursite.com/youradmindirectoryand not what I said above. -
xzoex's post in Error: Could not load template 'metaEditor' from group 'global' was marked as the answer
Did you just convert from phpBB? If so theres a thread and fix here http://community.invisionpower.com/topic/342992-template-error-during-conversion/ If not have you tried rebuilding and recaching your skins?