Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7714453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T02:07:49+00:00 2026-06-01T02:07:49+00:00

I have been using fullcalendar plugin successfully for a few months and suddenly ran

  • 0

I have been using fullcalendar plugin successfully for a few months and suddenly ran into a bug. It won’t display an event on March 31st 2012. This behavior doesn’t happen on our test site server running php v5.3.8, but does on our live site server. That server is running php v5.3.6.

Can someone shed some light on this situation. Is it possibly related to daylight savings? How do I fix this?

Thanks for any help.

CODE:

<script type="text/javascript">
$(document).ready(function() {
    $('#calendar').fullCalendar({
        theme: "true",
        aspectRatio: 1.8,
        weekMode: 'liquid',
        header: {
            left: "",
            center: "prev title next",
            right: ""
        },
        buttonIcons:{
            prev: "triangle-1-w",
            next: "triangle-1-e"
        },
        eventSources: [
            {
                url: 'VS_race_events.php',  // Event Source One //
                type: 'POST',
                error: function() {
                    alert('there was an error while fetching events!');
                },
                color: '#006600',
                textColor: 'white'
            },
            {
                url: 'VS_work_events.php',  // Event Source Two //
                type: 'POST',
                error: function() {
                    alert('there was an error while fetching events!');
                },
                borderColor: '#006600',
                color: 'beige',
                textColor: '#333333'
            }
        ],
        eventClick: function(calEvent, jsEvent, view) {
            $("#dialog_frame").css("visibility", "visible");
            $("#dialog_frame").draggable("enable");
            $(".dialog_content").html(calEvent.description);
            $(".dialog_title").html(calEvent.title);         
        }   
    })
});
</script>

Here is VS_work_event file:

<?php
require_once('Connections/HDAdavePDO.php');

if (isset($_POST['start'])) {
  $unix_start = $_POST['start'];
  $date_start = strftime("%Y-%m-%d",$unix_start);

}
if (isset($_POST['end'])) {
  $unix_end = $_POST['end'];
  $date_end = strftime("%Y-%m-%d",$unix_end);
}

$pdo = new PDO('mysql:host=' . $host . ';dbname='.$database, $username, $password);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$stmt2 = $pdo->prepare('SELECT * FROM vs_events WHERE event_date >= ? AND event_date < ?');
$stmt2->bindParam(1, $date_start);
$stmt2->bindParam(2, $date_end);
$stmt2->execute();
$stmt2->setFetchMode(PDO::FETCH_ASSOC);
$row_Calendar = $stmt2->fetchAll();

foreach ($row_Calendar as $row){
    if ($row['event_type'] == 13 && $row['active'] == 1){
    $display_date = substr($row['event_date'],0,10);
    $eventsArray['id'] =  $row['event_id'];
    $eventsArray['start'] = $display_date;
    $eventsArray['title'] = $row['event_subject'];
    $eventsArray['description'] = $row['event_text'];
    $eventsArray['type'] = $row['event_type'];
    $events[] = $eventsArray;
}
}
echo json_encode($events);
$pdo = null;
?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T02:07:51+00:00Added an answer on June 1, 2026 at 2:07 am

    Looking at the JSON response of both of your event sources, there is no event that I can see that takes place on March 31st.

    Your issue is likely on your server side querying of events or the event record itself, and not with FullCalendar.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been using Automapper in our projects and just recently ran into an
We have been using Scrum for around 9 months and it has largely been
I have been using json.NET successfully in projects for some time now without any
I have been using these files all day... And then suddenly this is now
I have been using TabActivity and I want the tab to display on every
I have been using this script for a while and suddenly it just stopped
We have been using CruiseControl for quite a while with NUnit and NAnt. For
I have been using PHP and JavaScript for building my dad's website. He wants
I have been using Eclipse as an IDE for a short amount of time
I have been using Castle MonoRail for the last two years, but in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.