1

(2 replies, posted in PunBB 1.2 troubleshooting)

and possible to install the script and behavior again a backup of the database to resolve the problem. 
 
Thanks

2

(2 replies, posted in PunBB 1.2 troubleshooting)

I have installed the forum in this folder forum1 
 
now or renamed the forum in forum and me from this error like I can have this problem resolved


Bad HTTP_REFERER. If you have moved these forums from one location to another or switched domains, you need to update the Base URL manually in the database (look for o_base_url in the config table) and then clear the cache by deleting all .php files in the /cache directory.

3

(47 replies, posted in PunBB 1.2 troubleshooting)

this and correct sintasi

include('http://www.fieranautica.com/Forum/extern.php?action=new&show=10&fid=6');

no understan include sistem

4

(47 replies, posted in PunBB 1.2 troubleshooting)

I/you/they have not succeeded in having igli visualized last 5 posts in this page http://lnx.fieranautica.com/Espositori
 
 
you can help me 
 
thanks

5

(47 replies, posted in PunBB 1.2 troubleshooting)

this for my big problem my sample webmaster

6

(47 replies, posted in PunBB 1.2 troubleshooting)

no understan

7

(47 replies, posted in PunBB 1.2 troubleshooting)

this link no have info http://lnx.fieranautica.com/Forum/extern.php

8

(47 replies, posted in PunBB 1.2 troubleshooting)

my index this page http://lnx.fieranautica.com/Espositori/
this page forum http://lnx.fieranautica.com/Forum/index.php

and possible last 5 post inside this link http://lnx.fieranautica.com/Espositori/

thanks

9

(47 replies, posted in PunBB 1.2 troubleshooting)

have mod for remote last 5 post inside forum for index page external forum for inside mi home page


thanks

10

(47 replies, posted in PunBB 1.2 troubleshooting)

there are not other alternatives to install the mod upload lines image

11

(47 replies, posted in PunBB 1.2 troubleshooting)

nom have my version

only version this link http://www.punres.org/files.php?pid=117

12

(47 replies, posted in PunBB 1.2 troubleshooting)

ok works well now 
 
I have not understood to thing it serves this mod 
 
I want a mod that the utentus upload photo inside post

13

(47 replies, posted in PunBB 1.2 troubleshooting)

have this problem

inside admin area click plugins AP_Image_Awards


Warning: dir(./img/awards) [function.dir]: failed to open dir: No such file or directory in /web/htdocs/www.fieranautica.com/home/Forum/plugins/AP_Image_Awards.php on line 100

Fatal error: Call to a member function on a non-object in /web/htdocs/www.fieranautica.com/home/Forum/plugins/AP_Image_Awards.php on line 101

14

(47 replies, posted in PunBB 1.2 troubleshooting)

ok

new error http://lnx.fieranautica.com/Forum/insta … hp?foo=bar

15

(47 replies, posted in PunBB 1.2 troubleshooting)

this file install_mod


<?php
/***********************************************************************/

// Some info about your mod.
$mod_title      = 'Image Award Mod';
$mod_version    = '1.0';
$release_date   = '2005-05-16';
$author         = 'Frank Hagström';
$author_email   = 'frank.hagstrom+punbb@gmail.com';

// One or more versions of PunBB that this mod works on. The version names must match exactly!
$punbb_versions    = array('1.2.5');

// Set this to false if you haven't implemented the restore function (see below)
$mod_restore    = true;


// This following function will be called when the user presses the "Install" button.
function install()
{
    global $db, $db_type, $pun_config;

    
    $db->query("ALTER TABLE ".$db->prefix."users ADD imgaward VARCHAR(255) NOT NULL") or error('Unable to add column "imgaward" to table "users"', __FILE__, __LINE__, $db->error());

}

// This following function will be called when the user presses the "Restore" button (only if $mod_uninstall is true (see above))
function restore()
{
    global $db, $db_type, $pun_config;

    $db->query("ALTER TABLE ".$db->prefix."users DROP imgaward") or error('Unable to drop column "imgaward" from table "users"', __FILE__, __LINE__, $db->error());

}

/***********************************************************************/

// DO NOT EDIT ANYTHING BELOW THIS LINE!


// Circumvent maintenance mode
define('PUN_TURN_OFF_MAINT', 1);
define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';

// We want the complete error message if the script fails
if (!defined('PUN_DEBUG'))
    define('PUN_DEBUG', 1);

// Make sure we are running a PunBB version that this mod works with
if(!in_array($pun_config['o_cur_version'], $punbb_versions))
    exit('You are running a version of PunBB ('.$pun_config['o_cur_version'].') that this mod does not support. This mod supports PunBB versions: '.implode(', ', $punbb_versions));

$style = (isset($cur_user)) ? $cur_user['style'] : $pun_config['o_default_style'];

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php echo $mod_title ?> installation</title>
<link rel="stylesheet" type="text/css" href="style/<?php echo $pun_config['o_default_style'].'.css' ?>" />
</head>
<body>

<div id="punwrap">
<div id="puninstall" class="pun" style="margin: 10% 20% auto 20%">

<?php

if (isset($_POST['form_sent']))
{
    if (isset($_POST['install']))
    {
        // Run the install function (defined above)
        install();

?>
<div class="block">
    <h2><span>Installation successful</span></h2>
    <div class="box">
        <div class="inbox">
            <p>Your database has been successfully prepared for <?php echo pun_htmlspecialchars($mod_title) ?>. See readme.txt for further instructions.</p>
        </div>
    </div>
</div>
<?php

    }
    else
    {
        // Run the restore function (defined above)
        restore();

?>
<div class="block">
    <h2><span>Restore successful</span></h2>
    <div class="box">
        <div class="inbox">
            <p>Your database has been successfully restored.</p>
        </div>
    </div>
</div>
<?php

    }
}
else
{

?>
<div class="blockform">
    <h2><span>Mod installation</span></h2>
    <div class="box">
        <form method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>?foo=bar">
            <div><input type="hidden" name="form_sent" value="1" /></div>
            <div class="inform">
                <p>This script will update your database to work with the following modification:</p>
                <p><strong>Mod title:</strong> <?php echo pun_htmlspecialchars($mod_title).' '.$mod_version ?></p>
                <p><strong>Author:</strong> <?php echo pun_htmlspecialchars($author) ?> (<a href="mailto:<?php echo pun_htmlspecialchars($author_email) ?>"><?php echo pun_htmlspecialchars($author_email) ?></a>)</p>
                <p><strong>Disclaimer:</strong> Mods are not officially supported by PunBB. Mods generally can't be uninstalled without running SQL queries manually against the database. Make backups of all data you deem necessary before installing.</p>
<?php if ($mod_restore): ?>                <p>If you've previously installed this mod and would like to uninstall it, you can click the restore button below to restore the database.</p>
<?php endif; ?>            </div>
            <p><input type="submit" name="install" value="Install" /><?php if ($mod_restore): ?><input type="submit" name="restore" value="Restore" /><?php endif; ?></p>
        </form>
    </div>
</div>
<?php

}

?>

</div>
</div>

</body>
</html>

16

(47 replies, posted in PunBB 1.2 troubleshooting)

my version instaled and this punbb-1.2.15

17

(47 replies, posted in PunBB 1.2 troubleshooting)

this http://lnx.fieranautica.com/Forum/install_mod.php

after

18

(47 replies, posted in PunBB 1.2 troubleshooting)

have same problem

http://lnx.fieranautica.com/Forum/uploa … ll_mod.php

19

(47 replies, posted in PunBB 1.2 troubleshooting)

have this errore http://lnx.fieranautica.com/Forum/plugi … ll_mod.php

20

(47 replies, posted in PunBB 1.2 troubleshooting)

from where I can take the donwload of the file
attacmanet

21

(47 replies, posted in PunBB 1.2 troubleshooting)

have this version http://lnx.fieranautica.com/Forum/index.php

punbb-1.2.15

as I can have the mod installed attacment image 
 
thanks

22

(47 replies, posted in PunBB 1.2 troubleshooting)

ok this

and possible attacmant photo inside post

thanks

23

(47 replies, posted in PunBB 1.2 troubleshooting)

sorry have problem position name forum

pixel prpblem ok

24

(47 replies, posted in PunBB 1.2 troubleshooting)

have problem positoin forum hrlp my

thanks

25

(47 replies, posted in PunBB 1.2 troubleshooting)

ok