XMB Forum Software

[Resolved] Help.

Plastic - 9-11-2012 at 08:47 PM

Full Board URL: http://www.heybritneyforums.com
XMB Version: 1.9.11

Hi guys, I have some issues and i need help with that.

1. I don't why in the Spanish language when users are browsing the index the invisible members are missing in the who's online table. Example: http://www.abload.de/img/pljhgfuxufx.jpg

2. Since I installed this hack everytime when we tried to click the link to return to the forum index we're redirected to the portal instead. Example: http://www.abload.de/img/pljhgf1ivu68.jpg

3. Anyone knows a raw SQL code -like this- to force all members to use the default theme option?.

That's all guys, I would really appreciate it if anybody could help me.

Plastic - 9-19-2012 at 09:48 PM

Bump. :(

lottos - 9-19-2012 at 10:37 PM

Quote: Originally posted by Plastic  
Full Board URL: http://www.heybritneyforums.com
XMB Version: 1.9.11

Hi guys, I have some issues and i need help with that.

3. Anyone knows a raw SQL code -like this- to force all members to use the default theme option?.

That's all guys, I would really appreciate it if anybody could help me.





Backup xmb_members table first, then if your default theme is 0

update xmb_members set theme = '0' where status = 'Member'


Also in your Admin panel, go to Templates, choose the Footer template, look for
http://www.xmbforum.com/

and replace with:
http://www.xmbforum2.com/

Daniel Gouveia - 9-19-2012 at 11:01 PM

Quote: Originally posted by Plastic  
Full Board URL: http://www.heybritneyforums.com
XMB Version: 1.9.11

Hi guys, I have some issues and i need help with that.

1. I don't why in the Spanish language when users are browsing the index the invisible members are missing in the who's online table. Example: http://www.abload.de/img/pljhgfuxufx.jpg


Go to: Administration Panel » Translations » Spanish » Detalles

click edit and find: whosoneval

Replace by this:
$lang["whosonmsg"] = "$guestn, $membern y $hiddenn están conectados ahora.";

Quote: Originally posted by Plastic  
2. Since I installed this hack everytime when we tried to click the link to return to the forum index we're redirected to the portal instead. Example: http://www.abload.de/img/pljhgf1ivu68.jpg


Edit file "include/functions.inc.php"

Find this:

Code:
if (empty($add) or empty($links)) $links = array('<a rel="v:url" property="v:title" href="./">'.$SETTINGS['bbname'].'</a>');


Replace by this:

Code:
if (empty($add) or empty($links)) $links = array('<a rel="v:url" property="v:title" href="index.php?forums">'.$SETTINGS['bbname'].'</a>');


Quote: Originally posted by Plastic  
3. Anyone knows a raw SQL code -like this- to force all members to use the default theme option?.


lottos give you the solution.

Enjoy it

Plastic - 9-21-2012 at 05:03 PM

Thank you so much lottos and Daniel.