Jump to content

Loki

Members
  • Posts

    22
  • Joined

  • Last visited

    Never

Everything posted by Loki

  1. are you using this version? http://downloads.sourceforge.net/ajax-chat/ajax_chat-0.8.1.2_phpBB3.tar.gz?modtime=1206204156&big_mirror=0
  2. Check your htaccess settings.
  3. I personally like NuSphere PhpED, I have tried almost everyone listed and it pretty much is the best out for new and advanced users.
  4. Yea I have NuSphere PhpED which can do that. Thanks for the info. I guess I will just break down and write a script to do. I am just lazy though. lol.
  5. I do not know if one exists but does anyone know a program that can edit multiple php files at once to add copyright info to the top of each file without having to go through thousands of files to add it manually? This would make my life so much easier. :'( Would be so nice to just drop a folder with all the files in it and paste the copyright code in a box below that was needed to be added and it automatically adds it to the top of each file in the folder. If such a program exists please post the name of it. Thanks
  6. Does it have a config file that you have to set the database info in? I would have to look at the module to see how it draws its info. I see what you are trying to do tho. You are wanting a separate module for each game but all modules to have individual tables in a database separate from your nuke database?
  7. hehe, you also misspelled install. As Semi said try changing your link to http://YOUR-SITE-URL/forums/install/install.php Of course YOUR-SITE-URL would need to be the address to your site
  8. Add the following line to a .htaccess file and place it in your root PHP-Nuke directory: PHP_FLAG output_buffering on or if you have access to php.ini, set: output_buffering=on;
  9. What module is it you are wanting to use? Is the module setup to draw info from a separate database? Also why do you want it to draw from another database? It can be done, an example would be the Donations module but it would need to be initially coded that way.
  10. read through this and it should help you. http://www.phpbb.com/support/guide/
  11. Are you wanting to add an advertisement banner to the user registration page?
  12. The easiest way would be to just add it to the overall_header.tpl file.   Find the templates/ClanDarkness2/overall_header.tpl file and open it and find this section of code toward the bottom of the file.  It is included in a much longer line, but that is the part you need to find. [code]<span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">[/code] Just before that code add this code,of course you will need to change the http://www.yoursite.com to your actual home page link first tho. [code]<span class="mainmenu"><a href="http://www.yoursite.com" class="mainmenu">Home</a></span>&nbsp;&nbsp;[/code] After you have added it it should look like this. [code]<span class="mainmenu"><a href="http://www.yoursite.com" class="mainmenu">Home</a>&nbsp;</span>&nbsp;&nbsp;<span class="mainmenu"><a href="{U_REGISTER}" class="mainmenu">[/code] That will put a link called "Home"  right next to your Register link. ;)
  13. I havent tested this one,  but this one might work for you. http://www.phpbb.com/phpBB/viewtopic.php?t=209687&view=next&sid=e769f860904f88af2f83ee0145dc810d
  14. I would have to see more of the code but It looks like you didnt put a check if they are not that level.  You can try a code similar to this that once it checks the user level, if they are not in it then it will display a message to them. of course your variable $level would be whatever level you want to access that area. if (!isLevel($level)){ die("You are not allowed to access this area!!"); } Or you could do a redirect somewhere if they are not in that level. if(!isLevel($level)){   Header("Location: whereever_you_want _to_redirect_them.php");         die();     }
  15. Just move all your files into a folder called forums and put an html page called index.html page in the root with a link to your forums.  The only change you would have to make is changing the url settings in the admin config area from yoursite.com  to yoursite.com/forums.  Pretty simple actually.
  16. http://www.phpbbhacks.com/searchresults.php?version=2&query=view+latest+posts&search_type=1
  17. Ok Im a noob when it comes to mysql, so this might be a stupid question.  Ok can this be integrated  into a CMS type package to where the database and mysql be pre-setup and distributed all together without the need for sql access to the host server?  Did that make sense?
  18. If your just looking for a stand alone forum, I would highly recommend SMF.  Although I run integrated phpbb forums in my CMS, I probably would not run phpbb as stand alone do to the security issues.
  19. Are you wanting to add some new fields to the registration page? 
  20. Are you sure its actually up? because I wouldn't want to keep posting in it if it wasn't actually up yet..... hehe
  21. lol well you might as well put this forum up since alot of the posts are about third party scripts anyway. I can offer support for phpnuke questions if the need arises. That should take the stress off of toplay hehe. sorry Bro just had to go there
  22. DW is what i normally use, but a good free editor is ConTEXT, which has a syntax highlighter in it.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.