Jump to content

Brynner

Members
  • Posts

    1962
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by Brynner

  1. change your msgstring.txt. there is already a english translated release here.
  2. But if you will not find other way to create safe area you can implement cell_basilica again using changeset hmmm what do you mean?revert back the changes on that revision? bump for this topic.
  3. thanks its working now. as of now there are no bugs.
  4. oh ok thank you. i test it later. there is a bug. there a no more display on the user list now after updating it.
  5. yah since it was initial testing. expect lots of bug. ill update you if i found another bugs or problems. quick fix for user list problem when changing page but not updating the user list. on themes themes\default\fluxbb\userlist.php find $username = isset($_POST['username']) && $pun_user['g_search_users'] == '1' ? pun_trim($_POST['username']) : ''; $show_group = isset($_POST['show_group']) ? intval($_POST['show_group']) : -1; $sort_by = isset($_POST['sort_by']) && (in_array($_POST['sort_by'], array('username', 'registered')) || ($_POST['sort_by'] == 'num_posts' && $show_post_count)) ? $_POST['sort_by'] : 'username'; $sort_dir = isset($_POST['sort_dir']) && $_POST['sort_dir'] == 'DESC' ? 'DESC' : 'ASC'; replace $username = isset($_GET['username']) && $pun_user['g_search_users'] == '1' ? pun_trim($_GET['username']) : ''; $show_group = isset($_GET['show_group']) ? intval($_GET['show_group']) : -1; $sort_by = isset($_GET['sort_by']) && (in_array($_GET['sort_by'], array('username', 'registered')) || ($_GET['sort_by'] == 'num_posts' && $show_post_count)) ? $_GET['sort_by'] : 'username'; $sort_dir = isset($_GET['sort_dir']) && $_GET['sort_dir'] == 'DESC' ? 'DESC' : 'ASC'; find // Determine the user offset (based on $_POST['p']) $num_pages = ceil($num_users / 50); $p = (!isset($_POST['p']) || $_POST['p'] <= 1 || $_POST['p'] > $num_pages) ? 1 : intval($_POST['p']); replace // Determine the user offset (based on $_GET['p']) $num_pages = ceil($num_users / 50); $p = (!isset($_GET['p']) || $_GET['p'] <= 1 || $_GET['p'] > $num_pages) ? 1 : intval($_GET['p']); find <form id="userlist" method="post" action="?module=fluxbb&action=userlist"> replace with this. <form id="userlist" method="get" action="?module=fluxbb&action=userlist">
  6. problem solve. just edit the addons. fluxbb\themes\default\fluxbb\install.php find $base_url .= str_replace('\\', '/', dirname($_SERVER['SCRIPT_NAME'])).'?module=fluxbb'; // path just add the / $base_url .= str_replace('\\', '/', dirname($_SERVER['SCRIPT_NAME'])).'/?module=fluxbb'; // path to avoid any problem. there is another bug sir. when you try to look on the user list. when you click the other page. it will bring you there but user list not changing.
  7. finally it's working now. how can i set it automatically to /ro/?module=fluxbb with /
  8. the login issue is now solve after i apply your diff patch. the problem now is i cannot change anything on the forum. it gave me this error. on my screenshot. i set it to http://127.0.0.1/ro/?module=fluxbb when i try to change anything that's the problem i got.
  9. thanks it works not the login screen. this is the last issue that i had.
  10. still having a problem on login sir. but if i access the folder fox fluxbb i can login there using my account. my account on fluxcp is already login but on fluxbb forum You are not logged in. sir can you make a diff patch for this? i've notice this problem everytime i login on the forum using the direct path. Page Not Found The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again. /fluxcp_location/?module=fluxbb/index.php
  11. why i always got this problem? Info Bad HTTP_REFERER. You were referred to this page from an unauthorized source. If the problem persists please make sure that 'Base URL' is correctly set in Admin/Options and that you are visiting the forum by navigating to that URL. More information regarding the referrer check can be found in the FluxBB documentation. i test it on my local computer. i got error when trying to change password. Server error The website encountered an error while retrieving http://127.0.0.1/ro/?module=account&action=changepass. It may be down for maintenance or configured incorrectly. Here are some suggestions: Reload this webpage later. HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request. and sir after i login on your demo site. when i close the site and try to visit it again i got Error / FluxBB
  12. wow thanks for this. sir how can i make it just like on yours? the forum was included on your fluxcp not bring you on the page. sir there is a problem regarding on clicking the login or register. it redirect me to this none existing page. fluxcp/trunk/?module=account&action=login fluxcp/trunk? this is not the location of my fluxcp there is a bug sir on your themes\default\fluxbb\header.php if ($pun_user['is_guest']) { $links[] = '<li id="navregister"'.((PUN_ACTIVE_PAGE == 'register') ? ' class="isactive"' : '').'><a href="/fluxcp/trunk/?module=account&action=create">'.$lang_common['Register'].'</a></li>'; $links[] = '<li id="navlogin"'.((PUN_ACTIVE_PAGE == 'login') ? ' class="isactive"' : '').'><a href="/fluxcp/trunk/?module=account&action=login">'.$lang_common['Login'].'</a></li>'; } else { $links[] = '<li id="navprofile"'.((PUN_ACTIVE_PAGE == 'profile') ? ' class="isactive"' : '').'><a href="?module=fluxbb&action=profile&id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a></li>'; if ($pun_user['is_admmod']) $links[] = '<li id="navadmin"'.((PUN_ACTIVE_PAGE == 'admin') ? ' class="isactive"' : '').'><a href="?module=fluxbb&action=admin_index">'.$lang_common['Admin'].'</a></li>'; $links[] = '<li id="navlogout"><a href="/fluxcp/trunk/?module=account&action=logout" onclick="return confirm(\'Are you sure you want to logout?\')">'.$lang_common['Logout'].'</a></li>'; } the /fluxcp/trunk/ should not be included there. and also i've noticed that i cannot login on the forum. i also try it on your sample. same i can't login on the forum. Register and login links in header already fixed. Thank you In regards to the creation of an account, sorry but I forgot to update the create.php in my live host it's already updated now. I'm working now on account sync plugin what do you mean by this? sir i'm having a problem on login. i just try same of your. i can login on the fluxcp but on the forum. still not login. here is my screenshot. this is happen on my fluxcp and your's. i can't login on the forum. sir i figure out something. to make login on forums. you must directly access fluxbb folder. for example. http://artworx.juplo.com/fluxbb now i can login. but if its directly on http://artworx.juplo.com/?module=fluxbb it will not let you login on the forum only on the site.
  13. wow thanks for this. sir how can i make it just like on yours? the forum was included on your fluxcp not bring you on the page. sir there is a problem regarding on clicking the login or register. it redirect me to this none existing page. fluxcp/trunk/?module=account&action=login fluxcp/trunk? this is not the location of my fluxcp there is a bug sir on your themes\default\fluxbb\header.php if ($pun_user['is_guest']) { $links[] = '<li id="navregister"'.((PUN_ACTIVE_PAGE == 'register') ? ' class="isactive"' : '').'><a href="/fluxcp/trunk/?module=account&action=create">'.$lang_common['Register'].'</a></li>'; $links[] = '<li id="navlogin"'.((PUN_ACTIVE_PAGE == 'login') ? ' class="isactive"' : '').'><a href="/fluxcp/trunk/?module=account&action=login">'.$lang_common['Login'].'</a></li>'; } else { $links[] = '<li id="navprofile"'.((PUN_ACTIVE_PAGE == 'profile') ? ' class="isactive"' : '').'><a href="?module=fluxbb&action=profile&id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a></li>'; if ($pun_user['is_admmod']) $links[] = '<li id="navadmin"'.((PUN_ACTIVE_PAGE == 'admin') ? ' class="isactive"' : '').'><a href="?module=fluxbb&action=admin_index">'.$lang_common['Admin'].'</a></li>'; $links[] = '<li id="navlogout"><a href="/fluxcp/trunk/?module=account&action=logout" onclick="return confirm(\'Are you sure you want to logout?\')">'.$lang_common['Logout'].'</a></li>'; } the /fluxcp/trunk/ should not be included there. and also i've noticed that i cannot login on the forum. i also try it on your sample. same i can't login on the forum.
  14. getitem 674,2 just change the 2 into 4.
  15. hmmm revert what we changes before check if the script still getting errors.
  16. we didn't change anything on line 2.
  17. can you post the error you've got.
  18. hmmm as of now. the client 2012-01-04bragexe have no crashing issue regarding on cash shop. below that client date the Ragexe cash shop function is not applicable. and also not recommended client because when you clicked the cash shop. client crashed. and about on RagexeRE. i'm not sure. i'm not using it anymore. and for the patcher. there are no big changes on it. you can still use the old one.
  19. what do you mean wrong? just add more timer timer should starts on OnClock0100: and finish until OnClock2400:
  20. Ragray/Miruku they are both out dated client now. you should use this. http://www.nickyzai.com/?p=kro since we started to use the Ragexe now.
  21. you can use it on pre-re or renewal. on your config\servers.php 'Renewal' => false,
  22. always mark the topic solve if its already solve thanks.
×
×
  • Create New...