Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

Events Calendar addin

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions
 
Thread Tools Search this Thread
  #31  
Old 06-15-2006, 10:55 AM
 
Corto_Maltese Corto_Maltese is offline
 

Advanced Member
  
Join Date: Apr 2006
Location: Canada
Posts: 33
 

Default

Great mod but I have some errors

Notice: Undefined index: view in C:\sokkit\site\xcart\orgcal\view.php on line 15

Notice: Undefined offset: 2 in C:\sokkit\site\xcart\orgcal\include\classes\OCMont h.class.php on line 108

Notice: Undefined offset: 2 in C:\sokkit\site\xcart\orgcal\include\classes\OCMont h.class.php on line 108

Notice: Undefined offset: 2 in C:\sokkit\site\xcart\orgcal\include\classes\OCMont h.class.php on line 108

Notice: Undefined offset: 2 in C:\sokkit\site\xcart\orgcal\include\classes\OCMont h.class.php on line 108

Notice: Undefined index: USERID in C:\sokkit\site\xcart\orgcal\include\classes\OrgCal Auth.class.php on line 184

Notice: Undefined index: USERID in C:\sokkit\site\xcart\orgcal\include\classes\OrgCal Auth.class.php on line 184

Any idea ?

Thanks
__________________
X-Cart 4.0.18
Telafirma Mod - Bcse Mods
Ruby Mod - Firetank Mods
Reply With Quote
  #32  
Old 06-15-2006, 04:14 PM
 
josebueso josebueso is offline
 

eXpert
  
Join Date: Apr 2006
Location: USA
Posts: 371
 

Default

Quote:
Originally Posted by ShishaPipeUK
Crunch42, I have also used this script and below is the information how to place this in your x-cart software.

I first made a static page in my admin area and called it "Calender of events", below is the code:

Code:
<IFRAME border=0 name=calender align=center marginWidth=1 marginHeight=1 src="../orgcal/view.php" frameBorder=0 width=100% scrolling=no height=700> Your browser does not support inline frames or is currently configured not to display inline frames. </IFRAME></P>

I got the followin error,Can someone help please?

Fatal error: Call to a member function on a non-object in /home/uncionmu/public_html/orgcal/include/classes/OrgCalConfig.class.php on line 28

I placed the directory "orgcal" in my root, so it did not have anything to do with my xcart directory which is websitename/shopcart/ that's the reason for the "../orgcal/view.php" by using the ../ I just instructed to go back a directory and then into the orgcal directory.

Now the index.php that comes with the orgcal mod, just delete it, you dont need it.

What you do need is:
Folder: orgcal/js/
Folder: orgcal/js/overlib400/
Folder: orgcal/js/overlib400/mini/

Folder: orgcal/include/main.php
Folder: orgcal/include/db.php - This is the file you enter your MYSQL info
Code:
$OC_CONFIG['DBHOST'] = 'your database server'; // database server $OC_CONFIG['DBUSER'] = 'database user'; // username $OC_CONFIG['DBPASS'] = 'database password'; // password $OC_CONFIG['DBNAME'] = 'database name'; // database name $OC_CONFIG['DBTYPE'] = 'mysql';

Folder: orgcal/include/classes/
Folder: orgcal/include/classes/adodb400-lite/
Folder: orgcal/include/classes/adodb400-lite/lang/
Folder: orgcal/include/classes/adodb400-lite/drivers/
Folder: orgcal/include/classes/adodb400-lite/datadict/
Folder: orgcal/include/classes/adodb400-lite/CVS/

Folder: orgcal/images/up.gif - http://www.shisha.co.uk/orgcal/images/up.gif
Folder: orgcal/images/icon_edit.png - http://www.shisha.co.uk/orgcal/images/icon_edit.png
Folder: orgcal/images/icon_del.png - http://www.shisha.co.uk/orgcal/images/icon_del.png
Folder: orgcal/images/down.gif - http://www.shisha.co.uk/orgcal/images/down.gif
Folder: orgcal/images/calendar.gif - http://www.shisha.co.uk/orgcal/images/calendar.gif

Folder: orgcal/css/simplecalendar.css
Folder: orgcal/css/oc-week.css
Folder: orgcal/css/oc-month.css
Folder: orgcal/css/oc-minical.css
Folder: orgcal/css/oc-main.css
Folder: orgcal/css/oc-event.css
Folder: orgcal/css/oc-day.css

The php files
File: orgcal/user.php
File: orgcal/view.php
File: orgcal/minical.php
File: orgcal/event.php
File: orgcal/config.php

You can still download all these files (217 KB) from http://www.kevinsouthworth.com/Projects/OrgCal/tabid/60/Default.aspx

Thank you Kevin for a great mod :D

You can see the finished calender at: http://www.shisha.co.uk/shopcart/pages.php?pageid=25

Don't forget to add in the below patch file in admin/patch / upgrade section:


Code:
CREATE TABLE `config` ( `config_name` varchar(45) NOT NULL default '', `config_value` varchar(100) default NULL, PRIMARY KEY (`config_name`) ) TYPE=MyISAM; INSERT INTO `config` VALUES ('week_starts_on_mon', 'N'); INSERT INTO `config` VALUES ('tz_offset', '0'); INSERT INTO `config` VALUES ('12_hour', 'Y'); INSERT INTO `config` VALUES ('time_in_link', 'Y'); INSERT INTO `config` VALUES ('name_in_link', 'Y'); CREATE TABLE `event` ( `e_id` int(11) NOT NULL auto_increment, `e_override_id` int(11) default NULL, `e_ext_id` int(11) default NULL, `e_date` int(11) NOT NULL default '0', `e_time` varchar(6) default '-1', `e_duration` int(11) NOT NULL default '0', `e_repeat` char(1) default 'N', `e_access` char(1) default 'P', `e_name` varchar(80) NOT NULL default '', `e_description` text, PRIMARY KEY (`e_id`) ) TYPE=MyISAM AUTO_INCREMENT=1 ; CREATE TABLE `event_repeats` ( `e_id` int(11) NOT NULL default '0', `e_type` varchar(20) default NULL, `e_end` int(11) default NULL, `e_frequency` int(11) default '1', `e_days` varchar(7) default NULL, PRIMARY KEY (`e_id`) ) TYPE=MyISAM; CREATE TABLE `event_repeats_not` ( `e_id` int(11) NOT NULL default '0', `e_date` int(11) NOT NULL default '0', PRIMARY KEY (`e_id`,`e_date`) ) TYPE=MyISAM; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `uname` varchar(15) NOT NULL default '', `upass` varchar(15) NOT NULL default '', `ulevel` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`) ) TYPE=MyISAM AUTO_INCREMENT=2 ; INSERT INTO `users` VALUES (1, 'admin', 'admin', 1);
__________________
Saul
x-cart 4.7.9 Gold Plus

www.uncionmusic.com
Reply With Quote
  #33  
Old 06-15-2006, 04:21 PM
 
josebueso josebueso is offline
 

eXpert
  
Join Date: Apr 2006
Location: USA
Posts: 371
 

Default Fatal Error

I got the following error after I went thru all the steps. can someone tell what I did wrong and to correct the problem.

Fatal error: Call to a member function on a non-object in /home/uncionmu/public_html/orgcal/include/classes/OrgCalConfig.class.php on line 28
__________________
Saul
x-cart 4.7.9 Gold Plus

www.uncionmusic.com
Reply With Quote
  #34  
Old 06-15-2006, 06:34 PM
 
josebueso josebueso is offline
 

eXpert
  
Join Date: Apr 2006
Location: USA
Posts: 371
 

Default

got it.

Thanxs for your help anyways
Looks very cool. http://uncionmusic.com/pages.php?pageid=3

Now I need to figureout how transelate the calendar to Spanish.

Jose
__________________
Saul
x-cart 4.7.9 Gold Plus

www.uncionmusic.com
Reply With Quote
  #35  
Old 06-16-2006, 11:57 AM
 
Corto_Maltese Corto_Maltese is offline
 

Advanced Member
  
Join Date: Apr 2006
Location: Canada
Posts: 33
 

Default

Hello, nobody for my problem ?

Thanks
__________________
X-Cart 4.0.18
Telafirma Mod - Bcse Mods
Ruby Mod - Firetank Mods
Reply With Quote
  #36  
Old 06-16-2006, 11:43 PM
 
katandmouse katandmouse is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 37
 

Default how does this tie into xcart

I have yet to see an example of the calendar where it actually ties into the store. Does someone have a calendar item that does that? How does this work? Is it that you enter a product and assign it a calendar item and it them posts to the calendar with link to register, or what?
__________________
xcart version 4.0.18
Reply With Quote
  #37  
Old 06-16-2006, 11:55 PM
 
josebueso josebueso is offline
 

eXpert
  
Join Date: Apr 2006
Location: USA
Posts: 371
 

Default Re: how does this tie into xcart

Quote:
Originally Posted by katandmouse
I have yet to see an example of the calendar where it actually ties into the store. Does someone have a calendar item that does that? How does this work? Is it that you enter a product and assign it a calendar item and it them posts to the calendar with link to register, or what?

It worked for me, Just follow the instructions on the original tread.
You can look at mime here/
http://www.uncionmusic.com/pages.php?pageid=3
__________________
Saul
x-cart 4.7.9 Gold Plus

www.uncionmusic.com
Reply With Quote
  #38  
Old 06-17-2006, 10:33 PM
 
katandmouse katandmouse is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 37
 

Default

All I see is a blank calendar with no events posted. What date do you have an event posted on? I'm looking at June and July. All dates are blank. I would like to see how it ties into the store.
__________________
xcart version 4.0.18
Reply With Quote
  #39  
Old 07-09-2006, 10:27 PM
 
katandmouse katandmouse is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 37
 

Default download link down

Don't know if it was temporary or not, but the url for the download link generates a server can't be found error. Try this instead: http://www.kevinsouthworth.com/Projects/OrgCal/tabid/60/Default.aspx
__________________
xcart version 4.0.18
Reply With Quote
  #40  
Old 07-09-2006, 11:03 PM
 
katandmouse katandmouse is offline
 

Advanced Member
  
Join Date: May 2006
Posts: 37
 

Default

Ok. I think I may have answered my own question since no one else did. This calendar script doesn't really tie into xcart - it merely sits INSIDE it from what I can tell. I was hoping for something that would actually share data from the products table. Guess I have to pay someone to write that for me. Any offers? Other than that, this is a great script. I generally purchase a calendar script for my clients, but this is as good as the one I buy with the exception that it is missing the tell-a-friend feature. Thanks, Kevin.
__________________
xcart version 4.0.18
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 12:05 AM.

   

 
X-Cart forums © 2001-2020