Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




FMS And WMS Coexisting On Same Server



This question is quite simple to begin with. Can FMS and WMS coexist on the same server? This topic suggests that they can: FMS and WMSBut I would like for both of them to be able to use the http protocol and then they might conflict? The solution to this as I understand it is to assign each service a unique IP address on the same server (multiple NICs).Are there other conflicts that might arise? Will performance take a big hit from running them both on the same server?Does anyone here have experience from setting this up?Help would be appreciated.MichaelEdited: 01/27/2009 at 02:01:16 PM by .:Michael:.



Adobe > Flash Media Server
Posted on: 01/27/2009 02:00:00 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Stream Works From Local Desktop To Server But Not Server To Server
I have flash media server running on linux. If I launch a test application from my desktop that points to the flash media server (rmtp://myserver.com/live) it works beautifully. However, If I launch an application from my server(http://myserver.com/myapp) and have it point to my flash media server (rmtp://myserver.com/live) i get a rejected from server error. Does anyone know why this would behave like that and how it might be fixed? Thank you.

Server Support The Application But Outside Of Server Does Not To Com Server ?
hi ,

does any body guide me in problem? I have upload my application having video conferencing. It works on the server where i uploaded , but it does't work outside the side(only swf could not connect to com server). Is there any solution ?


Regards
Abdul Ghafoor

VideoError: 1000: Unable To Make Connection To Server Or To Find FLV On Server
I've spent a lot of time in the past couple of weeks learning Flash. I developed a Flash (swf) file that plays a Flash video (flv) with cue points. It all works very nicely locally, but when I put it on the server and try to access the html file, the Flash control is white (nothing visible) and a popup error message comes up with this error. I've looked all over the web (including non-English sites), tried playing with all the Publish settings I could think of (version check, local/network access, omit trace, enable debugging) and tried adding error handling code to the swf file itself. I've also tried changing the path for the flv file to be relative, absolute and somewhere in between, but nothing works.

Does anybody know what can cause this error?


VideoError: 1000: Unable to make connection to server or to find FLV on server
at fl.video::VideoPlayer/play()
at fl.video::FLVPlayback/http://www.adobe.com/2007/flash/flvplayback/internal::showFirstStream()
at fl.video::FLVPlayback/http://www.adobe.com/2007/flash/flvplayback/internal::handleVideoEvent()
at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio n()
at flash.events::EventDispatcher/dispatchEvent()
at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::setState()
at fl.video::VideoPlayer/http://www.adobe.com/2007/flash/flvplayback/internal::httpNetStatus()



Thanks in advance,
shovavnik

How To Load Images From Client Side When The Swf Is Hosted On A Server Without Uplaoding It To Server?
I'm trying to build a online image resize tool.
problem i face are:

1. I build a button that allow user to browse the file. Once file is selected, it doesnt show full path.
2. lets say if it shows fullpath, but i try to load it into a movieclip, and it doesnt work because the swf file is located at the server and not the client's place.
3. as far as i know, flash can only load images which is located in the same server or internet.
4. if i use php, asp, cgi.. it can only allow me to 1st upload the image then resize later, but this is not wat i want.
5. I need to 1st resize then upload later, because if i have 100 and more photos taken from digicam, it's going to be very slow and heavy.

What i have tested:
1. upload "image3.jpg" into the same directory as the "viewer.swf", and it works.
2. do not upload the swf to the server, but run locally from the user's computer and open "image3.jpg" and it works.
3. upload the swf to the server and open "image3.jpg" from the user's computer and IT DOESN"T WORK!

please help me out.

Thanks~!










Attach Code

//---------- Import -------------
import flash.display.BitmapData
import flash.net.FileReference;

//---------- objects -------------
var dlgOpen:FileReference = new FileReference();
var dlgOpen_Listener:Object = new Object();

//---------- _root.value -------------
//Value transfer from <object> or <Embedded> tag.
var strOutputFileField:String = _root.OutputFileField;
var iMaxPPI:Number = eval(_root.MaxPPI);
var iMaxWidth:Number = eval(_root.MaxWidth);
var iMaxKB:Number = eval(_root.MaxKB);
var bDebug:Boolean = eval(_root.bDebug);
lblNo.text = "Picture " + _root.PictureNo;

//---------- Variables -------------
//var bCropProcess_Flag:Boolean = false;
//var bIsValidFormat_Flag:Boolean = false;

//---------- Listener -------------
//dlgOpen_Listener
dlgOpen_Listener.onSelect = function(selectedFile:FileReference):Void
{
//Flag the crop process has been started
bCropProcess_Flag = true;

//update filename, cannot get full filename because flash don't allow
txtFilename.text = selectedFile.name;

//Create into a movie clip or a bitmapdata
_root.tmpBitmap.loadMovie(selectedFile.name);
CreateBitmap();

};


//---------- Functions-------------
//OpenImage
function OpenFileDialog(event:Object):Void
{
dlgOpen.browse([{description: "Image Files", extension: "*.jpg;*.gif;*.png;*.bmp;*.tif"}]);
//_root.tmpBitmap.loadMovie(txtFilename.text);
}
//Load Image into Bitmap Object
function CreateBitmap()
{

}
function sendData(pixels:Array, h:Number, w:Number){
//Create the LoadVars object and pass data to PHP script
var output:LoadVars = new LoadVars()
output.img = pixels.toString()
output.height = h
output.width = w
//The page (and this movie itself) should be in a server to work
output.send("jpeg.php", "output", "POST")
}



//---------- Others -------------
//Add Events and Listener
dlgOpen.addListener(dlgOpen_Listener);
btnBrowse.addEventListener("click", OpenFileDialog);

//Clean up and stop
stop();

























Edited: 11/23/2007 at 07:34:09 PM by zerodevice

SOAP, C++, C#, Or Other Access To Flash Media Server Server Management ActionScript API,
I'm writing code to manage a farm of Flash Media Servers, and I need to call some Flash Media Server APIs from languages other than ActionScript.

I'm happy to write some of my code in ActionScript subroutines, and just use the NetConnection remote call API to invoke those functions. But I can find no way to do this.

I was initially enticed by the alleged support for Web-Services, but was disappointed to find that it only (appears) to support consumption of web services - not PROVISION of web services.

I saw that there was an external API accessible from flash media player itself, but that appears to require embedding the media player in a web browser, etc.

Is it - perhaps - possible to directly invoke the flash-media-player from a C# application using their COM-bridge in .Net? And then use that to invoke remote connections - without having any client side actionscript?

Any other ideas?

Flash Media Server 3 And Windows 2003 Server Help For Live Streaming
Hi
I installed FMS 3 (developer) on my Windows 2003 Web Edition.server online
I booted the FMS 3 and it seems that it works correctly (I did the port scanner and is ok)
But I can not see the live streaming applications.
I followed the guidance of Tom Green
http://www.adobe.com/devnet/flashmediaserver/articles/beginner_vod_fm3.html

In local everything works, but in windows server 2003 does not see the movie: I see only the green bar.

Please, someone has had similar problems to my and resolved?
What should I do on Windows servers?
The firewall is open on port 1395, but I do not have results.

Also, if using Flash Media Encoder 2.5 (locally) and use <Stream to Flash media Server> after entering the username and password I have this error
Primary - [ AccessManager.Reject ] : [ authmod=adobe ] : ?reason=needauth&user ...


Someone can help me?
Thank you

Swf Cannot Display In Apache Http Server. Is It My We Browser / Server / Script
hi there,
i'm using dreamwerver , apache (xampp) on my computer.

the problem is anytime i embed a flash swf in my web pages it does not show / display. i checked the mime types and its there

Quote: application/x-shockwave-flashswf

this is also my embeded script in my html,


Quote:
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent( 'codebase','()=7,0,0,0','width','488','height','277','id','services','align','middle','src','slidesh ow/services','play','false','quality','high','bgcolor','#ffffff','name','services','allowscriptaccess', 'sameDomain','allowfullscreen','false','pluginspage','() ); //end AC code
}
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="()=7,0,0,0" width="488" height="277" id="services" align="middle">
<param name="allowScriptAccess" value="always" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="slideshow/services.swf" />
<param name="play" value="true" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="slideshow/services.swf" play="false" quality="high" bgcolor="#ffffff" width="100%" height="277" name="services" align="middle" allowscriptaccess="always" allowfullscreen="false" type="application/x-shockwave-flash" pluginspage="" />
</object>
</noscript>



please any help will be welcomed.


thanks
ally

Flash Media Server Only Works Local On Server
i just installed a developers version of the flash media server on a windows server.
i don't have any problems while starting my applications on the server itself.
the problem only appears when i try to connect from a different computer which is not located in this network,
at least a connection from "outside".

there is no firewall right now on that server that this can't be the problem.

when starting the media server by the managment console i also do login with the domain-name of the server and not with localhost...locally all is working well...but not from outside.

i also try to test port 1935, 443 and 80, but none succeed from outside.

what i also tried is to run a version of the flash communication server 1.5 on my home pc also running a windows server. in this case i had the same problems: could only get a connection locally but not from outside...i.e. the connection to the server failed.

anyone an idea?

Immitating Flash Streaming Server With Development Server
We have an FMS 2 application that we are getting ready to port to FMS 3. It works on the development server, which I understand, is full featured like the Flash Interactive Media Server. Since our customers are primarily K-12/colleges, and our application only streams very low quality audio we would like to suggest that our customers purchase the cheaper FMS Streaming Server 3.

The question:

Is there a way to make our Flash Media Development Server act like Flash Media Streaming Server with out purchasing a license, in order to test application compatibility? We don't want to have to purchase the streaming server only to find out it won't work and then pay another $3,500 in order to upgrade to FMS Interactive, when we could just pay $2000 to upgrade our existing FMS 2 license to FMS Interactive.

LoadVars With Server Side ActionScript (Flash Com Server)
I'm making a simple login application. I want to send a username/password while connecting to FCS, and have the SSAS of main.asc connect to a PHP document that will lookup the username/pass and make the necessary checks for the information in a mySQL database.

I'm trying to use the LoadVars() object, maybe you can't do this with SSAS? Or maybe i need to include some other actionscript file (I know when you use components you have to specify load("components.asc"); at the top of the main.asc file --- i'm hoping it's something that easy )

This is my first FCS app, I've done a lot of research but this one's sort of stumping me. I keep getting an error that looks like this:

/opt/macromedia/fcs/applications/my_app/main.asc: line 9: ReferenceError: LoadVars is not defined

Here is my code for main.asc:

ActionScript Code:
application.onAppStart = function(){    this.userCount = 0;    this.users = [];}application.onConnect = function(thisClient, username, password){    thisClient.username = username;    //authentication functions    var my_lv:LoadVars = new LoadVars; //line 9 where error happens    my_lv.load("http://10.10.1.200/_websites/quickconnect/verify.php?username="+escape(username)+"&password="+escape(password));    my_lv.onLoad = function(success){        if(success == true){            thisClient.username = my_lv.username;            thisClient.email = my_lv.email;            thisClient.firstname = my_lv.firstname;            thisClient.lastname = my_lv.lastname;            thisClient.usertype = my_lv.usertype;            this.users[this.userCount] = thisClient;            this.userCount++;        }    }    //if login is okay         //add user to users list    this.acceptConnection(thisClient);  }

LoadVars With Server Side ActionScript (Flash Com Server)
I'm making a simple login application. I want to send a username/password while connecting to FCS, and have the SSAS of main.asc connect to a PHP document that will lookup the username/pass and make the necessary checks for the information in a mySQL database.

I'm trying to use the LoadVars() object, maybe you can't do this with SSAS? Or maybe i need to include some other actionscript file (I know when you use components you have to specify load("components.asc"); at the top of the main.asc file --- i'm hoping it's something that easy )

This is my first FCS app, I've done a lot of research but this one's sort of stumping me. I keep getting an error that looks like this:

/opt/macromedia/fcs/applications/my_app/main.asc: line 9: ReferenceError: LoadVars is not defined

Here is my code for main.asc:

ActionScript Code:
application.onAppStart = function(){    this.userCount = 0;    this.users = [];}application.onConnect = function(thisClient, username, password){    thisClient.username = username;    //authentication functions    var my_lv:LoadVars = new LoadVars; //line 9 where error happens    my_lv.load("http://10.10.1.200/_websites/quickconnect/verify.php?username="+escape(username)+"&password="+escape(password));    my_lv.onLoad = function(success){        if(success == true){            thisClient.username = my_lv.username;            thisClient.email = my_lv.email;            thisClient.firstname = my_lv.firstname;            thisClient.lastname = my_lv.lastname;            thisClient.usertype = my_lv.usertype;            this.users[this.userCount] = thisClient;            this.userCount++;        }    }    //if login is okay         //add user to users list    this.acceptConnection(thisClient);  }

Flash Media Server Vs PROXY Server/firewire
Hi All,

Can anyone help us, we have a multiway communication app developed in flash utlising FMS for audio communication. But now we find out that the end client is sitting behind a proxy server. What are the best ways of being able to send the communication through their poxy server without making major changes to the server itself? Otherwise this whole project is floored because no connection can be made.
note: it works fine when the client is not behind the firewall.

Any help would be greatly apreciated.

Gz

Error: The Callee (server(not Server Application)) Is Not Available And...
Ok i am stumped. Here is the scenario, tested in IE6 and IE7, same problem; works FINE in Firefox:

I have a lobby that launches flash movies in new windows using window.open... The first movie opens fine, but if i close the window containing the 1st movie, and try to launch it a second time i get this error:

"Error: The callee (server(not server application)) is not available and
disappeard; all connections are invalid. The call didnot execute." (only get this error in IE6/7)

I am using LocalConnection to communicate between the lobby and the movie, javascript to open the new windows, and flashVars/php to pass key data to the newly opened movie...

What the hell is going on? Is this a javascript error or a LocalConnection issue?

Im so stumped, please help!

How To I Install And Configure Red 5 Media Server In My Web Server?
Can anyone tell me how can I install and configure Red 5 media server in my web server?

- Manikk

Flash Media Server / Proxy Server / AS 2 Help
I was wondering any of you guys on the board can help me with an issue I'm having on this project I'm working on...

I'm working on this flash video player that loads .flv's stored on a Flash Media Server through a proxy server. So the swf that's on server A loads a .flv on server B through a proxy server. The thing is that I built the player in AS 2.0 -using the FLVplayback component (I know I know, but I'm just learning 3.0) , and it's not working right now, and we have diagnosed that it's most probably because the ProxyType is not set and it needs to be HTTP i think. I know you can do it in 3.0, but I'm not sure of an equivalent way to do it in 2.0? Would I have to write something to extend the class?

Help!

Thanks in advance

Flash Media Server, Does It Need Server Side?
Ive been importing my videos and selecting flash media server, which I thought was streaming. However its always worked fine and I dont understand what these extra files are that are needed on the server? Are my videos just converting to progressive video? Because I never knew they needed special files yet they have always worked or so it seems!

Flash Media Server Not Connect With Server
Hi I'm newbie to Flash Media Server,

I just trying to make a video saving tool with webcam, Its possible at only with FMS (found with google..).

Now Started to learn basic thinks, But I'm struck in the basic level, Thats, After install FMS, I'll go to ...//Adobe/Flash Media Server 3/fms_adminConsole.htm (in local system). for change administrator tool, At this position, I have one problem.

I have attached my error jpeg, Please give me the solution and push me to the right way.

Thanks...

Window Media Server And Flash Server
hi experts,
I am rather new to Flash Media Server, but quite impressed with what flash server can do. however, i have a few questions which i could not find any answer on the website:

1) Could Flash Media Server co-exists on the same server with Window Media Server? Can both run at the same time?

2) Could Microsoft cluster service support Flash Media server or Window Media server? If not, is there any other way for high avail support?

Thank you guys in advance.

Accessing Flash Media Server From Another Web Server
Hi,

I have installed Flash Media Server 3 Developer Edition on a server to test out some flv files but cannot seem to access the files from another web server. I have not created an application in FMS3 but have placed the videos files in the VOD Media folder. Could this be a firewall issue and if so what port do I need to open up?

Kind regards

James (UK)

Flash Media Server / Proxy Server / AS 2 Help
I was wondering any of you guys on the board can help me with an issue I'm having on this project I'm working on...

I'm working on this flash video player that loads .flv's stored on a Flash Media Server through a proxy server. So the swf that's on server A loads a .flv on server B through a proxy server. The thing is that I built the player in AS 2.0 -using the FLVplayback component, and it's not working right now (works if it doesn't have to go through the proxy server), and we have diagnosed that it's most probably because the ProxyType is not set and it needs to be HTTP because Proxy servers only recognize HTTP. I know you can do it in 3.0, but I'm not sure of an equivalent way to do it in 2.0? Would I have to write something to extend the class?

Help!

Thanks in advance

NEED A SERVER THAT HAS THE FlashComm Server MX INSTALLED
Do you know of any server that has the FlashComm Server MX installed??.

Flash Media Server Vs. Com Server?
I'm on a Mac, and am researching the Flash Media Server options.

I have downloaded some of the authoring kits available for the Mac, but am a
bit confused about the demo/trial of one that says
Flash Communications Server.
Is that different or the same thing as the Media Server?

Jeff
~~~~~~~~~~~~
Jefferis Peterson, Pres.
Web Design and Marketing
http://www.PetersonSales.com

Server Not Working On Live Server
So I just purchased the flash media server yesterday and migrated the files and applications to the live site. And things just wont work. I have encoded videos in the definst folder, but nothing shows up. The site takes a really long time to load and often crashes my firefox. I have verified that the server is running and all the services are running. I am using a Red Hat Linux server. has anyone had this problem or does anyone have a suggestion to trouble shoot this problem.

Also i cannot log into the admin console i am using the correct user and pwd.



























Edited: 03/23/2007 at 07:50:54 AM by mulligan03

Media Server And Web Server Interaction
Hi all i am new to flash media server ... i have a question before i have to post an architecture diagram for Comunication between media server , web server and Flash media server client ...

My question is that i want to know that ... lets suppose i have a simple live stream application installed on media server that reside on a third party and the flash client along with other website data is located on the webserver thats again another location. So once the connection is established with the flash media server if the webserver goes down will the flash media server keep on streaming to the flash client ...

In my opinion it will keep on streaming as webserver has nothing to do with the flash media server and the rtmp://ip:port//....... this connection is independent to the web server .. But i m not sure and wana ask the Guru's advice on this ...

I will appreciate you replies

Thanx

Bilal

Save "Shareobject" Data In A Server Without Flash Media Server.
Hi there!

I´m Triyng to save "shareobject" data in a server from a Flash Game, in order to save each player score or any data. I´ve heard that it's made doing "sharedobject.getRemote". So each player would logg in and save their score wherever they are (from any PC conected in a server). So the Flash cookies should be in the server.

The problem is that to make that user would need to have the Flash Media Server installed...

So it´s possible to save "Shareobject" data in a server without Flash Media Server.

Thank you in advance

Flash Media Server And Flash Comm Server Where 2 Start?
hey all,

i'm wanting to stream video or even just load it into my flash sites and not lag them....anyway i have had a few people tell me to look at flash media server and flash comm server.

i have but i am really confused with it all...WHERE DO I START?? WHAT TO KNOW?? HOW TO DO IT??? etc

any help would be great!! thanks peeps

A Server That Isnt A Server
Ok here is what I am tring to do. I am tring to make an EXE flash program that lets me make orders, print out the orders and recall the orders into an added up sum that shows what the person ordered and spent that month. So far I have been able to get everything up to the saving part. All of our computers are on the same server and we have access to the same drives. What I need help with is either putting a cookie back into a drive or auto saving to a drive. If anyone can help I would be greatful.

Swf On Http Server - Php On Php Server
i guess its possible to have the swf on my http server and call a php script which is sat on the php server - at the moment even though i put in the full path name of where the php file is it does not find it - i have access and the php file will execute if found.

any pointers so i can read about it would be great

thx

Streaming Media Server Vs Flash Media Server
We have a streaming server here. Can this be used to stream flv files on its own? Or do we need to add Flash Media Server to it in order to to this?

Right now, I'm thinking something needs to be done, because I try to post flv files, and I try to use this code to access them:

var connection_nc:NetConnection = new NetConnection();
connection_nc.connect(null);
var stream_ns:NetStream = new NetStream(connection_nc);
my_video.attachVideo(stream_ns);
stream_ns.play("http://video.[myURL].com/testSTream/streamVideoTest2.flv");

stream_ns.onStatus = function(infoObject:Object) {
trace("NetStream.onStatus called: ("+getTimer()+" ms)");
for (var prop in infoObject) {
trace(" "+prop+": "+infoObject[prop]);
}
trace("");
};

and the trace I get from onStatus is always, NetStream.Play.StreamNotFound

Any help is always appreciated.

Thanks
Chris

Media Server Vs. Interactive Media Server
Hi. What are the differences between the Flash Media Server and the Flash Interactive Media Server? Is there a comparison chart?

We need to do live streaming video on the web as well as AMF server capability. Thank you.

FK Needs A New Server...or Two
Howdy all,

I will admit that I don't know the inner workings behind those who maintain and work for FK, but the site overall is not what it once was in terms of speed in general. This forum is absolutely atrocious and usually the pages time out or give me 404's. Any ideas why?

Earlier this summer I was completely new to Flash and this forum and was able to find alot of what I needed from other developers and their advice. Now the site is sputting along and I'm sure alot of folks here are getting turned away or frustrated, especially if they have a genuine problem they need help with.

Has anyone else experienced this or is it just me, and if so, does anyone have an answer perhaps?

Dean


Of note: I've tried twice to post this thread, both times with errors. Wonder why...

Server
Ok I am currently working on my 3rd site and it will be on how to hack but all of the free webpage providers don't allow it. So I guess the only way to get my site out there is to get my own server but I have no idea on were to start. So if someone would please tell me some basic information on servers (like cost, uploading, buying, ECT) Keep in mind I have no freggin idea of what these are and I am very cheap :-)

Server
Hi all!! I need a quick free server for my homepage! Can you tell me one. He should just have a ftp- upload and he should be quick. I dont care about the url (can be a kilometer long) or the webspace (2-5 is enough). Thanks in advance, Xyankali

Server
I just set up a NT server and would like to use it as a test server for my flash and dreamweaver sites. Please steer me in the right direction to configure the server with two XP Pro workstations. Also, if you have a good book that will answer my question that would be great!

Swf On One Server Cgi On Another
Hi i have a bit of a problem.

I have a swf that links to a cgi script to keep track of scores and stuff. The script all works fine when the swf is sitting on the same server as the cgi.

But when i move the game to the clients server (the cgi will remain were it is) flash doesnt send the variables to it.

Is there any restrictions built into Flash regarding this?

The script is all okay and im not trying to steal it or use it without permission. Its just easier to keep it where it is.

I have tested it on two different servers than the cgi and they both dont work, but when the game in on the same server as the cgi it works the way it should.


Any ideas?


Sam

Swf From Other Server
is there any possibility to load a swf-file from an other server !with! variables (and AS)?
Can I change the rights (of the loaded movie) so I can control it??

Tanks in advance
el puzzo

Server
I'm uploaded files (flash and video files) from my mac with jaguar to our company's windows 2000 server. The videos specifically, are corupting. They drop frames, lose scenes and audio, etc...


We have tried all the upgrades and nothing seems to work. Any advice either on the mac or server end would be helpful.

Unfortunately we dont have money in the budget for an x-serve!

--=========server HELP=============--
I need some help!

How can I create a host where I can load my page?

PLEASE HELP ME!!!!!!!!!!!!!

I'm WAITING!!!!!!!!!!!!!

Server Not PHP What Now?
I found a post here and it told how to test to see if your server was able to do PHP. Well I did it and all I seen was what the Php file had on it on the screen, instead of PHP info page!

Here is the post I seen to test for PHP your server!

what do you do if your server doesn't have PHP? Needing to get an Email Form on MY site! PLEASE HELP!!

Txt On Server
I am using php to make .txt file on server but it only works if blank .txt file allready exist. Then php writes some variables into it. But I want php to make new .txt file and then write variables into it.
here it is
<?php $fd = fopen("textic.txt", "w");
fwrite($fd, "$zapis");
fclose($fd); ?>

Server Plz
IS there anyone out there who would graciously willing to host a 640kb flash website? You see I would buy my own server but I need to buy a truck and my parents say that if i waste any of my money on the server or anythign else besides my truck theyll never pay for anything of mine again not even college.

plz help

About LMS Server
I just downloaded the elearning tutorial at the Macromedia Site and they often mentioned the LMS server thingy, where would I get that, I already followed some of the tutorials there and placed all the files to my web server, now the problem is whenever I accesed the file it doesn't show the login features, it just go directly to the Myquiz.html file, I know it got something to do with the lms server thing...

thanks,

P.S. if you guys dont know what I'm talking about just click here

http://www.macromedia.com/support/fl..._interactions/

Txt From Server...
Hi,

I am in a strange situation which would require some help

1. My main swf movie loads from txt file with LoadVariableNum into its "containter.swf". It works well on my machine.

2. I upload all my swf and txt files to the remote server, all files are in the same folder, there are no subfolders.

3. I just run only the container.swf from the remote server... the content of the separate txt files appears well.

4. Now when I start my main.swf from the remote server. It calls the container.swf as it should.. the container.swf appears...but it does not load the content of the txt file, it is empty!!!

When I tried at step 3. , it worked, which does not work at step 4.

Why?

Thanks,
B.

Server Help
I have a new dedicated Linux server and have posted a flash site there. It worked fine on my old server but not on this one - what am I missing on the server that would cause the pages to start to load but hang before the flash starts playing...?

Any help would be greatly appreciated!
trigby

Need Server Help
I have a new Linux dedicated server and I have loaded a flash site on it that is not working. It starts to load, then hangs for a long time, then does a 404 error... the files are there, they worked fine on the old server, but not on this one. Am I missing a bit of software on my server? Any help would be greatly appreciated!
trigby

Isa Server And SWF
i have a swf file. when i try to load it in a html page behind the ISA server firewall .. the swf does not load but when i run it without the isa server or through direct internet connection, it works OK

anybody knows why??

thanks,
Mohsin

Looking For Server
Hi, does anybody know where I can get a good dedicated server. I've tried mediatemple, but I had a bad experience with them. Thanks.

Web Server
I know this is probly not the best place to ask this question. But I need some help.

I need a free web server pgram, i tried using bad blue but it doesnt work.

anyone knwo of any other programc ?

Ftp Server
setup an ftp server can someone click on the link below and let me know if it logs them in? Kinda flying blind as I can only check it internally and don't know if there is a way to check it at the firewall.

EDITED: THANKS

thanks.
webG

Copyright © 2005-08 www.BigResource.com, All rights reserved