Main Menu
Quick Links
Other Options
Information
NukeForums
Top10 Links
Site Visitors
Membership:
Latest: churchy
Today: 3
Yesterday: 1
Overall: 15033
Visitation:
Guests: 506
Members: 1
Total: 507
You are Anonymous user. You can register for free by clicking here
Sponsor Links
NukeResources :: View topic - Several fixes and Still Upload bug at 70patched.zip
Several fixes and Still Upload bug at 70patched.zip
Posted: Fri Jan 02, 2004 2:46 am
free69
Resource Seeker
Joined: Sep 10, 2003
Posts: 14
Hello!
I installed your 70patched.zip for fresh installation and found some bugs;
1. mainfile php - not fixed yet
2. upload function not workable - not fixed yet. This is a problem.
3. admin/banner.php - I reported with fix already and repeat.
In banner block, patched one does not bring "add banner" page.
So, I corrected as follows;
From : admin/modules/banner.php Line 130-144
Quote:
/* Add Banner */
$result5 = $db->sql_query("select * from ".$prefix."_bannerclient");
$numrows3 = $db->sql_numrows($result);
if($numrows3>0) {
OpenTable();
echo "<font class=\"option\">" . _ADDNEWBANNER . " </font></center><br><br>"
."<form action=\"admin.php?op=BannersAdd\" method=\"post\">"
."" . _CLIENTNAME . ": "
."<select name=\"cid\">";
$result6 = $db->sql_query("SELECT cid, name from " . $prefix . "_bannerclient");
while ($row6 = $db->sql_fetchrow($result6)) {
$cid = intval($row6['cid']);
$name = $row6['name'];
echo "<option value=\"$cid\">$name</option>";
}
To :
Quote:
/* Add Banner */
$result = $db->sql_query("select * from ".$prefix."_bannerclient");
$numrows = $db->sql_numrows($result);
if($numrows>0) {
OpenTable();
echo "<font class=\"option\">"._ADDNEWBANNER." </font></center><br><br>"
."<form action=\"admin.php?op=BannersAdd\" method=\"post\">"
.""._CLIENTNAME.": "
."<select name=\"cid\">";
$result = $db->sql_query("SELECT cid, name from " . $prefix . "_bannerclient");
while ($row = $db->sql_fetchrow($result)) {
$cid = intval($row['cid']);
$name = $row['name'];
echo "<option value=\"$cid\">$name</option>";
}
4. admin/modules/module.php
From : Line 50
Quote: $db->sql_query("insert into " . $prefix . "_modules values (NULL, '$modlist[$i]', '$modlist[$i]', '0', '0', '1')");
To :
Quote: $db->sql_query("insert into " . $prefix . "_modules values (NULL, '$modlist[$i]', '$modlist[$i]', '0', '0', '1','0')");///////1 column added.
Regarding No.2 of uploading function, tweaked with up/downloads or easyup or similar module, is not workable.
Wolud you please check which script stopped it?
I couldn't find it.
Question : did you get any Christmas gift?
Thank you.
NukeResources Forum Index -> Bug Reports
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
All times are GMT - 4 Hours
Page 1 of 1
Powered by phpBB © 2001-2005 phpBB Group. Theme created by Vjacheslav Trushkin . There have been 173 unique hit(s) in the past 24 hours.
:: Eos phpbb2 style by Cyberalien :: PHP-Nuke theme by www.nukemods.com ::