problem in fop2 after changing HTTPS & http port

hi ,
today ive changed the https & http port of elastix server .

every thing is ok

but im facing a problem when i try fop2 ,

the problem is when i go to fop2 panel page ,
it request 4 files to download them :

http://x.x.x.x:2200/fop2/audio/blip1.wav
http://x.x.x.x:2200/fop2/audio/2up2.wav
http://x.x.x.x:2200/fop2/audio/silkyalert.wav
http://x.x.x.x:2200/fop2/audio/ring.wav


as you see , every time i have to cancel downlading those 4 files and then i can use fop2 . :cry: :cry:

how to fix the problem and prevent these annoying requests of downloading the files above ???


regards

Comments

  • ???????????????? :oops: :oops: :oops: :oops: :oops:
  • changing http to https will not affect at all the audio downloading. Not sure why you have to cancel anything, the audio file request is a relative link in index.html, it will use the same protocol/host/port as the original index.html file.

    <audio id="audiotag1" src="audio/blip1.wav" autobuffer="autobuffer"></audio>
    <audio id="audiotag2" src="audio/2up2.wav" autobuffer="autobuffer"></audio>
    <audio id="audiotag3" src="audio/silkyalert.wav" autobuffer="autobuffer"></audio>
    <audio id="audiotag4" src="audio/ring.wav" autobuffer="autobuffer"></audio>


    It works perfectly with http or https in all browsers we tested. If you have problems because of some funky redirection or firewall on your site, then modify the index.html file and set the src for the audio to whatever you need.
  • hi admin
    u may miss understood me ,
    i mean that the http port changed to 7000
    and the https port changed to 7001
    and i cancelled the redirection from http to https .

    after that , i faced the problem above that i discussed .


    regards
  • As you see in my reply, the links for the audio files are relative, there is no mention to protocol or port, those are inherited from whatever you use to load the index.html page.
  • hi admin ,
    thank u very much .

    the problem disappeared suddenly.

    regards
Sign In or Register to comment.