ok say the url was http://intenseplanet.com/extern.php?act … &fid=9 how do i show it in a table on the portal?

by the way i get this error where ever i put it

Warning: include() [function.include]: URL file-access is disabled in the server configuration in /home/.greycloak/nick123456789/intenseplanet.com/forum.php on line 217

Warning: include(http://intenseplanet.com/extern.php?act … &fid=9) [function.include]: failed to open stream: no suitable wrapper could be found in /home/.greycloak/nick123456789/intenseplanet.com/forum.php on line 217

Warning: include() [function.include]: Failed opening 'http://intenseplanet.com

is there a readme somewhere on how to add a table that shows up on my index of recent topics kinda like puntal where you can pick the forum id on where to show the recent topics

is there one released yet where you can pick the forum id on where to get the recent topics at.

28

(95 replies, posted in News)

after all changes are made from 1.2.13 to 1.2.14 what do you do? I did the changes and evrything looked [odd] like it was all centered [].
[Be nice -Smartys]

29

(16 replies, posted in PunBB 1.2 show off)

url changed. Also guys let me know how the skin is its HYI's skin edited.

yea i searched n found one but the dl link isn't working is there an updated one?

31

(16 replies, posted in PunBB 1.2 show off)

ty but i just edited hyi's style take a look n tell me how u like it? i just added image to the table.

32

(16 replies, posted in PunBB 1.2 show off)

was released on punres but yea ill end up deleting it

33

(16 replies, posted in PunBB 1.2 show off)

here is the plugins i have

Plugins

    * Private messaging
    * Cash Mod
    * Reputation
    * Polls
    * EasySmiles

any suggestions on mods that will make my site look better?

there is a mod you can search for and install that puts a yes or no option to open links in a new window

did not work error in line 266

chatbox.php doesnt have any of that code yikes

37

(16 replies, posted in PunBB 1.2 show off)

any more?

thanks i could probably kiss you right now

yeah i've tried a few things still can't get it any ideas?

here is the code http://www.uploadit.biz/download.php?fi … x57279.php

the header seems to work ok it doesn't go to the edit id its just the annoucement.

example - Forums » News & Annoucements » New Mod Installed - RPG Bucks. - Posted 2006-09-28 21:20:05  » Cursed

ok that above is an annoucement on my forums it all works except when i try to click 'New Mod Installed - RPG Bucks' (the topic title) instead of linking to the actual topic id it links to the edit id

in other words the id to the topic 'new mod installed - rpg bucks.' is 57 the edit id is 291 instead of going to the topic id it uses the edit id so it says Bad request. The link you followed is incorrect or outdated. Because it goes to http://leetskype.com/viewtopic.php?id=291 instead of http://leetskype.com/viewtopic.php?id=57

i hope i explained it clear enough smile

it does this for every annoucement i make btw

also i have a question how do you make admins usernames go Red and mods etc instead of having it say [Admin]

http://eliteupload.com/

index is based off alecks little mod that i tweaked a little bit to add some tables but please suggest something that i can add on the index or a new punbb mod that i dont already have that would be a great addition.

this is what i have so far on plugins

# Global topic
# Example
# Article
# Broadcast Email
# Calendar Settings
# Cash Mod
# Clear Cache
# DB management
# Image Upload
# Languages and styles
# Merge
# Polls
# Reputation
# User management

i tried it out i fixed the install mod like the guy a couple of posts above me n it didn't work right well it worked but tings were out of place its hard to explain, that read me is really hard to follow could some1 update it tongue

i my self can't code php for crap i just use readme's but i found this on the site its a shop mod for some other type of point system, could anyone smart possibly make this shop work with pandarks cash mod 1.2?

heres the topic of his cash mod http://www.punres.org/viewtopic.php?id=1276

let me know if it can or can't be done ty smile

heres the code

<?php

// This is by me, myself, and I, all written from scratch.

define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';

if ($pun_user['g_read_board'] == '0' || !$pun_config['o_pms_enabled'] || $pun_user['is_guest'])
    message($lang_common['No permission']);
    
$page_title = pun_htmlspecialchars($pun_config['o_board_title']).' / Store';
require PUN_ROOT.'header.php';

//Get your points
$result = $db->query('SELECT points FROM '.$db->prefix.'users WHERE id='.$pun_user['id']) or error('Unable to fetch points', __FILE__, __LINE__, $db->error());
$your_points = $db->result($result);

//Get donatee
if(isset($_GET['user'])) $user=$_GET['user'];
else $user='';

//Donating?
if(isset($_POST['donatee']) && isset($_POST['points']) && is_numeric($_POST['points']))
{
    $donatee=pun_trim($_POST['donatee']);
    $donatee=addslashes($donatee);
    $donate_amount=$_POST['points'];
    $donate_amount=addslashes($donate_amount);
    if($donate_amount<0) $donate_amount=0;
    if($donate_amount==0) message('And I thought that you were actually going to donate something.');
    $result = $db->query('SELECT id FROM '.$db->prefix.'users WHERE username=\''.$donatee.'\'') or error('Unable to fetch the donatees id', __FILE__, __LINE__, $db->error());
    $donatee_id = $db->result($result);
    $num = mysql_num_rows($result);
    if($num==0) message('That user does not exist.');
    $result = $db->query('SELECT points FROM '.$db->prefix.'users WHERE username=\''.$donatee.'\'') or error('Unable to fetch the donatees points', __FILE__, __LINE__, $db->error());
    $donatee_points = $db->result($result);
    
    if($donatee==$pun_user['username']) message("You cannot donate to yourself!");
    else 
    {
        if($donate_amount > $your_points) message("You don't have enough points!");
        else
        {
            $donatee_points += $donate_amount;
            $your_points -= $donate_amount;
            $db->query('UPDATE '.$db->prefix.'users SET points='.$donatee_points.' WHERE username=\''.$donatee.'\'') or error('Unable to give points to the donatee.', __FILE__, __LINE__, $db->error());
            $db->query('UPDATE '.$db->prefix.'users SET points='.$your_points.' WHERE id='.$pun_user['id']) or error('Unable to take away your points.', __FILE__, __LINE__, $db->error());
            
            $smilies=1;
            $subject = 'Donation from '.$pun_user['username'].'';
            $message = 'Congratulations, you have recieved a donation of '.$donate_amount.' points from '.$pun_user['username'].'.';
            $db->query('INSERT INTO '.$db->prefix.'messages (owner, subject, message, sender, sender_id, sender_ip, smileys, posted) VALUES(
            \''.addslashes($donatee_id).'\',
            \''.addslashes($subject).'\',
            \''.addslashes($message).'\',
            \''.addslashes($pun_user['username']).'\',
            \''.$pun_user['id'].'\',
            \''.get_remote_address().'\',
            \''.$smilies.'\',
            \''.time().'\'
            )') or error('Unable to send private message', __FILE__, __LINE__, $db->error());
            
            $message = "Congratulations, you have just sent $donate_amount points to $donatee. You now have $your_points points.";            
            redirect('store.php', $message);
        }
    }
}

//Changing your title
if(isset($_POST['your_title']))
{
    $cost = 250;
    if($cost>$your_points) message("You can't afford a title change");
    else $your_points -= $cost;
    $your_title = pun_trim($_POST['your_title']);
    $your_title = addslashes($your_title);
    $db->query('UPDATE '.$db->prefix.'users SET points='.$your_points.' WHERE id='.$pun_user['id']) or error('Unable to take away your points.', __FILE__, __LINE__, $db->error());
    $db->query('UPDATE '.$db->prefix.'users SET title=\''.$your_title.'\' WHERE id='.$pun_user['id']) or error('Unable to change your title.', __FILE__, __LINE__, $db->error());
    $your_title=pun_htmlspecialchars($your_title);
    $message = "Congratulations, you have changed your title to $your_title. You now have $your_points points.";            
    redirect('store.php', $message);
}

//Change another user's title
if(isset($_POST['donatee']) && isset($_POST['another_title']))
{
    $cost = 500;
    if($cost>$your_points) message("You can't afford a title change");
    $donatee=pun_trim($_POST['donatee']);
    $donatee=addslashes($donatee);
    $another_title = pun_trim($_POST['another_title']);
    $another_title = addslashes($another_title);
    $result = $db->query('SELECT id FROM '.$db->prefix.'users WHERE username=\''.$donatee.'\'') or error('Unable to fetch the donatees id', __FILE__, __LINE__, $db->error());
    $donatee_id = $db->result($result);
    $num = mysql_num_rows($result);
    if($num==0) message('That user does not exist.');
    if($donatee==$pun_user['username']) message("You cannot purchase this for yourself!");
    $your_points -= $cost;
    $db->query('UPDATE '.$db->prefix.'users SET points='.$your_points.' WHERE id='.$pun_user['id']) or error('Unable to take away your points.', __FILE__, __LINE__, $db->error());
    $db->query('UPDATE '.$db->prefix.'users SET title=\''.$another_title.'\' WHERE username=\''.$donatee.'\'') or error('Unable to change their title.', __FILE__, __LINE__, $db->error());
    $your_title=pun_htmlspecialchars($your_title);
    $message = "Congratulations, you have changed $donatee's title to $another_title. You now have $your_points points.";            
    redirect('store.php', $message);    
}
?>
<div class="block">
    <h2><span><?php echo 'Store' ?></span></h2>
    <div class="box">
            <div class="inbox">
                <fieldset>
                    <legend>Your Points</legend>
                    <div class="infldset">
                        You currently have <?php echo $your_points ?> points.
                    </div>
                </fieldset>
            </div>
            <div class="inbox">
                <fieldset>
                    <legend>Donate to Another User</legend>
                    <div class="infldset">
                        <form id="donate" method="post" action="store.php">
                        <label><strong>User's Name</strong><br />
                        <input type="text" name="donatee" value="<?php echo $user ?>" size="20" maxlength="30" /><br />
                        </label>
                        <label><strong>Points</strong><br />
                        <input type="text" name="points" value="" size="10" maxlength="20" /><br />
                        </label>
                        <input type="submit" name="donate" value="Submit" />
                        </form>
                    </div>
                </fieldset>
            </div>
            <div class="inbox">
                <fieldset>
                    <legend>Customize Your Title</legend>
                    <div class="infldset">
                        <form id="title_your" method="post" action="store.php">
                        <label><strong>New Title</strong> (Leave blank to reset to default.)<br />
                        <input type="text" name="your_title" value="" size="30" maxlength="50" /><br />
                        </label>
                        <input type="submit" name="submit_your_title" value="Submit" />
                        <strong>Cost</strong>: 250 points
                        </form>
                    </div>
                </fieldset>
            </div>
            <div class="inbox">
                <fieldset>
                    <legend>Change Another User's Title</legend>
                    <div class="infldset">
                        <form id="title_another" method="post" action="store.php">
                        <label><strong>User's Name</strong><br />
                        <input type="text" name="donatee" value="<?php echo $user ?>" size="20" maxlength="30" /><br />
                        </label>
                        <label><strong>New Title</strong><br />
                        <input type="text" name="another_title" value="" size="30" maxlength="50" /><br />
                        </label>
                        <input type="submit" name="submit_another_title" value="Submit" />
                        <strong>Cost</strong>: 500 points
                        </form>
                    </div>
                </fieldset>
            </div>
    </div>
</div>
<?php require PUN_ROOT.'footer.php' ?>

^save as store.php

no it doesn't work this is what i get when i try to install it

The constant PUN_ROOT must be defined and point to a valid PunBB installation root directory.

47

(4 replies, posted in PunBB 1.2 troubleshooting)

nvm i got it ty for ppl who tried to help all i did was delete enough code where i could edit the annoucement and save it then put the code back.

was putting something in my annoucement and i accidently didn't close off the link with a </a> so everytime i try to press submit on something like submit post or submit changes it goes to that website that i made as link and didn't close it off with a </a> how would i fix it i tried searching pun_annoucement and that didn't help.

49

(16 replies, posted in PunBB 1.2 show off)

just added cash mod is there a tut to show how to add a shop?

how do you remove the little text at the bottom of each forum that shows who moderates it.