Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> phpnuke 7.5
Author Message
Melanye
New Member
New Member



Joined: Oct 18, 2004
Posts: 5

PostPosted: Mon Oct 18, 2004 10:50 am Reply with quote

I have upgrate to 7.5 , my only problem so far is no block appearing .
My news are there I can acces the admin menue but there is no block that will appear on the side . I need to know how to fix it with details if possible
Melanye xx
 
View user's profile Send private message
chatserv
Member Emeritus



Joined: May 02, 2003
Posts: 1389
Location: Puerto Rico

PostPosted: Mon Oct 18, 2004 12:03 pm Reply with quote

Did you replace all old files with those of Nuke 7.5? if yes then check your nuke_blocks structure using phpMyAdmin or whatever mysql tool your webhost provides, post here the fields of that table (fields will be bid, bkey, bposition, etc...)
 
View user's profile Send private message Visit poster's website
Melanye







PostPosted: Mon Oct 18, 2004 12:14 pm Reply with quote

Thank you so much for your response here what it is showing when I go it's npot in order but I guess youll understand

bid bkey title content url bposition weight active refresh time blanguage blockfile view expire action
1 Module l 1 1 0 block-Modules.php 0 0 d
2 admin Administration <strong><big>·</big></strong> <a href="admin.php">... l 3 1 0 985591188 2 0 d
3 Who's Online l 4 1 0 block-Who_is_Online.php 1 0 d
6 Random Headlines r 8 0 0 block-Random_Headlines.php 0 0 d
7 Store r 5 1 0 block-Amazon.php 0 0 d
8 userbox User's Custom Box r 1 1 0 1 0 d
9 Categories Menu r 2 0 0 block-Categories.php 0 0 d
14 Information <br><center><font class="content">
<a href="http:... r 9 0 0 0 0 d
15 Home <pre><font size="3"><strong><big>·</big></strong><... l 2 1 0 0 0 d
4 Search l 5 0 3600 block-Search.php 0 0 d
5 Languages l 6 0 3600 block-Languages.php 0 0 d
10 Survey r 3 1 3600 block-Survey.php 0 0 d
11 Login r 4 1 3600 block-Login.php 3 0 d
12 Big Story of Today r 6 0 3600 block-Big_Story_of_Today.php 0 0 d
13 Old Articles r 7 1 3600 block-Old_Articles.php 0 0 d
With selected:
 
Melanye







PostPosted: Mon Oct 18, 2004 12:35 pm Reply with quote

I have this before also
bid int(10) No auto_increment
bkey varchar(15) No
title varchar(60) No
content text No
url varchar(200) No
bposition char(1) No
weight int(10) No 1
active int(1) No 1
refresh int(10) No 0
time varchar(14) No 0
blanguage varchar(30) No
blockfile varchar(255) No
view int(1) No 0
expire varchar(14) No 0
action char(1) No
Check All / Uncheck All With selected:
 
chatserv







PostPosted: Mon Oct 18, 2004 3:38 pm Reply with quote

You are missing the subscription field, drop the table and create it again with the following:
Code:
CREATE TABLE nuke_blocks (

  bid int(10) NOT NULL auto_increment,
  bkey varchar(15) NOT NULL default '',
  title varchar(60) NOT NULL default '',
  content text NOT NULL,
  url varchar(200) NOT NULL default '',
  bposition char(1) NOT NULL default '',
  weight int(10) NOT NULL default '1',
  active int(1) NOT NULL default '1',
  refresh int(10) NOT NULL default '0',
  time varchar(14) NOT NULL default '0',
  blanguage varchar(30) NOT NULL default '',
  blockfile varchar(255) NOT NULL default '',
  view int(1) NOT NULL default '0',
  expire varchar(14) NOT NULL default '0',
  action char(1) NOT NULL default '',
  subscription int(1) NOT NULL default '0',
  PRIMARY KEY  (bid),
  KEY bid (bid),
  KEY title (title)
) TYPE=MyISAM;

INSERT INTO nuke_blocks VALUES (1, '', 'Modules', '', '', 'l', 1, 1, 0, '', '', 'block-Modules.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (2, 'admin', 'Administration', '<strong><big>·</big></strong> <a href="admin.php">Administration</a><br>\r\n<strong><big>·</big></strong> <a href="admin.php?op=adminStory">NEW Story</a><br>\r\n<strong><big>·</big></strong> <a href="admin.php?op=create">Change Survey</a><br>\r\n<strong><big>·</big></strong> <a href="admin.php?op=content">Content</a><br>\r\n<strong><big>·</big></strong> <a href="admin.php?op=logout">Logout</a>', '', 'l', 2, 1, 0, '985591188', '', '', 2, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (3, '', 'Who\'s Online', '', '', 'l', 3, 1, 0, '', '', 'block-Who_is_Online.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (4, '', 'Search', '', '', 'l', 4, 0, 3600, '', '', 'block-Search.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (5, '', 'Languages', '', '', 'l', 5, 1, 3600, '', '', 'block-Languages.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (6, '', 'Random Headlines', '', '', 'l', 6, 0, 3600, '', '', 'block-Random_Headlines.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (8, 'userbox', 'User\'s Custom Box', '', '', 'r', 1, 1, 0, '', '', '', 1, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (9, '', 'Categories Menu', '', '', 'r', 2, 0, 0, '', '', 'block-Categories.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (10, '', 'Survey', '', '', 'r', 3, 1, 3600, '', '', 'block-Survey.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (11, '', 'Login', '', '', 'r', 4, 1, 3600, '', '', 'block-Login.php', 3, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (12, '', 'Big Story of Today', '', '', 'r', 5, 1, 3600, '', '', 'block-Big_Story_of_Today.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (13, '', 'Old Articles', '', '', 'r', 6, 1, 3600, '', '', 'block-Old_Articles.php', 0, '0', 'd', 0);
INSERT INTO nuke_blocks VALUES (14, '', 'Information', '<br><center><font class="content">\r\n<a href="http://phpnuke.org"><img src="images/powered/powered5.jpg" border="0" alt="Powered by PHP-Nuke" title="Powered by PHP-Nuke" width="88" height="31"></a>\r\n<br><br>\r\n<a href="http://validator.w3.org/check/referer"><img src="images/html401.gif" width="88" height="31" alt="Valid HTML 4.01!" title="Valid HTML 4.01!" border="0"></a>\r\n<br><br>\r\n<a href="http://jigsaw.w3.org/css-validator"><img src="images/css.gif" width="88" height="31" alt="Valid CSS!" title="Valid CSS!" border="0"></a></font></center><br>', '', 'r', 7, 1, 0, '', '', '', 0, '0', 'd', 0);
 
Melanye







PostPosted: Mon Oct 18, 2004 11:14 pm Reply with quote

Hey Thank you but it's still not working .
I have drop the nuke-block and recreated it sill the same thing nothing appear .
Now I have this . I am really confuse on why it is not working
Field Type Attributes Null Default Extra Action
bid int(10) No auto_increment
bkey varchar(15) No
title varchar(60) No
content text No
url varchar(200) No
bposition char(1) No
weight int(10) No 1
active int(1) No 1
refresh int(10) No 0
time varchar(14) No 0
blanguage varchar(30) No
blockfile varchar(255) No
view int(1) No 0
expire varchar(14) No 0
action char(1) No
subscription int(1) No 0
Check All / Uncheck All With selected:

or this *****************


bid bkey title content url bposition weight active refresh time blanguage blockfile view expire action subscription
1 Modules l 1 1 0 block-Modules.php 0 0 d 0
2 admin Administration <strong><big>·</big></strong> <a href="admin.php">... l 2 1 0 985591188 2 0 d 0
3 Who's Online l 3 1 0 block-Who_is_Online.php 0 0 d 0
4 Search l 4 0 3600 block-Search.php 0 0 d 0
5 Languages l 5 1 3600 block-Languages.php 0 0 d 0
6 Random Headlines l 6 0 3600 block-Random_Headlines.php 0 0 d 0
8 userbox User's Custom Box r 1 1 0 1 0 d 0
9 Categories Menu r 2 0 0 block-Categories.php 0 0 d 0
10 Survey r 3 1 3600 block-Survey.php 0 0 d 0
11 Login r 4 1 3600 block-Login.php 3 0 d 0
12 Big Story of Today r 5 1 3600 block-Big_Story_of_Today.php 0 0 d 0
13 Old Articles r 6 1 3600 block-Old_Articles.php 0 0 d 0
14 Information <br><center><font class="content">
<a href="http:... r 7 1 0 0 0 d 0
With selected:


Thanks
 
chatserv







PostPosted: Tue Oct 19, 2004 8:31 am Reply with quote

Can't think of anything else but to tell you to delete mainfile.php from the server and uploading it again from a newly downloaded Nuke 7.5 and if that doesn't solve the problem then try using another theme.
 
Melanye







PostPosted: Tue Oct 19, 2004 10:33 am Reply with quote

Thank you
I have decide to reput my old version
The problem is when I had the main.pho or the index.php one of does So I had the old one I think I better not touch anything I am lucky not loosing anything .
Thanks for your time
Melanyexx
 
Display posts from previous:       
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> phpnuke 7.5

View next topic
View previous topic
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
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©