Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 133,845
» Latest member: roben1110
» Forum threads: 176,961
» Forum posts: 1,239,745
Full Statistics
|
|
|
Username, Password & CSS |
Posted by: ---DMD--- - 2010-09-10, 08:39 AM - Forum: 1.6 General Support
- Replies (18)
|
|
Hi,
I've just installed mybb but already experiancing some problems. When I go to the board Index the CSS doesn't work or doesn't it come with CSS?
Also, when I just go onto different things it keeps prompting for my username and password which is really annoying. Is there a way you can edit the settings for this or disable it all together?
Thanks in advance if you can help.
|
|
|
Blank Page on install |
Posted by: jeffssig - 2010-09-10, 01:15 AM - Forum: 1.6 General Support
- Replies (2)
|
|
Hi
New install. 1.6
Uploaded all files
I go to /forum/install/ with my sites name up front.
All I see is a blank page.
What should I look for that might need changes?
Also I have just installed this on a diffrent site with the same host and have no problems.
Thanks
|
|
|
usergroup ranks |
Posted by: Heromal - 2010-09-10, 12:17 AM - Forum: 1.6 General Support
- Replies (2)
|
|
Can anyone tell me how to install coloranks for my forum? I downloaded it then uploaded the "upload" file to my forum root (public_html) but when i try to add the image it doesnt change...if someone could install it for me that works too.
coloranks @ community.mybb.com/thread-46371.html
|
|
|
do extended parsing and validation on mycodes |
Posted by: Boten Anna - 2010-09-09, 11:33 PM - Forum: 1.6 General Support
- Replies (3)
|
|
I have a relatively simple mycode I want to add to my forum but I cannot figure out the best facility to do that in mybb
Basically, it's a forum based on an online game and there is a service that when you make a link to something, a javascript include in the header file generates a mouseover that shows you item information. If you've ever played World of Warcraft, it's like what happens when you mouseover an item in your bag.
Now by default you can do [url] tags to do this, but it's kind of cumbersome. For example, here is a "Marmot Steak" recipe link:
<a href="http://ffxiv.yg.com/recipe/marmot-steak">Marmot Steak</a>
And with some cumbersome bbcode, it works:
[url=http://ffxiv.yg.com/recipe/marmot-steak]Marmot Steak[/url]
Now what I want to do is make a tag, [recipe], that accomplishes the same thing. In other words, typing [recipe]Marmot Steak[/recipe], the above link would be generated. We can get 90% of the way there easily:
New mycode regular expression: \[recipe\](.*?)\[/recipe\]
Replacement: <a href="http://ffxiv.yg.com/recipe/$1">$1</a>
The only issue, of course, is that the generated link is http://ffxiv.yg.com/recipe/Marmot Steak, when it should be http://ffxiv.yg.com/recipe/marmot-steak
Try as I might, I cannot figure out a way to actually transform the input, for example:
<a href="http://ffxiv.yg.com/recipe/<?php echo urlencode($1)?>">$1</a>
doesn't get me anywhere!
Is there any way to do this transformation within the mycode editor? If not, where would be the ideal place for a plugin hook?
Thank you
|
|
|
Quick Edit not Working |
Posted by: JohnMac - 2010-09-09, 09:38 PM - Forum: 1.6 General Support
- Replies (4)
|
|
When ever I click the edit button on my posts and go to 'Quick Edit' it doesn't do anything. I click it and it stays on the same place, doesn't move, try to load or anything. It has this when I hover over the link: javascript:;
Full edit works fine.
|
|
|
|