Author |
Message |
Cakk
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Oct 21, 2005
Posts: 7
|
Posted:
Sat Oct 22, 2005 10:24 am |
|
I have recently installed NuCalendar from NukeKorea on my website. My version of Nuke is 7.7.
I am using nkNucalendar-77-78-plain-PHPNuke.zip for my NuCalendar and it seems to be working but I have two problems.
My first problem, which seems only minor is I have this written on my Admin page, but everything seems to work. These cannot be viewed unless you have admin access so I am not too bothered but still would appreciate a fix.
Code:
Table 'modu3072_nuke1.nuke_nucal_bydate' doesn't exist
Table 'modu3072_nuke1.nuke_nucal_recurring' doesn't exist
|
My second problem, is whenever I open up the NuCalendar module is it moves my Navigation bar slightly. I've included 2 screenshots so you can see what I mean.
Note: Pictures were 1280x1024 but reduced to 800x600.
Home - Normal Navigation Bar
NuCalendar - Navigation Bar has moved slightly right
Does anyone know how I can fix my problems?
Thanks in advance... |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Raven
Site Admin/Owner
![](modules/Forums/images/avatars/45030c033f18773153cd2.gif)
Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Sat Oct 22, 2005 10:36 am |
|
I'm not seeing the second issue but the first means you have not installed the sql to create those tables. You will need them. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Cakk
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Oct 22, 2005 10:41 am |
|
If you look at the Navigation bar on the left hand side, there is a cm of grey on the second picture. Basically the bar gets pushed right a cm...
And the sql tables were installed using this:
Code:
# phpMyAdmin MySQL-Dump
# version 2.3.3pl1
# http://www.phpmyadmin.net/ (download page)
#
#
# Table structure for table `nuke_nucal_options`
#
CREATE TABLE nuke_nucal_options (
allow_user_submitted_events tinyint(1) NOT NULL default '0',
user_submitted_events_need_admin_aproval tinyint(1) NOT NULL default '1',
calendar_title varchar(128) NOT NULL default 'Calendar of Events',
calendar_title_image varchar(255) NOT NULL default '',
show_n_events tinyint(6) unsigned NOT NULL default '5',
in_n_days int(11) unsigned NOT NULL default '90',
show_bydate_in_block tinyint(1) NOT NULL default '1',
show_yearly_in_block tinyint(1) NOT NULL default '1',
show_yearly_recurring_in_block tinyint(1) NOT NULL default '1',
show_monthly_in_block tinyint(1) NOT NULL default '1',
show_monthly_recurring_in_block tinyint(1) NOT NULL default '1',
show_weekly_in_block tinyint(1) NOT NULL default '1',
month_day_color varchar(6) NOT NULL default 'ECECEC',
month_today_color varchar(6) NOT NULL default 'FFFFFF',
month_hover_color varchar(6) NOT NULL default 'C0C0C0',
show_mdy tinyint(1) NOT NULL default '1'
) TYPE=MyISAM;
#
# Dumping data for table `nuke_nucal_options`
#
INSERT INTO nuke_nucal_options VALUES (1, 1, 'Calendar of Events', '', 5, 120, 1, 0, 0, 0, 1, 0, 'f0f0f0', 'c0c0c0', '808080', 1);
# phpMyAdmin MySQL-Dump
# version 2.3.3pl1
# http://www.phpmyadmin.net/ (download page)
#
#
# Table structure for table `nuke_nucal_categories`
#
CREATE TABLE nuke_nucal_categories (
id int(11) NOT NULL auto_increment,
title varchar(128) NOT NULL default '',
description text NOT NULL,
showinblock tinyint(1) NOT NULL default '1',
KEY id (id)
) TYPE=MyISAM;
#
# Dumping data for table `nuke_nucal_categories`
#
INSERT INTO nuke_nucal_categories VALUES (1, 'Generic', 'This is a generic event.', 1);
# phpMyAdmin MySQL-Dump
# version 2.3.3pl1
# http://www.phpmyadmin.net/ (download page)
#
#
# Table structure for table `nuke_nucal_events`
#
CREATE TABLE nuke_nucal_events (
id int(11) NOT NULL auto_increment,
title varchar(50) NOT NULL default '',
location varchar(64) NOT NULL default '',
starttime time NOT NULL default '00:00:00',
duration time NOT NULL default '00:00:00',
fulldesc text NOT NULL,
isactive tinyint(1) NOT NULL default '1',
isrecurring tinyint(1) NOT NULL default '0',
categoryid int(11) NOT NULL default '1',
isapproved tinyint(1) NOT NULL default '0',
onetime_date date NOT NULL default '0000-00-00',
recur_weekday tinyint(4) NOT NULL default '0',
recur_schedule enum('weekly','monthly','yearly') NOT NULL default 'weekly',
recur_period tinyint(4) default NULL,
recur_month tinyint(4) default NULL,
KEY id (id)
) TYPE=MyISAM;
|
No reference to those tables are made in that sql install thingy lol..
I'm not the most experienced at this, but I'm not the worst. I can't see those tables in that, or my sql database but it says it needs them. I've browsed the Calendar alot and still can't see any errors. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Cakk
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Oct 22, 2005 11:58 am |
|
Possibly related to the problem, but if the Calendar is viewed in Firefox, you see this symbol very small in the top left corner:

I am assuming this is something to do with the problem as the Navigation Bar only moves when this is displayed. You do not see the symbol on any other page on the site. Any idea how I could get rid of this? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ToolBox
Regular
![Regular Regular](modules/Forums/images/ranks/2stars.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Mar 16, 2005
Posts: 74
|
Posted:
Sat Oct 22, 2005 1:19 pm |
|
Geezz... I fixed and restructure nuCalendar before and fix all side-effects. I don't remember what I did.
Would you let me know your nuke and patch version? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Cakk
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Oct 22, 2005 5:53 pm |
|
PHP Nuke 7.7
nkNucalendar-77-78-plain-PHPNuke.zip
Those are my installations. The Nucalender is from nukekorea.net
Add my MSN if you can't get hold of them. cakklesby@hotmail.com |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ToolBox
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Oct 23, 2005 2:18 am |
|
Oops, that's my dev. site. LOL
I will check it very soon. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Cakk
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Oct 26, 2005 8:00 pm |
|
*bump*
Still having problems with the left bar slightly moving in and also the right blocks don't work. We have them working on the rest of the site now, but it won't have it.
To see what I mean, checkout www.mod-uk.net |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
64bitguy
The Mouse Is Extension Of Arm
![](modules/Forums/images/avatars/183ecd6a404a3683445de.gif)
Joined: Mar 06, 2004
Posts: 1164
|
Posted:
Thu Oct 27, 2005 3:38 am |
|
I'm sorry but I've looked at this site in Firefox Deer Park and I can't see anything wrong. I've read this post 5 times and I still can't see anything wrong in your posted images either.
Please edit your pictures with Paint or something and put a big red arrow pointing to the problem. |
_________________ Steph Benoit
100% Section 508 and W3C HTML5 and CSS Compliant (Truly) Code, because I love compliance. |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Cakk
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Oct 27, 2005 7:25 am |
|
I've now added an arrow to show the error. I know in stock Firefox the error shows up and in Internet Explorer. Internet Explorer is the main engine used to view the site so that is a must fix.
Please re view the second image.
Only registered users can see links on this board! Get registered or login! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
64bitguy
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Oct 27, 2005 7:30 am |
|
I must be completely blind because not only do I not see any problems, I don't see the arrow that would identify the problem. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Cakk
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Oct 27, 2005 7:44 am |
|
Incase your ISP or browser caches images, I have uploaded it to a 2nd area:
Only registered users can see links on this board! Get registered or login! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
john_mar
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Nov 14, 2005
Posts: 15
|
Posted:
Sun Dec 11, 2005 5:46 pm |
|
Has this thread has gone quiet?
I have the exact same problem... NuCalendar block width problem.
The graphic with the arrow posted by CaKK doesn't exactly show the problem. The problem is when you click on full month view, instead of a the Calendar month view in a centre block (with left and right blocks).... the centre calendar blocks appears across to the right hand side of the screen.
...and the right hand side block(s) are appended to the bottom of the left hand side block!!!
I too have downloaded NuCalendar from Nukekorea.net...But I note that the Nucalender calandar on nukekorea.net doesn't have the problem
Anyone got a fix?
Think I might contact Toolbox over on NukeKorea.net.
John |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ToolBox
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Dec 12, 2005 2:22 pm |
|
I will upload the new fixed version which runs in my dev. site, as soon as I go back to my town. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
Airey001
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Mar 20, 2005
Posts: 1
|
Posted:
Sat Jan 14, 2006 8:18 pm |
|
The reason for the error on the admin page
Code:
Table 'modu3072_nuke1.nuke_nucal_bydate' doesn't exist
Table 'modu3072_nuke1.nuke_nucal_recurring' doesn't exist
|
is do to old code referring to tables no longer used (From Previous Versions) in NuCalendar. Those old tables for the events which were merged into a single table.
The second issue I am not sure on i don't user Nuke Korea's Patched version, but could be from the modifications Nuke Korea made to make it look more visually pleasing.
I use my own patched version. It is compatable with 7.5 - 7.8 w/ Patch 3.1. As of right now NuCalendar has some issues with 7.9.
Only registered users can see links on this board! Get registered or login!
If you would like to try my patched version to upgrade all you need to do is upload my files replacing all the old files and also delete the following files from your server.
/admin/case/case.nucalendar.php
/admin/links/links.nucalendar.php
/admin/modules/nucalendar.php
It is safe to remove these because I moved the admin section from Administration Menu section to the Module's Administration section to allow non-Superuser Admins access to manage the calendar.
Patch Revision History:
Version: 0.61.02
- Corrected issue with modules/NuCalendar/admin/index.php
* File was trying to call tables that didn't exist
- Corrected calls to old tables no-longer used in NuCalendar
- Corrected issue with blocks/block-month-of-event2.php file
* Issue with the AddDayBlock2() function
- Coding issue sent a call to the PHP function mktime() with
all arguments blank.
* Issue with code referring to the file with the incorrect name
Version: 0.61.01
- Updated NuCalendar to be compatible with 7.5 and up versions of PHP-Nuke
- Moved NuCalendar administration pages from Administration Menu section to the Module's
Administration section to allow non-Superuser Admins access to manage the calendar. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
morpheous
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: May 07, 2006
Posts: 1
|
Posted:
Tue May 16, 2006 1:13 pm |
|
Would be nice if you actually had any downloads in your downloads??? ![Blonde Moment](modules/Forums/images/smiles/blonde.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
lost
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Apr 11, 2007
Posts: 1
|
Posted:
Wed Apr 11, 2007 8:07 am |
|
morpheous wrote: | Would be nice if you actually had any downloads in your downloads??? |
EggZACKleeeeeeeeeeeeeeeeeee |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|