Page 21 of 50 FirstFirst ... 11192021222331 ... LastLast
Results 201 to 210 of 500
  1. #201
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default Re: Event Calendar

    Found the problem!!
    The file that controls the way calender listing is displayed is modules/events_calendar_listing.php

    I uploaded the file that came with the original mod. I just downloaded the updated files found here on this thread, and uploaded just that file to my server and now it displays correctly all the events!

    Checking both files now to see what's the piece of code that was causing the problem. Hopefully someone else with the same issue can find it helpful.
    M.Valenti
    Contemporary Artist - Entrepreneur
    http://www.manuelavalenti.com - http://www.byvalenti.com

  2. #202
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Event Calendar

    Now there are five events showing. Well done.

    BTW w3c css validator for the red 4 page showed 44 errors.

  3. #203
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default Re: Event Calendar

    Thank you! I thought that was taken care, but I guess I should have checked just to make sure.
    M.Valenti
    Contemporary Artist - Entrepreneur
    http://www.manuelavalenti.com - http://www.byvalenti.com

  4. #204
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default Re: Event Calendar

    Me again. I found a bug on the admin>events_manager.php file. Everytime an event is edited, extra '\\\\' are added to any URL that is entered in the event description. Any ideas how this can be fixed?

    Thanks a bunch!
    M.Valenti
    Contemporary Artist - Entrepreneur
    http://www.manuelavalenti.com - http://www.byvalenti.com

  5. #205
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Event Calendar

    Upgrade.

  6. #206
    Join Date
    May 2010
    Posts
    10
    Plugin Contributions
    0

    Default Re: Event Calendar

    Hi there,
    I have the Event calendar up and running on our site now, but am trying to modify it a little, once a day has been selected on the calendar I would like to replace the link which contains "select_event" and send the customer straight through to the product link.

    So from this page:
    http://thelakedistrictwalker.co.uk/c...=05&_year=2012

    I would like to take people here:
    http://thelakedistrictwalker.co.uk/c...oducts_id=3043

    instead of here:
    http://thelakedistrictwalker.co.uk/c...select_event=3

    Is this possible?

    Many thanks
    John

  7. #207
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Event Calendar

    Which version zencart?
    Which version calendar?

  8. #208
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Event Calendar

    According to this thread

    http://www.zen-cart.com/showthread.p...52#post1119252

    tabelenupdate.sql needs to be updated from

    Code:
    DROP TABLE IF EXISTS events_calendar;
    CREATE TABLE events_calendar (event_id int(3) NOT NULL auto_increment, language_id int(11) NOT NULL default '1', start_date date NOT NULL default '0000-00-00', end_date varchar(20) default NULL, title varchar(255) default NULL, event_image varchar(64) default NULL, link varchar(255) default NULL, OSC_link varchar(255) default NULL, description text, date_added datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (event_id,language_id)) TYPE=MyISAM;
    to

    Code:
    DROP TABLE IF EXISTS events_calendar;
    CREATE TABLE events_calendar (event_id int(3) NOT NULL auto_increment, language_id int(11) NOT NULL default '1', start_date date NOT NULL default '0000-00-00', end_date varchar(20) default NULL, title varchar(255) default NULL, event_image varchar(64) default NULL, link varchar(255) default NULL, OSC_link varchar(255) default NULL, description text, date_added datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (event_id,language_id)) ENGINE=MyISAM;

  9. #209
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Event Calendar

    Quote Originally Posted by dw08gm View Post
    According to this thread

    http://www.zen-cart.com/showthread.p...52#post1119252

    tabelenupdate.sql needs to be updated from

    Code:
    DROP TABLE IF EXISTS events_calendar;
    CREATE TABLE events_calendar (event_id int(3) NOT NULL auto_increment, language_id int(11) NOT NULL default '1', start_date date NOT NULL default '0000-00-00', end_date varchar(20) default NULL, title varchar(255) default NULL, event_image varchar(64) default NULL, link varchar(255) default NULL, OSC_link varchar(255) default NULL, description text, date_added datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (event_id,language_id)) TYPE=MyISAM;
    to

    Code:
    DROP TABLE IF EXISTS events_calendar;
    CREATE TABLE events_calendar (event_id int(3) NOT NULL auto_increment, language_id int(11) NOT NULL default '1', start_date date NOT NULL default '0000-00-00', end_date varchar(20) default NULL, title varchar(255) default NULL, event_image varchar(64) default NULL, link varchar(255) default NULL, OSC_link varchar(255) default NULL, description text, date_added datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (event_id,language_id)) ENGINE=MyISAM;
    or modify it to this:
    Code:
    DROP TABLE IF EXISTS events_calendar; CREATE TABLE events_calendar (event_id int(3) NOT NULL auto_increment, language_id int(11) NOT NULL default '1', start_date date NOT NULL default '0000-00-00', end_date varchar(20) default NULL, title varchar(255) default NULL, event_image varchar(64) default NULL, link varchar(255) default NULL, OSC_link varchar(255) default NULL, description text, date_added datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (event_id,language_id));
    No need to include the "ENGINE=MyISAM" part at all.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #210
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Event Calendar

    Attention All

    Large parts of this mod will not work with php5.3, due to the prevalence of HTTP_GET_VARS, HTTP_POST_VARS and probably other bits of code - as indicated by the following post:

    http://www.zen-cart.com/entry.php?2-...use-on-PHP-5-3

    Bits found to no longer work are
    Add Event button in Admin > Extras > Events Manager
    View Year and View Selected Month (aka Go) Buttons in sidebox

    I am going to try to fix the problems, but please do not hold your breath waiting for my fix.

 

 
Page 21 of 50 FirstFirst ... 11192021222331 ... LastLast

Similar Threads

  1. Timeslot Booking Event Calendar
    By escapis in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 31 Jan 2014, 12:45 AM
  2. Multiple Choices error with Event Booking Calendar addon
    By FukienMan in forum All Other Contributions/Addons
    Replies: 9
    Last Post: 16 Feb 2012, 12:17 AM
  3. Help with Event Calendar add-on
    By blabay in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 24 Mar 2010, 01:34 PM
  4. Event Calendar Broken - take out of download section!
    By Asmodai in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 10 Nov 2007, 07:22 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg