What I am doing wrong? FLV not found on the server!

I really need help please!

Here is a step by step of what I've done:

Created a folder on my desktop. . Mov copied to this folder. Created a new file in flash (Actionscript 3.0, CS3). Saved in the same folder on the desktop. Import video to import .mov file (progressive download, etc.). Fine imported video. I tested the movie and everything seems good. So, I have published. I checked the previews to publish and all look great!

Next, I took my my dekstop folder and all it's content (.mov, .fla, .flv, .swf, skin.swf, .html and .js) and uploaded to my ftp. When I go on the website that there is no evidence and it says there was an error opening the page. Then I looked at the activity and it is said that the .flv is not found. But I checked once AGAIN and the .flv is in the same folder as the rest of my files.

Am I missing a step? I am very new to Flash and I can't understand what I'm doing wrong. Can anyone help? Should I post this in another forum?

Thank you!

Check with your hosting provider to make sure that the MIME type is set to display FLV format.

Chris Georgenes
Adobe Community Expert
www.Mudbubble.com
www.keyframer.com
www.howtocheatinflash.com

Kirsten Vandenhouten wrote:
> I really need help please!
>
> Here is a step by step of what I've done:
>
> Created a folder on my desktop. . Mov copied to this folder. Creates a new
> flash (Actionscript 3.0, CS3) file. Saved in the same folder on the desktop. Used
> Import video to import the .mov (progressive download, etc.). Imported video
> fine. I tested the movie and everything seems good. So, I have published. I checked
> post previews and all look great!
>
> For the next, I took my folder my dekstop and all it's content (.mov, .fla,
(> .flv, .swf, skin.swf, .html and .js) and uploaded to my ftp. When I go to the
> site nothing appears and it says there was an error opening the page. Then
> I looked at the activity and it is said that the .flv is not found. But I checked
> AGAIN and the .flv is in the same folder as the rest of my files.
>
> Am I missing a step? I am very new to Flash and I can't understand what I'm
> hurt. Can anyone help? Should I post this in another forum?
>
> Thank you!
>

Tags: Adobe Animate

Similar Questions

  • resources for customizing Windows not found on the server

    Hola

    Tengo vsphere don't con vcenter, y estoy venga perform the tests y no can not desplegar una nueva Máquina virtual basandome in una plantilla, en el Assistant me da dice:

    resources cutomization Windows not found on the server

    Y todo aprarece appears.

    He descargado el sysprep y he probado en leave in several rutas distintas, probando a ver en cual works,... of momento in none pero me ha funcionado:

    C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\sysprep\1.1

    C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\sysprep

    C:\Archivos programa\VMware\Infrastructure\VirtualCenter Server\sysprep

    C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\sysprep

    C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\sysprep\1.1

    ¡¡Aucune hay manera wearing

    Saludos

    Hola

    Cuando you refieres a:

    The creo Ahí las carpetitas that enriched para los sistemas operating different.

    No you aparecian are con make? Como you comenta jose_maria no don't be crear carpetas sino use deben las existing. Perhaps the problem of the creation of cada vidéoconférence venga y permissions that the asignan... can VCenter no can access has provided carpetas.

    Puedes revisar permissions? o heredar desde sysprep?

    Saludos

    If upon esta u otras answer useful, por favor considered el puntos seleccionando respuesta correcta o util como asignar

    If you find this or any other answer useful please consider giving points by checking the answer useful or appropriate.

  • Download the procedure not found on the server.

    Hello

    I created a feature to download files using the Oracle (http://download.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28839/up_dn_files.htm#CIHBFCDH) tutorial. The files are copied from the flow table in a custom table named SR_ATTACHMENTS with the following structure:

    Default primary key Type Nullable data column name
    IMAGE_ID NUMBER - 1
    NAME VARCHAR2 (60) Yes.
    Filename VARCHAR2 (60) Yes.
    Mime_type VARCHAR2 (60) Yes.
    DOC_SIZE NUMBER Yes-
    CREATED_BY VARCHAR2 (255) Yes.
    DATE of CREATED_ON Yes-
    Content_type VARCHAR2 (60) Yes.
    BLOB BLOB_CONTENT Yes-
    REQ_ID NUMBER Yes-


    There is a file record in the SR_ATTACHMENTS table:

    SELECT MIME_TYPE, BLOB_CONTENT, filename, DBMS_LOB. GETLENGTH (blob_content)
    OF SR_ATTACHMENTS
    WHERE IMAGE_ID = '41090122232687300';

    Results:
    'MIME_TYPE', 'BLOB_CONTENT', 'FILENAME', 'DBMS_LOB. GETLENGTH (BLOB_CONTENT).
    ' application/pdf', "[no support for data type]", "relish_menu.pdf", "90353"


    Here is the link which is built in the apex in the column links:

    #OWNER # .file_download? p_index = #IMAGE_ID #.


    Here is the link as it appears on the page when the cursor is placed:

    http://My_server:7777/pls/Apex/PRSVCREQDEV.file_download?p_index=41090122232687300



    When the user clicks on the link, I get the following error:
    Not found
    The requested URL /pls/apex/PRSVCREQDEV.file_download was not found on this server.



    Here is the procedure:

    CREATE OR REPLACE PROCEDURE file_download (p_file in number) AS
    v_mime VARCHAR2 (48);
    V_LENGTH NUMBER;
    v_file_name VARCHAR2 (2000);
    Lob_loc BLOB;
    BEGIN
    SELECT MIME_TYPE, BLOB_CONTENT, filename, DBMS_LOB. GETLENGTH (blob_content)
    IN lob_loc, v_file_name, v_mime, v_length
    OF SR_ATTACHMENTS
    WHERE IMAGE_ID = p_file;
    --
    -set up the HTTP header
    --
    -Use a NVL around the mime type and
    -If it is null it the value application/octect
    -application/octect can initiate a download of windows window
    owa_util.mime_header (nvl(v_mime,'application/octet'), FALSE);

    -set the size so that the browser knows how to download
    HTP.p ("Content-length: ' |") v_length);
    -the name of the file will be used by the browser if users only one save as
    HTP.p ('Content-Disposition: attachment; filename = "" | ") Replace (Replace (substr (v_file_name, InStr(v_file_name,'/') + 1), Chr (10), null), Chr (13), null). '"');
    -close the headers
    owa_util.http_header_close;
    -Download the BLOB
    wpg_docload.download_file (Lob_loc);
    end file_download;
    /


    Grants are:

    Name of the constituent object of the privilege dealer
    NO PUBLIC PERFORMANCE NO PRSVCREQDEV FILE_DOWNLOAD


    Any help is greatly appreciated!

    Thank you
    Matt

    Hello

    No problem, by the way, don't forget you can assign points to get useful answers here ;)

    John
    --------------------------------------------
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd

  • What is going on? Resource not found on the development computer. Error loading VI in lvlib. Load error code 3: could not open the front panel.

    Hello!

    I'm new to libraries of LV and I am compiling my application for the first time with several new lvlib.

    The executable is apparently built without problem, but when I try to run it on the same computer, I get various error messages (4) on the different elements but a single library:

    «LavVIEW: resource not found.»

    "An error occurred loading VI ' LibraryA.lvlib: ItemA.vi '.

    LabVIEW support 3 error code: could not load façade. »

    After that I got the same message for points B, C and D, a final message pops up like this:

    "Missing Subvi LibraryA.lvilib:ItemA.vi in LibraryA.lvilib:CallerX.vi.

    Missing, Subvi LibraryA.lvilib:ItemB.vi in LibraryA.lvilib:CallerX.vi.

    Missing, Subvi LibraryA.lvilib:ItemC.vi in LibraryA.lvilib:CallerX.vi.

    Missing Subvi LibraryA.lvilib:ItemD.vi in LibraryA.lvilib:CallerX.vi. »

    I am not getting any errors for all libraries, so I wonder what is happening.

    So far I have tried:

    -Mass compilation, a few times

    -Check / uncheck 'delete unused library of the project members' and change project after library file removed unused members in the additional Exclusions Page «»

    -Add the screw mentioned in "Still included" in "Source Files".

    When I added the "Always included" screw, I rather got the following (4 times, end to end):

    "The Vi is not executable. The version of LabVIEW full development is necessary to correct the errors. [...]"

    Any other ideas?

    Thank you!

    I have it!

    My problem wasn't a bug compilation of the library at all, but a Scilab Script one.

    The solution can be found here: http://digital.ni.com/public.nsf/allkb/D21F6AC8CFC39E318625756600553B1E

    Thanks for your help, it made me identify!

    Good day!

  • XP / customizations not found on the server

    We went to vCenter 4.1 4.0.  I reinstalled from scratch.  Before the upgrade / reinstall sysprep worked.  Anyway, now I can not customize XP.  It's not a big deal, we get only a few a week, but I try to understand why it does not find the sysprep command Customize for XP.

    The program data is always the right folder?  There may be another way, that I do not see to the sysprep command.

    The rest of the customizations all work well, 2000, 2003.  They are in the sysprep folder and I can clone those with custom settings, no problem, it's only the XP that does not work.

    Is there a particular version of sysprep XP looking FOR?

    Here are all of the "stuff" that you need.

    http://KB.VMware.com/kb/1005593

  • Question: I can't understand what I'm doing wrong and would so appreciate the help.

    I really need help! I took on a project to produce an online publication for a non-profit club for free as they couldn't get everyone. My experience in communications, but not to the level of design or layout. I bought a how-to book and InDesign and the first issue turned out to be quite well. However, I ran into a problem with the second question that I can't go beyond, and it has to do with the lid. I have a color that works perfectly with seasonal masthead and the cover photo and I want to apply as the background for the cover page. I want the text box with the highlights of what's in the issue to appear on top of this background. I tried two different methods to make it happen.

    1. I made a text box to cover all the space and the shade of color. I have the photo of cover in place. Then I tried to add a text box so I could list the highlights. I couldn't kick it.

    2. I went back to zero and created the text box with the highlights. However, I don't see any way of application of the color as the background under the mast-head.

    I have no idea how I got this works with the first question that I did in the spring, as you can see on the second attached image.

    What this has to do with the layers?

    Thank you

    KarenIssue_one.png

    problem_cover.png

    It seems to me that you have skin applied to the backstory. You must reselect it (you need to unlock the layer again to do this), then open the cover Panel and assign no build-up (button on the left). Deselect everything, then make sure that the envelope is always set to none, so it is not automatically applied to new objects.

  • I have a vista when I try to e-mail whatever it is, it gives me code 0 x 80070057 is does anyone know what I am doing wrong? Thank you for the error messages

    Ideas:

    • You have problems with programs
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    The Exchange profile update tool fails and error 0 x 80070057 is logged in Exchange Server 2003

    Please click on the link below and follow the steps as indicated on the page. This should solve the problem.

    http://support.Microsoft.com/kb/889296

    MD MOEEN AJAZ KHAN (MCP)

  • video not found on the server

    When I try to access my videos on my web site I get an error «» I activated the webem, mp4 and ogg on the server. Yet, all I get is a black box with thecontrols.

    I tried this. It is, after my site is playing my video, it shows several other lists rather than just stop.

    If you have any other suggestions, I try again the people sever.

    Thank you.

  • What I'm doing wrong here? It's driving me crazy!

    I can't understand what I'm doing wrong here. This displays the first line and then stops. WHY? I included the code and the error message. Help, please!

    < cfquery datasource = "manna_premier" name = "zone_report" >
    SELECT DISTINCTROW Users.UserID, Users.UserFirstName, Users.UserLastName, Users.UserZone, First (Orders.SaleDate) [FIRST of SaleDate], First (Orders.TerritoryManager) [FIRST of TerritoryManager], Sum (Orders.UserID) [sum of Orders_UserID], Count (*) AS [order number]
    THE USERS INNER JOIN Orders WE users. [Username] = orders. [User name]
    WHERE SaleDate BETWEEN #CreateODBCDate (FORM. Implementation) # AND #CreateODBCDate (FORM. End) #.
    GROUP Users.UserID, Users.UserFirstName, Users.UserLastName, Users.UserZone;
    < / cfquery >

    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = iso-8859-1 "/ >"
    < title > manna Prime - ZVP report < /title >
    < style type = "text/css" >
    <!--
    {.style1}
    do-size: 18px;
    make-weight: bold;
    }
    .style3 {make-size: 14px; make-weight: bold ;}}
    ->
    < / style >
    < / head >

    < body >

    < cfoutput >
    < span class = "style1" > < of police = "Tahoma" > ZVP #FORM report. Start # to #FORM. End #. < br / >
    < / police > < / span > < / cfoutput >

    < cfoutput query is group of 'zone_report' is "UserZone" >
    < span class = "style1" > < of police = "Tahoma" > #UserZone # area < / police > < / span > < br / >

    < cfoutput group = "Users.UserID" >
    < span class = "style3" > < of police = "Tahoma" > #UserLastName #, #UserFirstName # < / police > < / span > < br / >


    < table width = '500' border = '0' >
    < tr > < cfoutput >

    < td > < table >
    < td > #zone_report. RecordCount # < table >
    < td > < table >
    TotalOrders < td > < table >
    ClosePercentage < td > < table >
    TotalItems < td > < table >
    TotalNewItems < td > < table >
    < td > < table >
    < /tr > < / cfoutput >


    < /table >


    < / body >
    < / html >
    < / cfoutput >
    < / cfoutput >

    Here is the error message;

    The web site, you access has met an unexpected error.
    Please contact the site administrator.

    The following information is for the creation of Web sites for debugging purposes.
    Error occurred while processing request

    Column name not valid for the attribute of the group.

    The value specified for the attribute of the group Users.UserID does not specify a column name for the query.
    The error occurred in D:\Inetpub\mannapremier\zvp_report2.cfm: line 45
    43 : 
    44 :     <td></td>
    45 :     <td>#zone_report.RecordCount#</td>
    46 :     <td></td>
    47 :     <td>TotalOrders</td>
    

    Well, in your application, you are prefacing the name of the "UserID" column with the name of the source table: "users."

    SELECT DISTINCTROW TableName.UserID

    The source table name is only used by your database.  CF don't know nor care which table a column came. He spent just the sql in your database code.  When your database returns the information to cfquery, all CF sees is the names of the columns, not their source tables.  While he sees as only the names of columns:

    Users.UserID no username ...

    Users.UserZone not UserZone ...

    ... etc...

    The column name in the 'group' should be 'UserID'... not 'Users.UserID.  Because the CF has no idea what it means. If you ever want to display the names of the columns in your query, just do a dump to the variable "columnList":

    .. .the table SQL alias

    I wanted to tell the nameof the table, not of alias.

  • any simple procedural error off... What am I doing wrong?

    I created a very simple procedure like below to collect statistics of schema for 3 schema diff...
    its getting created but with compilation errors...
    CREATE OR REPLACE PROCEDURE SCOTT.ANALYZE
    AS
    BEGIN
    execute immediate dbms_stats.gather_schema_stats(ownname=>'ABC_OWNER', cascade=> TRUE, estimate_percent=> NULL);
    execute immediate dbms_stats.gather_schema_stats(ownname=>'QWE_OWNER', cascade=> TRUE, estimate_percent=> NULL);
    execute immediate dbms_stats.gather_schema_stats(ownname=>'ZXC_OWNER', cascade=> TRUE, estimate_percent=> NULL);
    END;
    /
    ATTENTION: updated, but with compilation errors


    AND WHEN I DEBUG THIS PROCDEU I GET THE INFORMATION BELOW... WHAT AM I DOING WRONG HERE?



    SCOTT OF THE PROCEDURE. ANALYZE
    Online: 4
    PLS-00306: wrong number or types of arguments in the call to 'GATHER_SCHEMA_STATS '.

    You may not execute immediate.

    CREATE OR REPLACE PROCEDURE SCOTT.ANALYZE
    AS
    BEGIN
    dbms_stats.gather_schema_stats(ownname=>'ABC_OWNER', cascade=> TRUE, estimate_percent=> NULL);
    dbms_stats.gather_schema_stats(ownname=>'QWE_OWNER', cascade=> TRUE, estimate_percent=> NULL);
    dbms_stats.gather_schema_stats(ownname=>'ZXC_OWNER', cascade=> TRUE, estimate_percent=> NULL);
    END;
    / 
    
  • Center a background image [was: how it's done... what I'm doing wrong...]

    Hello

    I'm a bit new to DW.  I have a .jpg file is 1000pixels wide and 1100 high pixies that I want to use as the background for my site.  I want the picture is centered (not left-justified).  Then I want two tables on top of this image.  The first will be for my buttons/links and the second will be for any text and images that will be displayed below buttons.

    I got it works in DW and it seems fine when he spotted in a browser.  However, after downloading it, my background image disappears and I get a question mark.

    http://test.taffyproductions.com/

    In addition, both my paintings is centered, but the background image is not.

    Thanks to all who can help.

    Gary

    [Subject online edited by moderator to clearly indicate what is talking about the issue]

    This file is 404 - not found on the server.

    http://test.taffyproductions.com/_images/Taffyhome.jpg

    A you download in the server?  BTW, I'm not too keen on the use of underscore in file names or folder.  Why not just name it "images?

    Finally, it is very difficult to try to align precisely images and text on a huge background image. He works in print design, but is not an ideal way to work with web pages. Be sure to test your site often in all browsers and text sizes.  You can be in for some big surprises if you do not.

    To Center a page with CSS background:

    {body

    background: top center of no repeat of url (path/filename.jpg);

    }

    Good luck

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    www.Alt-Web.com/
    www.Twitter.com/ALTWEB
    www.Alt-Web.blogspot.com

  • Smartphones Wireles blackBerry sync not found in the options for one of the modules 'synchronized '.

    When syncing, I get a message that my calendar Outlook cannot be synchronized because wireless is turned on.  Help said me.

    On your BlackBerry® device, in the calendar, Contacts application, tasks of application or Notepad application, press the Menu key > Options.
    If necessary, click a calendar or contact list.
    Change the field in no. wireless sync or uncheck the wireless sync.
    Press Menu > save.

    the problem is that when I go in the Options there is no field 'wireless synchronization '.  Everything I find is the calendar view, by calling rooms and Date & time. The two accounts, my gmail one & the blackberry.net acount are also displayed.

    What am I doing wrong or I am barking the wrong tree?

    Ken

    OK, I am currently perplexed.  I ask that your son be moved to the Commission from the BlackBerry Desktop Software and maybe someone else can help more.

  • I am a member of creative cloud and bought the edition of students.  When I go to the Apps on my cloud he said "try."  But I bought it, I do not have a trial.  It should say "Download", not "Download Trial".  What I am doing wrong?  It is said that I paid

    Why am I not able to 'Download' cloud Apps edition I paid for students?  Everything he says is "Download Trial" or "Try" on my creative application of cloud.  I am frustrated because I paid for the full thing, not a trial.  Anyone know what I'm doing wrong?

    Then, I found a solution for my problem and maybe yours? It's the windows host file.

    If you cannot open the Web page and then reset the hosts file.

    • Launch an Internet, such as Firefox or Internet Explorer browser, and open one of the following links, depending on the version of Creative Suite:

      If you see a successful test message (see screenshots below), you have access to the activation servers. Activation of the trial or from your software.

      CS5.5: Test passed

      CS6 and later versions: Test successful

      Still problems? Go to step 3. Reset the hosts file.

    • Reset the hosts file:

      Note: you may need to deactivate you security software to change your hosts file.

      Windows

      1. Click Start > run, type % systemroot % \system32\drivers\etcand press enter.
      2. Right-click on the hosts file, and then select Open. Select the application Notepad open the hosts file.
      3. Save the hosts file: choose file > record under, save the file as hosts.backup, and then click OK.
      4. Look for the hosts file for entries referencing activate.adobe.com (for example,127.0.0.1 activate.adobe.com) and delete these entries.
      5. Save and close the file.

    If you still have problems I suggest you have a look here

    When I open my creative cloud application he asks me my serial number?

  • I got a Apple Watch yesterday and since put in place and paired him and everything, but now I can not unlock it or look at anything on the watch because it won't let me.  Any ideas as to what is wrong or what I am doing wrong?

    I got a Apple Watch yesterday and since put in place and paired him and everything, but now I can not unlock it or look at anything on the watch because it won't let me.  Any ideas as to what is wrong or what I am doing wrong?

    Hello

    If you have not already done so, it could be that you want to configure your watch with these settings:

    -On your iPhone, in the application of Eve, go to: My Watch (tab) > General > detection of wrist - it lights up.

    -On your iPhone, in the application of Eve, go to: Watch My > password > code turn on (choose a password Simple or more complex).

    -Also on the password settings screen, select Unlock with iPhone.

    After putting on your wrist, your watch don't unlock then after whatever you do first: unlock your watch manually (by entering the access code) or unlock your iPhone.

    Then, it will remain unlocked (including when the screen is idle) until you remove it from your wrist. When you remove your watch, it locks automatically.

    More information:

    https://help.Apple.com/watch/#/apd748b87e2a

  • I have type in a new web site in the address bar. Press enter, nothing happens? Went to internet expl. ORER and tried. It worked. Uninstalled Mozilla twice. reinstalled. Still, the address bar does not go to the new site. What I am doing wrong?

    I type in a new web site in the address bar. Press ENTER. Wait. Wait. type in the same new website in the search bar. It goes straight. Uninstalled Mozilla twice. Reinstalled. Tried to go to a new web site. you press on enter. Nothing. What I am doing wrong? I tried this procedure in Internet Explorer and the new address was excluded.

    Hi markehrmann,

    I'll try from Firefox Firefox to solve the issues in Safe Mode. If you do not have the issue so that all your modules, extensions, and themes are disabled, you can try adding them in one by one until you find the culprit. You should look at the guide to troubleshooting Extensions and themes and article troubleshooting issues with plugins like Flash or Java to solve common Firefox problems as well.

    Hope this helps!

Maybe you are looking for