Same file on same server but swf not working on different domanis!?

Hello folks, I have some problems with an flash game file.
I have uploaded same file on same server, using the same FTP client(FileZilla), but at one website file not work.
Here are the link for those swf file:
http://www.gamesjocuri.ro/files/ursuletul-panda.swf
http://www.jocurios.ro/fisiere/swf/ursuletul-panda.swf
The server use nginx for serving files;
Can somebody can give me an advice?
Many thanks!

Hello folks, I have some problems with an flash game file.
I have uploaded same file on same server, using the same FTP client(FileZilla), but at one website file not work.
Here are the link for those swf file:
http://www.gamesjocuri.ro/files/ursuletul-panda.swf
http://www.jocurios.ro/fisiere/swf/ursuletul-panda.swf
The server use nginx for serving files;
Can somebody can give me an advice?
Many thanks!

Similar Messages

  • Please hepl me. i m intergrating ejb3 and struts in two server. but is not working

    it is simple application i m runing in tow server but i m get classsnotfound error pleas solve my problem. i will give my direct structure of application
    i m runing ejb3 in weblogic 10.3 and struts in tomcat server. both communication is not happening pleas help me. i m try from many days. But is not working form me
    root dir
    onlyenb6
    account class
    package ejb3.onlyejb;
    import java.io.Serializable;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    @Entity
    public class account implements Serializable{
    @Id
    int accno;
      public int getAccno() {
        return accno;
    public void setAccno(int accno) {
        this.accno = accno;
    public String getName() {
        return name;
    public void setName(String name) {
        this.name = name;
    public float getBalance() {
        return balance;
    public void setBalance(float balance) {
        this.balance = balance;
    String name;
    float balance;
    Int6_clss code
    package ejb3.onlyejb;
    import java.io.Serializable;
    public interface Int6_cls extends Serializable {
        public void storing(int acc, String name, float amt);
    Session.class code
    package ejb3.onlyejb;
    import javax.ejb.Remote;
    import javax.ejb.Stateless;
    import javax.persistence.EntityManager;
    import javax.persistence.PersistenceContext;
    @Stateless(mappedName="saigoud")
    @Remote
    public class Session_ben implements Int6_cls {
        @PersistenceContext
        EntityManager mrg;
        public void storing(int acc, String name, float amt) {
    System.out.println("session="+acc);
    System.out.println("sess="+name);
            account accs=new account();
            accs.setAccno(acc);
            accs.setName(name);
            accs.setBalance(amt);
            mrg.persist(accs);
    build.xml
    <project name="onlyejb5" default="saifile">
    <property name="bea.home" value="C:/bea"/>
    <property name="wl_home" value="${bea.home}/wlserver_10.3"/>
    <path id="main.class.path">
    <pathelement path="${bea.home}/modules/com.bea.core.utils_1.4.0.0.jar"/>
    <pathelement path="${bea.home}/modules/com.bea.core.jarbuilder_1.2.0.0.jar"/>
    <pathelement path="${java.class.path}"/>
    </path>
    <target name="saifile">
    <echo message="***ANT Script should run from inside the ${wl.home}/server/lib *****" />
    <echo message="***** ********* ********* *****" />
    <java classname="com.bea.jarbuilder.JarBuilder">
    <classpath refid="main.class.path"/>
    <jvmarg value="-d ${wl.home}/server/lib -jar wljarbuilder.jar"/>
    </java>
    </target>
    </project>
    after run with ant i get successfully create wlfullclient.jar
    i m taking this wlfullclient.jar and pasting in tomcat lib directery and run webapplication
    my webapplication code
    package ejb3.onlyejb;
    import java.io.Serializable;
    public interface Int6_cls extends Serializable {
        public void storing(int acc, String name, float amt);
    package ejb3.onlywed;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.util.Hashtable;
    import java.util.Properties;
    import javax.ejb.EJB;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import ejb3.onlyejb.Int6_cls;
    public class Action_cls extends Action {
            public ActionForward execute(ActionMapping map, ActionForm fm, HttpServletRequest req, HttpServletResponse res)
        throws IOException{
            String respkey="fails";
            Action_form_bean bean=(Action_form_bean)fm;
            int ac=bean.getAccno();
            String na=bean.getName();
            float bal=bean.getAmt();
            System.out.println("accno="+ac);
    System.out.println("na="+na);
    System.out.println("bal="+bal);
    System.out.println("enter in to if loop");
               Hashtable p=new Hashtable();
    p.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    p.put(Context.PROVIDER_URL,"t3://localhost:7001");
            System.out.println("jndi properties nuderprocess");
               try {
    System.out.println("loading p file="+p);
                InitialContext ic = new InitialContext(p);
    System.out.println("loading p file over="+ic);
            System.out.println("jndi file is  loaded");
          //System.out.println("wrs="+wrs);
    System.out.println("entry in try block");
    Int6_cls wrs=(Int6_cls)ic.lookup("saigoud#ejb3.onlyejb.Int6_cls");
           System.out.println("lookup susfull");
              wrs.storing(ac, na, bal);
        respkey="ok";
              } catch (NamingException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
            catch (Exception e) {
                // TODO: handle exception
            ActionForward fw=map.findForward(respkey);
            return fw;
    get error
    accno=44
    na=hjhjhj
    bal=777.0
    enter in to if loop
    jndi properties nuderprocess
    jndi properties nuderprocess22
    loading p file={java.naming.provider.url=t3://localhost:7001, java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory}
    loading p file over=javax.naming.InitialContext@12f9bcd
    jndi file is  loaded
    entry in try block
    Jul 5, 2013 1:36:22 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet action threw exception
    java.lang.ClassNotFoundException: ejb3.onlyejb.Int6_cls
        at weblogic.ejb.container.deployer.RemoteBizIntfClassLoader.getClassBytes(RemoteBizIntfClassLoader.java:151)
        at weblogic.ejb.container.deployer.RemoteBizIntfClassLoader.loadClass(RemoteBizIntfClassLoader.java:96)
        at weblogic.ejb.container.internal.RemoteBusinessIntfGenerator.generateRemoteInterface(RemoteBusinessIntfGenerator.java:54)
        at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.readObject(RemoteBusinessIntfProxy.java:205)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
        at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1846)
        at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
        at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
        at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1945)
        at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1869)
        at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
        at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
        at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
        at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:197)
        at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:564)
        at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:193)
        at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62)
        at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:240)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
        at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source)
        at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:392)
        at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:380)
        at javax.naming.InitialContext.lookup(InitialContext.java:392)
        at ejb3.onlywed.Action_cls.execute(Action_cls.java:62)
        at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
        at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
        at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
        at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
        at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
        at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
        at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
        at java.lang.Thread.run(Thread.java:619)

    Locking multipost.

  • PXE not working - getting no boot file recived (done lots but still not working) boot image issue I think

    Hello
    Thank you for you time and help
    I am trying to set up a test OSD deployment on a virtual system. I have followed my book and it looks like its been set up correctly. I read lots of posts in this forum and others and I am still having issues. 
    The Issue
    When booting a client system getting "PXE-E53 - No boot filename received"
    That I have done
    1. Made sure that both my X64 and X86 Boot files have been distributed with "Deploy this boot image to from PXE-enabled DP" on both of them (looked under content statues on my DP and both are at 100)
    2.Removed my DP and WSDS role and restarted and reinstalled
    3. Created a new Boot image using a windows 2012 R2 DVD and used this in my task sequence, I removed both  of the boot images  (this got a bit further but I got an error telling me that It needs both X64 and X86). SO I readded them to my DP from
    the boot folder of my  E:\Program Files\Microsoft Configuration Manager\OSD\boot folder)
    Here is my SMSPXE file
    Client is set to use HTTPS when available. The current state is 224. SMSPXE 19/04/2015 16:15:43 6616 (0x19D8)
    Client lookup reply: <ClientIDReply><Identification Unknown="0" ItemKey="0" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification></ClientIDReply>
     SMSPXE 19/04/2015 16:15:43 6616 (0x19D8)
    PXE::CBootImageInfo::CBootImageInfo: key= SMSPXE 19/04/2015 16:15:43 6616 (0x19D8)
    PXE::CBootImageInfo::CBootImageInfo: key= SMSPXE 19/04/2015 16:15:43 6616 (0x19D8)
    Adding TRD00015.3 SMSPXE 19/04/2015 16:15:43 6616 (0x19D8)
    Adding TRD00016.2 SMSPXE 19/04/2015 16:15:47 6616 (0x19D8)
    Found new image TRD00015 SMSPXE 19/04/2015 16:15:52 6616 (0x19D8)
    Loaded C:\Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\wimgapi.dll SMSPXE 19/04/2015 16:15:52 6616 (0x19D8)
    Opening image file E:\RemoteInstall\SMSImages\TRD00015\boot.TRD00015.wim SMSPXE 19/04/2015 16:15:52 6616 (0x19D8)
    Found Image file: E:\RemoteInstall\SMSImages\TRD00015\boot.TRD00015.wim
     PackageID: TRD00015
     ProductName: Microsoft® Windows® Operating System
     Architecture: 9
     Description: Microsoft Windows PE (x64)
     Version: 
     Creator:
     SystemDir: WINDOWS
     SMSPXE 19/04/2015 16:15:52 6616 (0x19D8)
    Closing image file E:\RemoteInstall\SMSImages\TRD00015\boot.TRD00015.wim SMSPXE 19/04/2015 16:15:52 6616 (0x19D8)
    Found new image TRD00016 SMSPXE 19/04/2015 16:15:52 6616 (0x19D8)
    Loaded C:\Program Files (x86)\Windows Kits\8.1\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\wimgapi.dll SMSPXE 19/04/2015 16:15:52 6616 (0x19D8)
    ================= PXE Provider loaded. ===================== SMSPXE 19/04/2015 16:17:54 4496 (0x1190)
    Machine is running Windows Longhorn. (NTVersion=0X603, ServicePack=0) SMSPXE 19/04/2015 16:17:54 4496 (0x1190)
    Cannot read the registry value of MACIgnoreListFile (00000000) SMSPXE 19/04/2015 16:17:54 4496 (0x1190)
    MAC Ignore List Filename in registry is empty SMSPXE 19/04/2015 16:17:54 4496 (0x1190)
    Begin validation of Certificate [Thumbprint C4D34F3B6322A19274BBC9EF1F9D71ECC8B9EC71] issued to 'c8b0427c-2014-419b-b251-ef0a6fbd96a0' SMSPXE 19/04/2015 16:17:54 4496 (0x1190)
    Completed validation of Certificate [Thumbprint C4D34F3B6322A19274BBC9EF1F9D71ECC8B9EC71] issued to 'c8b0427c-2014-419b-b251-ef0a6fbd96a0' SMSPXE 19/04/2015 16:17:54 4496 (0x1190)
    Initializing PXEPerfObject. SMSPXE 19/04/2015 16:17:54 4496 (0x1190)

    I agree with Narcoticoo, most of the time this comes down to either firewall, IPhelper, or DHCP options getting in the way.
    MS best practice is to use _no_ DHCP options at all unless the DP/PXE is also a DHCP server.  So remove any OPtion 67,68 from DHCP. 
    Then check the pxe.log on your DP.  You should see the MAC address broadcast then the PXE/DP take action (or ignore it if things arn't correct).
    1.  If you don't see the appropriate MAC address broadcast, check IPHelper/firewall
    2.  If you see the MAC address broadcast but the DP ignores it, check your collections/deployments
    3.  If you see the PD respond in the pxe.log ... but the client does nothing, time to look at DHCP and make sure those silly options are cleared.

  • Bootstrap success but Synchronization not worked yet

    bootstrap success but Synchronization not worked yet
    this is i got in ActiveChgImp.trc
    Trace Log Started at Wed Jul 19 12:59:34 EEST 2006
    Initialized debug!!
    Set retry Count!!
    Set Scheduling Interval!!
    Initialised src connector
    Initialized Src Connector.
    TAG FOUND:(INTERFACEDETAILS)
    LINE,11:(Package: gsi)
    key:(Package)
    Value Continuation Not Present
    Putting Key into Hash :PACKAGE
    LINE,22:(Reader: ActiveChgReader)
    key:(Reader)
    Value Continuation Not Present
    Putting Key into Hash :READER
    LINE,31:(SkipErrorToSyncNextChange: false)
    key:(SkipErrorToSyncNextChange)
    Value Continuation Not Present
    Putting Key into Hash :SKIPERRORTOSYNCNEXTCHANGE
    LINE,19:(SearchDeltaSize: 500)
    key:(SearchDeltaSize)
    Value Continuation Not Present
    Putting Key into Hash :SEARCHDELTASIZE
    SkipErrorToSyncNextchange is set to: false
    Search Delta Size set to: 500
    Initialized Config Info.
    Initialized Provisioning Related Details
    Initialized Sync Mode.
    Mapping init successful
    Initialized Mapping Info.
    Initialized Filter Info.
    Initialized Execution Cmd.
    Initialized Status Attrs.
    LDAP URL : (tampro.Twa.com:389 [email protected]
    Specifying binary attributes: mpegvideo objectguid objectsid guid usercertificate orclodipcondirlastappliedchgnum
    LDAP Connection success
    Applied ChangeNum : 1295771Available chg num = 700
    Applied ChangeNum : 1295771Available chg num = 1295813
    and then run the server but Synchronization not worked yet

    hi,
    I used ldapmodify to modify "SkipErrorToSyncNextChange=true",but show errors,following:
    LDAP URL : (davidliu:11712 cn=Directory Manager
    Specifying binary attributes: mpegvideo objectguid objectsid guid usercertificate orclodipcondirlastappliedchgnum
    LDAP Connection success
    testsunone:Error in Mapping EngineODIException: DIP_GEN_INITIALIZATION_EXCEPTION
    ODIException: DIP_GEN_INITIALIZATION_EXCEPTION
         at oracle.ldap.odip.util.DirUtils.getLastChgNum(DirUtils.java:48)
         at oracle.ldap.odip.gsi.LDAPReader.initAvailableChgKey(LDAPReader.java:751)
         at oracle.ldap.odip.gsi.LDAPReader.initialise(LDAPReader.java:235)
         at oracle.ldap.odip.engine.AgentThread.mapInitialise(AgentThread.java:351)
         at oracle.ldap.odip.engine.AgentThread.execMapping(AgentThread.java:277)
         at oracle.ldap.odip.engine.AgentThread.run(AgentThread.java:165)
    testsunone:about to Update exec status
    Error in proxy connection : java.lang.NullPointerException
    so,according to the Solution of way, I used ldapmodify to fix the following one entrie:
    dn: orclODIPAgentName=testsunone,cn=subscriber profile, cn=changelog subscriber, cn=oracle internet directory
    changetype: modify
    replace: orclaci
    orclaci: access to attr = (*) by group="cn=odisgroup,cn=odi,cn=oracle
    internet directory" (read,write,search,compare)
    orclaci: access to entry by group="cn=odisgroup,cn=odi,cn=oracle
    internet directory" (browse,proxy)
    but it's looks like not success,also show "DIP_GEN_INITIALIZATION_EXCEPTION" error.
    why? anybody can help me,please! thank advance.
    I used the oracle portal_wireless_101200 and the SunONE Directory Server 5.2.
    Regards.
    david

  • Many of the times my Iphone 5s shows "No Service" in the specific network area, but if the same sim card is used with other mobiles in the same network area, it shows good network.. i did restore but still not working.. please help me..

    My Iphone 5s shows "No Service" in the specific network area, but if the same sim card is used with other mobiles in the same network area, it shows good network.. i did restore,change sim card, reset all the settings but still not working... please help me..

    Please do not double post a subject. Iphone 5S  I answered your other thread.

  • Restore database in the same server but with other sid (name)

    i try to restore the database in the same server but with other sid (name) . The backup is on tape and
    I want to know the steps I should follow.
    thank.

    To perform restore of database in same host to choose another DB name you can go for
    1) duplicate using RMAN.
    Directory structure should be different so take care of db_file_name_convert & log_file_name_convert parameters
    Also check the Tns services exactly is it pointing to target & auxiliary
    http://www.shutdownabort.com/quickguides/clone_rman.php
    http://www.oracle-base.com/articles/9i/DuplicateDatabaseUsingRMAN9i.php

  • I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    People who have Photoshop, but don't have Lightroom, need ACR so that they can use Raw files. Without ACR they could do nothing with those (they may also like having ACR so that they can work on other kinds of image using the same kinds of adjustments and techniques, as are used with Raw files).
    People who have Lightroom, can get access to Raw files regardless whether ACR is present or not. They can use Lightroom on other kinds of image also, using the same methods. LR can pass images directly into Photoshop without passing via ACR (or else does so transparently, which amounts to substantially the same thing).
    ACR does not, strictly speaking, even need to be installed for this external editing to happen. In fact, not even PS needs to be - since a different image editor can be used instead, while still retaining the Adobe Raw conversion etc.
    Lightroom "subcontracts out" specialised external tasks, in this workflow, but is still your "main contractor": the image is otherwise located, viewed, managed, adjusted/presented and output entirely using LR.
    So IMO we can divide image processing into:
    operations that involve pixels and layers and layer masks and adjustment layers etc (of the kind done inside Photoshop)
    operations that involve parametric edits (of the kind done in ACR where you are not using a Lightroom based workflow; otherwise, done inside Lightroom)
    When PS is called in, that's because those tasks are impossible or unsuitable to do in Lightroom. But those tasks can't be done in ACR either - by definition, since LR and ACR have exactly the same image processing "feature set".
    Lightroom is irrelevant to the Bridge + ACR + PS workflow. This workflow requires both your PS and your ACR to be current enough, to support your Raw format etc.
    ACR and Bridge are irrelevant to the LR + (image editor) workflow. It is in this case, only LR which needs to be current enough to support your Raw format etc.
    RP

  • I baught Seagate Backup plus 2T hard drive to use as my Backup time machine. But its not working when i connect to time machine its not coping files, it keep saying preparing files. Can someone help me please...

    i baught Seagate Backup plus 2T hard drive to use as my Backup time machine. But its not working. when i connect to time machine its not coping files, it keep saying preparing files. Can someone help me please...

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • I purchased Adobe photoshop elements II and Adobe premiere elements II. They are both on one disc. My computer crasded and I had to reload Windows. I only have one serial number and it only works with photoshop II. The same serial number will not work for

    I purchased Adobe photoshop elements II and Adobe premiere elements II. They are both on one disc. My computer crasded and I had to reload Windows. I only have one serial number and it only works with photoshop II. The same serial number will not work for Premiere. I dont have any other serial numbers. What do I do???

    Static_Unit
    I am getting a bit concerned about what is happening in your situation. Yesterday you posted your question in at least two different forums, one of them being here in the Premiere Elements Forum.
    Don't Have Serial Number for Premiere, Only Photoshop?
    Wherever you posted, the reply was to contact Adobe via its Adobe Chat. It is the only one who can sort out this matter for you.
    In the thread cited above I offered to help you with the difficulties that you were having visualizing the Adobe Chat in its web page. I was waiting for your follow up on that in the above thread. Instead, I find your same question in a new Adobe Premiere Elements Forum thread this afternoon with no refer the prior threads or prior recommendations given you.
    I will also mention again...when you buy the Photoshop Elements and Premiere Elements bundled in one packaging and with installation files for each on the same installation disc, each program has its own serial number. The Photoshop Elements serial number does not work for Premiere Elements and vice versa. The serial numbers are on labels on a box which houses the installation disc envelope(s). So, if you purchased both programs and found the Photoshop Elements serial number, then the Premiere Elements serial number should be in a label right underneath the label with the serial number for Photoshop Elements. I recall writing this in your yesterday's thread on this matter.
    The moderator will no doubt be along shortly to close or delete this thread. So, just in case, please bookmark your yesterday's thread cited above so that we can continue this communication which is trying to help you.
    Thanks.
    ATR

  • I would like to know why when i make a web page and test in my local browser it works fine then when i tranfer to my server i does not work fine example i used javascript to put a prompt bar on a page and it worked fine local but on server not working

    how come when i make a web site and i test it in my local server it works fine when i tranfer to server certain things do not work example i used javascript to put in a prompt bar for a newsletter page at the server it did not work but at local it did also it works at MOZZILLA but not internet explorer i also have cs4 was wondering if there is a way to test a page in dreamweaver and then transfer   THANK YOU X-FACTOR-MEDIA

    In future, please try to make the subject line of your posts shorter. In this case the following would have been sufficient: "JavaScript works locally, but not on remote server".
    Short, but meaningful subject lines make it easier for others to identify what your question is about, and often bring faster help.

  • Opening a new file in photoshopcc and the file name is displayed but no white working canvas. you can see it as a layer in the layers panel and if i draw on the grey area i can see int on the layer but not on the main screen.

    opening a new file in photoshop cc and the file name is displayed but no white working canvas. you can see it as a layer in the layers panel and if i draw on the grey area i can see int on the layer but not on the main screen.

    Graphics card is the problem.
    Trying to update drivers now.
    Thanks for your help
    john

  • I bought my iphone 4 through ebay and its unlocked. the problem is that my phone does not sync straight away. I sync my music file through autofill. I want to sync ringtones but its not working

    i bought my iphone 4 through ebay and its unlocked. the problem is that my phone does not sync straight away. I sync my music file through autofill. I want to sync ringtones but its not working.
    I saw cidya aap so i m not sure if it was jailbroken or not before but it is back to normal settings.
    My problem started when I tried to sync my music files. I pressed 'sync' all it says is waiting for sync start, preparing to sync and then waiting for the changes to be applied. but it does not sync at all.
    I found a way to sync my music files through autofill but I really wanted to sync ringtones but its not syncing and I really wanted to put ringtones in my phone please help.

    If you see the cidya app, your iPhone is hacked with the cutsie term for this being jailbroken. This also means all the built in security has been removed making the iPhone as insecure as an android device.
    Restore the iPhone with iTunes as a new iPhone or not from the backup to get rid of that hacking garbage. If the iPhone has hacked to be unlocked, the iPhone will no longer be unlocked when doing so.

  • "RTMFP" connected to the FMS server,but may not play multicast video?

    the question is,a client which can use "rtmfp" to connect to a FMS server,and the connecting success,Whether Can not guarantee that the client can play the Multicast video?
    because the client may be behind a Special firewall ,So he may connect to the FMS server ,but can not  use P2P to connect to the  members those are in the  group?
    If the answer is "yes",Whether i should make a check function that make these client  back to "RTMP"?

    Hi,
    Thanks for your interest in RTMFP.
    The following resources would help in giving all the required and relevant information :
    http://www.adobe.com/devnet/flashmediaserver/articles/real-time-collaboration.html
    General RTMFP Documentation : http://help.adobe.com/en_US/flashmediaserver/devguide/WSa4cb07693d123884520b86f312a354ba36 d-7ffe.html
    Port Requirements : http://help.adobe.com/en_US/flashmediaserver/configadmin/WSdb9a8c2ed4c02d261d76cb3412a40a4 90be-8000.html
    Thank you !

  • HT1695 Wi-Fi to your iPhone does not work with the knowledge that I have worked Restart for the same purpose network does not work What is the solution please help as soon as

    Wi-Fi to your iPhone does not work with the knowledge that I have worked Restart for the same purpose network does not work What is the solution please help as soon as

    Okay, the Wi-Fi doesn't work.  Turn it on.
    Beyond that, we cannot offer any other assistance as you've failed to provide useful details of the problem.
    When responding, post in your native language as your English makes very little sense.

  • 3?'s: Message today warning lack of memory when using Word (files in Documents) something about "idisc not working" 2. Message week ago "Files not being backed up to Time Capsule"; 3. When using Mac Mail I'm prompted for password but none work TKS - J

    3 ?'s:
    1  Message today warning lack of memory when using Word (files in Documents) something about "idisc not working"
    2. Message week ago "Files not being backed up to Time Capsule";                                                                                                                                             
    3. When using Mac Mail I'm prompted for password but none work
    Thanks - J

    Thanks Allan for your quick response to my amateur questions.
    Allan:     I'm running version Mac OS X Version 10.6.8     PS Processor is 2.4 GHz Intel core 15 
    Memory  4 gb  1067   MHz  DDr3  TN And @ 1983-2011 Apple Inc.
    I just "Updated Software" as prompted.
    Thanks for helping me!    - John Garrett
    PS.
    Hardware Overview:
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro6,2
      Processor Name:          Intel Core i5
      Processor Speed:          2.4 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache (per core):          256 KB
      L3 Cache:          3 MB
      Memory:          4 GB
      Processor Interconnect Speed:          4.8 GT/s
      Boot ROM Version:          MBP61.0057.B0C
      SMC Version (system):          1.58f17
      Serial Number (system):          W8*****AGU
      Hardware UUID:          *****
      Sudden Motion Sensor:
      State:          Enabled
    <Edited By Host>

Maybe you are looking for

  • What are the different Project Type Scenarios in SAP?

    hi experts, i am new to SAP, want to know how many types of SAP projects are there ? What is meant by Enhancement Projects ? if any info., helps me a lot to understand. thanks in advance sasi

  • Open shipping notification in md04

    Dear Experts, Please suggest how we can handle the qty differences arising from the goods receipt or return delivery in case of using the goods receipt w.r.t inbound delivery in system. In MD04 the diffrential quantities are shown as open shipping no

  • Wrong unit price on the invoice.

    Hi guys, Im requested to look at the production issue where an invoice gets its unit price printed incorrectly, though the other things such as gross weight, net weight , quantity and amount are printed correctly. also we have the sapscript which cal

  • My G4 synced my 2 new videos, but my G3 won't

    I'm syncing "to this computer" with the cable.  Worked fine with the G4, and always has with the G3, but not this time. Everything's checkmarked. Also, I've somehow deleted ALL the videos (about 12) on the G3. Any idea of what's going on? Thank you

  • Getting APPCRASH event on InDesign CS5 on only one file

    I suddenly started having problems last night while trying to re-open a particular file.  The problem details are included below.  I'm not familiar with the "techie jargon" so in advance, please excuse my limited knowledge on this topic.  Here are th