Advertisement
TJ.
-
Posts
268 -
Joined
-
Last visited
-
Days Won
13
Community Answers
-
TJ.'s post in "There was a problem loading this content" was marked as the answer
Are you just experiencing this issue with just one user? Also what theme are you using, and does this issue replicate on the default theme?
-
TJ.'s post in Flashing Text BBCode was marked as the answer
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.
-
TJ.'s post in How do I remove "COPPA" ? was marked as the answer
This question has been answered numerous times on WebFlake. Here's a link to one of the resolved topics regarding this issue:
-
TJ.'s post in Forum based 404 on Home page? was marked as the answer
Hmm.. I always refer to this tutorial for setting IP.Content as my homepage
http://community.invisionpower.com/resources/documentation/index.html/_/tutorials/content/make-ipcontent-your-home-page-r174
-
TJ.'s post in Swapping IPB Files was marked as the answer
Backup all your files and MySQL server Download whatever IP.Board version you wish to use Extract the .zip file your board came in Navigate to the "Upload" folder Simply upload the contents of this folder to your board directory via your FTP client. You will be overwriting files. Run the upgrade script by going to: domain.tld/admin/upgrade Follow the on-screen instructions until the process is complete.
Remember, your posts and threads are stored within the MySQL database rather than in files in the board directory. This goes for members as well, it is all saved within the database.
-
TJ.'s post in Connection with the database was marked as the answer
Topic Creator has managed to solve the issue on his own.
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. -
TJ.'s post in Help with cke_editor after new skin installation was marked as the answer
There are two methods you can attempt to resolve this issue
Go to ACP -> Look & Feel -> choose skin -> Manage Template & CSS - Editor and click Revert EditorloadJS
Or, add the following to the EditorloadJS template
<script type="text/javascript">IPS_extra_plugins = [];</script> [
-
TJ.'s post in Pulling my hair out! Please assist... was marked as the answer
Hello Macfionn,
What you are looking at is 'permission sets', not member groups. When you created your new groups, you probably selected to use an existing permission set rather than create a new one. Within your ACP, edit your newly created group and scroll down to Permissions where you can type in a new permission set name. You can create seperate ones, or you can make all your new groups share the same set.
Regards,
TJKeeran
-
TJ.'s post in There is an error with your Twitter application settings was marked as the answer
How to set up Twitter Connect
First, you must create a Twitter application by visiting this URL.
You must have a Twitter account to create an application.
You will be presented with a form asking for some information about your "application":
Fill in the form with the following information:
Application Icon, Application Name, Application Description
You can fill these settings in as you desire to represent your community.
Application Website
This should be the main URL to your community. For example, we would enter http://webflake.sx/
Organization, Website
If applicable, you can fill these in, or leave them blank. For example, we would enter "Invision Power Services" for Organization and "http://www.webflake.sx/" for Website.
Application Type
This should be set to "Browser".
Callback URL
This should be set to your community's URL, followed by "/interface/twitter/index.php". For example, we would enter
http://webflake.sx/interface/twitter/index.php Default Access type
This should be set to "Read & Write".
Use Twitter for login
You must tick this box.
Once you have filled in the form successfully, you will be shown a screen, which has two important keys:
On your IP.Board installation, go to Admin CP --> System Settings --> Twitter Connect. Toggle the "Enable Twitter Connect" setting to yes, and enter the "Consumer Key" and "Consumer Secret" keys into the spaces provided.
Once you have saved these settings, Twitter Connect should be set up successfully on your community.
[source: http://community.invisionpower.com/resources/documentation/index.html/_/tutorials/general-tutorials/twitter-connect-r349]
-
TJ.'s post in How do I make new registrations automatically go into a certain group? was marked as the answer
1) Launch Your Ftp Client.
2) Navigate to your board index.
3) Once there, open up the file "conf_global.php"
4) Inside that file, find the line:
$INFO['member_group'] = '3'; 5) And replace the "3" with the group id you wish to become the default member group.
6) Save and reupload the file "conf_global.php".
7) You're done, enjoy your changes.
*Note: To find the Group ID, go to:
ACP > Members > Member Groups > Manage Member Groups And you should see in parentheses the ID of each group next to their name.
-
TJ.'s post in How can i make this into a bbcode was marked as the answer
Just turned it into a BBCode for you. Here's the download link:
-
TJ.'s post in What modification is this? (of this forum) was marked as the answer
Go into ACP > Look & Feel > Manage Skin Sets & Templates > {your skin} > Edit Replacement Variables and replace the following with
<span class='ipsBadge ipsBadge_orange' style='vertical-align: top; margin-left: 5px;'>NEW</span> f_cat_unread f_pass_unread f_unread t_unread t_unread_dot f_newpost -
TJ.'s post in Remove email verfi? was marked as the answer
Hello,
To remove EMail Validation for new users, you must go to ACP > System Settings > System > Security and Privacy and scroll down until you see New Registration email validation and change it to None.
-
TJ.'s post in Change Highlight colour On IPB? was marked as the answer
Look & Feel > Manage Skin Sets & Templates
And edit your themes css, it is in "ipb_styles.css".
This is how it looks like in my ipb_styles.css for fresh import of Animate:
a:hover { color: #b4eeff; } ::-moz-selection { color: #fff; background: #757575; } ::selection { color: #fff; background: #757575; } You need to change this last line, background color (background: #757575).
-
TJ.'s post in Looking for a IPB hook/app was marked as the answer
Have a look here: http://webflake.sx/files/file/251-bbcode-warning-success-information-error/
-
TJ.'s post in [Help] Rainbow Username was marked as the answer
Hello Trahk,
Go to your ACP > Look & Feel > Your Skin > globalTemplate
At the bottom of your template look for something like <!-- ::: Footer ::: --> and insert this:
<script> var speed=80 var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0") var r=1 var g=1 var b=1 var seq=1 function changetext(){ for(i=0;i<document.getElementsByName("Rainbow").length;i++){ var storetext=document.getElementById? document.getElementsByName("Rainbow")[i] : document.all.highlight rainbow="#"+hex[r]+hex[g]+hex[b] storetext.style.color=rainbow } } function change(){ if (seq==6){ b-- if (b==0) seq=1 } if (seq==5){ r++ if (r==12) seq=6 } if (seq==4){ g-- if (g==0) seq=5 } if (seq==3){ b++ if (b==12) seq=4 } if (seq==2){ r-- if (r==0) seq=3 } if (seq==1){ g++ if (g==12) seq=2 } changetext() } function starteffect(){ if (document.all||document.getElementById) flash=setInterval("change()",speed) } starteffect() </script> Click save, and head over to Members > Member Groups > Manage Member Groups > Click on the group you wish to have the rainbow effect
For the group prefix enter:
<span name="Rainbow"> And for group sufix:
</span> Press Complete Edit and you should be good.
-
TJ.'s post in IP.Nexus Error was marked as the answer
Just got done with a TeamViewer session with Reptiles. The error was found to be that he was dragging and dropping straight from the rar to the FTP client rather than extracting the files and then uploading.
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. -
TJ.'s post in IPB Shoutbox background was marked as the answer
Hello,
In your Global Shoutbox Settings, tick the box that says HTML and add this code
<table> <tr> <td></td> <td rowspan=2><img src="pic.jpg"></td> </tr> <tr> <td colspan=2>This is the overlay text</td> </tr> </table> -
TJ.'s post in IP.Content default app was marked as the answer
Take a peak at the instructions on this page.
http://community.invisionpower.com/resources/documentation/index.html/_/tutorials/content/make-ipcontent-your-home-page-r174
-
TJ.'s post in Mass removal of warning points was marked as the answer
What about using SQL query to set all values in the warning points column to zero? Would that suffice?
UPDATE members SET warn_level = '0' WHERE warn_level != '0'; -
TJ.'s post in Images are Corrupt was marked as the answer
One thing I've found helpful when I find corrupt images is to right click on the corrupt icon and click "Open image in new tab" and look at the link in the address bar. Using this information, access your server with your favorite FTP client and locate the image path. If the image isn't there, then you should move your image there. If it is there, try to download it and open it on your local machine to tell if it is corrupt or not. If you find it is not corrupt, take a look at the file permissions for each photo.
-
TJ.'s post in Moderators cannot view active reports was marked as the answer
Have you checked your permission sets to ensure that the Moderators have access to view the reports?
Should look something like this: