Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 500

Hybrid View

  1. #1
    Join Date
    Mar 2010
    Posts
    9
    Plugin Contributions
    0

    Default Re: Event Calendar

    Hi all,

    Just installed Event Calender on Zen Cart v1.3.9h and in Admin/Extras/Event Manager I just cannt creat a new Event. When I click on New i just get the same page.

    Mustt bo something to do with this in events_manager.php
    Code:
    <?php
    if ($HTTP_GET_VARS['action'] == 'new') {
        $form_action = 'preview';
        if ($HTTP_GET_VARS['eID']) {
          $eID = zen_db_prepare_input($HTTP_GET_VARS['eID']);
          $form_action = 'preview';
          $events = $db->Execute("select event_id, start_date, end_date, event_image, link, OSC_link, date_added from " . TABLE_EVENTS_CALENDAR . " where event_id = '" . zen_db_input($eID) . "'");
          
          //while (!$events->EOF) {
          
           //	$events->MoveNext();
     	//}
          //$events = zen_db_fetch_array($events_query);
          }
          $start_d =($HTTP_POST_VARS['start'] ? $HTTP_POST_VARS['start'] : $events->fields['start_date']);
          $end_d =($HTTP_POST_VARS['end'] ? $HTTP_POST_VARS['end'] : $events->fields['end_date']);
          //print_r ($events);
          $languages = zen_get_languages();
              for ($i = 0, $n = sizeof($languages); $i < $n; $i++) {
              $language_id = $languages[$i]['id'];
    
              $events_language[$i] = $db->Execute("select title, description from " . TABLE_EVENTS_CALENDAR . " where event_id = '" . zen_db_input($eID) . "' and language_id = '" . $languages[$i]['id'] . "'");
            // $events_language[$i] = zen_db_fetch_array($events_language_query);
            //$events_language[$i] = $events_language;
              //print_r ($events_language[$i]);
          }
    ?>
    any thoughts?

  2. #2

    Default Re: Event Calendar

    Quote Originally Posted by bunker0 View Post
    Hi all,

    Just installed Event Calender on Zen Cart v1.3.9h and in Admin/Extras/Event Manager I just cannt creat a new Event. When I click on New i just get the same page.

    any thoughts?
    There's alot of bugs in this mod and won't work correctly out-of-the-box. Take a look at this post by DivaVocals who was kind enough to list all the patches found throughout this thread ...
    http://www.zen-cart.com/forum/showpo...&postcount=171

  3. #3
    Join Date
    Sep 2011
    Posts
    1
    Plugin Contributions
    0

    Default Re: Event Calendar

    I have this mod working correctly. I would like to have a time be put on the events calendar instead of start date and finish date. Can anyone code a time input feature into this mod for me. I'm willing to pay for this service.

  4. #4
    Join Date
    Apr 2008
    Location
    Cape Cod, Massachusetts, USA
    Posts
    26
    Plugin Contributions
    0

    Default Re: Event Calendar

    DezineJunkie, did you ever get this straightened out? I seem to be having the same problem. Any advice would be greatly appreciated.

  5. #5
    Join Date
    Apr 2008
    Location
    Cape Cod, Massachusetts, USA
    Posts
    26
    Plugin Contributions
    0

    Default Re: SOLVED Event Calendar | Apple Zen template

    Yippee! I found a solution for the display problem in the Apple Zen template.

    Problem: When I clicked on an event to view details, all of the side boxes displayed on the left, below the details. Finally realized, it was because the table was taking up all three columns in the template.

    Solution: Open up includes/templates/apple_zen/templates/tpl_events_calendar_default.php. On line 64 change:
    <table border="0" width="100%" cellspacing="3" cellpadding="3" align="left">

    to

    <table border="0" width="80%" cellspacing="3" cellpadding="3" align="left">

    Now the sideboxes should display in the right column!

    Oh happy day. I had a moment of clarity.

  6. #6
    Join Date
    May 2004
    Location
    Northern Ontario, Canada
    Posts
    440
    Plugin Contributions
    0

    Default Re: Event Calendar

    Is anyone using this in 1.3.8?

    It seemed to install for me OK. I have a few funky layout issues to resolve, but should be able to sort that out.

    The bigger issue is that when try to add an event, there is no button for me to save my new event, and there is an error on the screen, towards the bottom right of the link area, and then nothing beyond that. I have two pop-up menus in my link area (Manufacturers and Categories) and then the error.

    The error is
    Code:
    Fatal error: Cannot use string offset as an array in /home/user/public_html/admin/includes/classes/table_block.php on line 77
    Any thoughts?

    Ps. This is a php 5 server. That smacks of a php 4 vs 5 issue.
    Last edited by verdon; 25 Jun 2008 at 08:00 PM. Reason: postscript

  7. #7

    Default Re: Event Calendar

    Quote Originally Posted by verdon View Post
    Is anyone using this in 1.3.8?

    It seemed to install for me OK. I have a few funky layout issues to resolve, but should be able to sort that out.

    The bigger issue is that when try to add an event, there is no button for me to save my new event, and there is an error on the screen, towards the bottom right of the link area, and then nothing beyond that. I have two pop-up menus in my link area (Manufacturers and Categories) and then the error.

    The error is
    Code:
    Fatal error: Cannot use string offset as an array in /home/user/public_html/admin/includes/classes/table_block.php on line 77
    Any thoughts?

    Ps. This is a php 5 server. That smacks of a php 4 vs 5 issue.

    I was using 1.3.8 also. I am not sure what part i did wrong. I was forced to delete the entire upload to get access back into the admin side. I didnt copy the error code, just stated some fatal error from ._events_manager.php

    so again, should i not be uploading the files with the ._ before the file name?
    http://www.fusionspiritualemporium.com
    Contrib: Events Calender v1.02 update

  8. #8
    Join Date
    May 2004
    Location
    Northern Ontario, Canada
    Posts
    440
    Plugin Contributions
    0

    Default Re: Event Calendar

    Quote Originally Posted by fusionsp View Post
    I was using 1.3.8 also. I am not sure what part i did wrong. I was forced to delete the entire upload to get access back into the admin side. I didnt copy the error code, just stated some fatal error from ._events_manager.php

    so again, should i not be uploading the files with the ._ before the file name?
    Have you moved these files around a Mac or something? Those ._ files are (in my experience) hidden system files created by Mac OS and are garbage. I would not upload them and I do not believe they are part of the package.

  9. #9

    Default Re: Event Calendar

    Quote Originally Posted by verdon View Post
    Have you moved these files around a Mac or something? Those ._ files are (in my experience) hidden system files created by Mac OS and are garbage. I would not upload them and I do not believe they are part of the package.
    no i haven't, they were included in the version i downloaded. it was events_calendar_1-01RC1

    basically, every file had a duplicate file with the ._ in front of it? So, those are for Mac systems only? sorry, have been pc guy for 25 yrs or so. never seen them before.
    http://www.fusionspiritualemporium.com
    Contrib: Events Calender v1.02 update

  10. #10

    Default Re: Event Calendar

    Quote Originally Posted by verdon View Post
    Is anyone using this in 1.3.8?

    It seemed to install for me OK. I have a few funky layout issues to resolve, but should be able to sort that out.

    The bigger issue is that when try to add an event, there is no button for me to save my new event, and there is an error on the screen, towards the bottom right of the link area, and then nothing beyond that. I have two pop-up menus in my link area (Manufacturers and Categories) and then the error.

    The error is
    Code:
    Fatal error: Cannot use string offset as an array in /home/user/public_html/admin/includes/classes/table_block.php on line 77
    Any thoughts?

    Ps. This is a php 5 server. That smacks of a php 4 vs 5 issue.
    wow, this has been the hardest addon box i found so far in zencart. i have the same error. any suggestions as to fixing it.

    oddly, when i uploaded my file all the code got jumbled up and there was no spacing to a few of the files?
    http://www.fusionspiritualemporium.com
    Contrib: Events Calender v1.02 update

 

 
Page 2 of 3 FirstFirst 123 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