Thanks!  Got it to work!

alright il see what i can do...

If worse comes to worse where do i edit the 3 pm parts in the install_mod.php file?

kinda...

i just did a full backup with your plugin,
but didnt select any of the mods like polls, messageing, uploads, ect because the database was getting messed up so i wanted to start clean..  Can you help?

Cows

cause while i was updating the forums from 1.2.2 to 1.2.4 it got a little messed up so i didnt cary over the mods...

connorhd,

will you release for 1.2.4???  I have tried changing the install_mod.php but it just said

could not write to the config file

Cows


i posted this before but noone seemed to care about me lol

here is exact problem it says

Unable to insert into table config. Please check your configuration and try again. Go back.

what would you do to edit it so the line is removed?

connorhd,

will you release for 1.2.4???  I have tried changing the install_mod.php but it just said

could not write to the config file

Cows

alright it works but now i got one more problem....  The names are underlined in blue...  Sign up and see what i mean

www.infernocc.net/forums/index.php

mine is working fine...  Works perfect!

im running punbb 1.2.4

and i get an error in the index.php

Here is the error word for word

Parse error: parse error, unexpected T_ELSE in /home/infern79/public_html/forums/index.php on line 192

and it only dost work when i

#---------[ 33. FIND (line:187) ]---------------------------------------------------
#

$users[] = "\n\t\t\t\t".'<dd><a href="profile.php?id='.$pun_user_online['user_id'].'">'.pun_htmlspecialchars($pun_user_online['ident']).'</a>'

#
#---------[ 34. REPLACE WITH ]---------------------------------------------------
#

$users[] = "\n\t\t\t\t".'<dd><a href="profile.php?id='.$pun_user_online['user_id'].'"><span style="color: '.$pun_user_online['color'].'">'.pun_htmlspecialchars($pun_user_online['ident']).'</span></a>';

#

help please
Cows

well how do i comply delete the color groups mod...  It got all screwed up when i was trying to test it on 1.2.3...  Help

How do i back up my database without anymods on the backup...  I want all the posts and the users to be backedup but no mods...  I cant figure out how to uninstall the color usegroup mod from the mySQL database...  Help please

Cows

so what is global announcement??  Is that your plugin connorhd

64

(2 replies, posted in Programming)

ya i think...  I saw a tutorial but i cant get the thing to work

so is this punpoll

66

(1 replies, posted in PunBB 1.2 troubleshooting)

ok ive done everything but some people on my site are complaining that they cant edit their posts unless they turn off their firewall...  Is there a way to stop this from gagin up?

Can someone please help me out????

68

(5 replies, posted in PunBB 1.2 show off)

ok...  Thanks

so is this that little announcement box you have on all your pages??

70

(5 replies, posted in PunBB 1.2 show off)

i dont know....

I guess im a stupid person

also why do my posts have a little dot next to them???

71

(5 replies, posted in PunBB 1.2 show off)

well here is an attempt to my forums big_smile

I have the following mods and a few extras

-punn poll
-uploader
-a downloads section
-arcade (kinda done..  Not really)
-forums
-2000 + posts
-44 users
-Private message system
-user ranks
-and some other stuff

Please join and post around big_smile

Cows

P.S.  We have one topic/thread and it has 1000+posts in it lol

Where is the part where u color the usergroups???

Which php file is it???

73

(2 replies, posted in Programming)

can someone help me repair this class loader???

public static void loadScripts(mudclient m1, String directory) {
        System.out.println("Loading scripts...");
        macroTable = new Hashtable();
        File f = new File(directory);
        if (!f.exists()) {
            System.out.println("Script directory does not exist!");
            return;
        } else {
            String[] files = f.list();
            for (int i=0;i<files.length;i++) {
                try {
                    if (files[i].endsWith(".class") && files[i].indexOf("$") == -1) {
                        System.out.print("Script found, registering command...");
                        Class c = Class.forName(files[i].substring(0,files[i].length()-6));
                        Script s = (Script)c.getConstructor(new Class[]{mudclient.class}).newInstance(new Object[]{m1});
                        
                        String[] commands = s.getCommands();
                        for (int j=0;j<commands.length;j++) {
                            macroTable.put(commands[j], s);
                        }
                        System.out.println("done!");
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                    e.toString();
                }
            }
        }
        System.out.println("done!");
    }

then here is my Script.java file

public class Script {
  public mudclient globalRs;

  public abstract String[] getCommands();
  public abstract boolean start(String name, String[] args);
  public abstract void init();
  public abstract void run();
  public abstract void stop();
  public Script(mudclient rs) {
    globalRs = rs;
  }
}

Help

Cows

lol....  Im not the best php editor....

Connorhd,

how can i make it have 10 poll buttons instead of 8??