+ Reply to Thread
Results 1 to 5 of 5

Thread: cpanel
      
   

  1. #1
    cheldon's Avatar
    cheldon is offline Corporal
    Join Date
    Mar 2007
    Posts
    19

    Default 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

  2. #2
    cheldon's Avatar
    cheldon is offline Corporal
    Join Date
    Mar 2007
    Posts
    19

    Default Re: cpanel

    Ooops!
    forgot to enter my client ID#14346

  3. #3
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default 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

  4. #4
    cheldon's Avatar
    cheldon is offline Corporal
    Join Date
    Mar 2007
    Posts
    19

    Default 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

  5. #5
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default 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

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49