and possible to install the script and behavior again a backup of the database to resolve the problem.
Thanks
1 2007-07-22 20:05
Re: error (2 replies, posted in PunBB 1.2 troubleshooting)
2 2007-07-22 19:23
Topic: error (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 2007-07-20 20:46
Re: Table Small (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 2007-07-20 13:42
Re: Table Small (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 2007-07-19 22:38
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
this for my big problem my sample webmaster
7 2007-07-19 21:51
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
this link no have info http://lnx.fieranautica.com/Forum/extern.php
8 2007-07-19 13:33
Re: Table Small (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 2007-07-19 00:15
Re: Table Small (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 2007-07-19 00:07
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
there are not other alternatives to install the mod upload lines image
11 2007-07-18 23:54
Re: Table Small (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 2007-07-18 23:42
Re: Table Small (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 2007-07-18 23:19
Re: Table Small (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 2007-07-18 22:36
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
15 2007-07-18 22:13
Re: Table Small (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 2007-07-18 22:10
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
my version instaled and this punbb-1.2.15
17 2007-07-18 22:05
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
18 2007-07-18 21:35
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
have same problem
19 2007-07-18 21:12
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
have this errore http://lnx.fieranautica.com/Forum/plugi … ll_mod.php
20 2007-07-18 12:23
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
from where I can take the donwload of the file
attacmanet
21 2007-07-18 12:07
Re: Table Small (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 2007-07-18 11:36
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
ok this
and possible attacmant photo inside post
thanks
23 2007-07-18 07:40
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
sorry have problem position name forum
pixel prpblem ok
24 2007-07-17 18:58
Re: Table Small (47 replies, posted in PunBB 1.2 troubleshooting)
have problem positoin forum hrlp my
thanks