cpanel

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • cheldon
    Corporal

    • Mar 2007
    • 19

    cpanel

    cheldon@computan.on.ca
    www.cavunpontario.org/calendar.html

    I have successfully uploaded a calendar to the cpanel file manager of my site.
    Despite noting that the file was to be placed in the host folder public_html, my web page only shows an open, blank rectangle where the calendar would be and not at the position on the web page where I expected it to be.
    What have I done wrong?
    TUVM
  • cheldon
    Corporal

    • Mar 2007
    • 19

    #2
    Re: cpanel

    Ooops!
    forgot to enter my client ID#14346

    Comment

    • Watdaflip
      Major General

      • Sep 2005
      • 2116

      #3
      Re: cpanel

      You should have a file called "mycalendar.swf" located at
      "http://www.cavunpontario.org/mycalendar.swf" (that is "public_html/mycalendar.swf")

      also you are missing a </object> tag at the end of the code for the calendar

      Register/Login Script
      Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

      Comment

      • cheldon
        Corporal

        • Mar 2007
        • 19

        #4
        Re: cpanel

        I'm not too sure if I have interpreted your reply correctly -
        Do I "link" the calendar page on my website as:
        http://www.cavunpontario.org/mycalendar.swf - and
        Do I add
        </object>
        after
        <embed src="mycalendar.swf" quality="high"
        Your assistance is certainly appreciated.
        TUVM

        Comment

        • Watdaflip
          Major General

          • Sep 2005
          • 2116

          #5
          Re: cpanel

          You don't link to it, the the code you have will request it, but if you were actually go to that location the file needs to be there.. currently its not

          As for the code it should look like

          Code:
          <object classid="clsid:d27 cdb6e-ae6d-11cf-96b8-444553440000"
          codebae="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
          width="200" height="220" id="CC7267015" align="middle">
          <param name="movie" value="mycalendar.swf"/>
          <param name="quality" value="high"/>
          <param name="FlashVars" VALUE="ww=200&hh=220"/>
          <param name="salign" value="lt"/>
          <param name="bgcolor" value="FFFFFF"/>
          </object>
          <embed src="mycalendar.swf" quality="high"/>

          Register/Login Script
          Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

          Comment

          Working...
          X