Flash on Coldfusion on Unix


 
Thread Tools Search this Thread
Top Forums Programming Flash on Coldfusion on Unix
# 1  
Old 02-14-2011
Bug Flash on Coldfusion on Unix

Do embedded Flash objects running on a Coldfusion website work on Unix servers running Apache?

I am a Windows guy and have no experience with Unix.

Thanks in advance.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. SCO

Usb Flash in SCO UNIX 5.0.6

hi How can I use my USB Flash memory in Sco 5.0.6 tanks (1 Reply)
Discussion started by: moein.mojtaba
1 Replies

2. Solaris

Coldfusion 9 on Solaris 10 zone/Apache2

I follow the very simple instructions and the moment I get Coldfusion 9 installed and let it run the script to configure Apache2, Apache2 no longer serves pages with only child pid 18773 exit signal Segmentation fault (11) in the error log. Where should i look to troubleshoot this? (0 Replies)
Discussion started by: LittleLebowski
0 Replies

3. HP-UX

rp 3440 flash red light and can't boot to unix

I have a rp 3440 cluster.This node restarted twice and became normal. It restarted last night and it now blinking red light. Below are logs from the console After doing Cl command. firmware Version 45.11 Duplex Console IO Dependent Code (IODC) revision 1 ******* Unexpected... (1 Reply)
Discussion started by: niggersak
1 Replies

4. UNIX for Dummies Questions & Answers

Accessing a log file from html, coldfusion script

I have a question. I am not even sure if it can be done. But if it could be then I would needs a lot of help. ok, I work for a software company and we have a store. The store log files are in a unix server and the log file is dynamically updated everytime some error occurs in the store. So we often... (1 Reply)
Discussion started by: skrules
1 Replies

5. UNIX Desktop Questions & Answers

Something like Macromedia Flash for UNIX ?

Hi ! Does anyone knows if is there any clone of Macromedia Flash for UNIX systems ? or anything else that can create .swf files... Thanks ! (2 Replies)
Discussion started by: Sergiu-IT
2 Replies

6. What is on Your Mind?

unix.com Flash animation

I realy Love the look of the Flash animation at top of the forum, very sweet. But it uses all of my cpu power :( even winamp starts getting little skips. Then i have to scroll down and hide the nice animation :( Maybe someone could try to tune it a little bit. Thats on a 1,6 Ghz... (0 Replies)
Discussion started by: Lazzar
0 Replies

7. Post Here to Contact Site Administrators and Moderators

Latest Design of New Unix Header (Flash)

As everyone might know by now, we have a new 'draft' banner with matrix theme, falling unix commands, blinking numbers, and more. This will be the new default theme for the forums. We are in the process of sending final comments to our designer, please feel free to post your suggestions here.... (20 Replies)
Discussion started by: Neo
20 Replies

8. UNIX for Dummies Questions & Answers

can I install macromedia coldfusion in a unix system

Hello. it`s possible tha your are reading a messege from the most recent unix user... mi. My question is. can i install macromedia coldfusion in unix system? (1 Reply)
Discussion started by: waguilar
1 Replies
Login or Register to Ask a Question
FLASH(9)						   BSD Kernel Developer's Manual						  FLASH(9)

NAME
flash -- subsystem for flash-like memory devices SYNOPSIS
#include <dev/flash/flash.h> device_t flash_attach_mi(const struct flash_interface *fl, device_t dev); DESCRIPTION
Flash-like devices can register themselves to the flash layer with the flash_hw_if structure. This structure has function pointers and other fields. The attachment can be done by calling flash_attach_mi() with this structure and the device's device_t as an argument. Return value is the flash layer device. The flash_interface structure is shown below. struct flash_interface { int (*erase) (device_t, struct flash_erase_instruction *); int (*read) (device_t, off_t, size_t, size_t *, uint8_t *); int (*write) (device_t, off_t, size_t, size_t *, const uint8_t *); int (*block_markbad)(device_t, uint64_t); int (*block_isbad)(device_t, uint64_t); int (*sync) (device_t); int (*submit)(device_t, struct buf *); /* storage for partition info */ struct flash_partition partition; /* total size of mtd */ flash_addr_t size; uint32_t page_size; uint32_t erasesize; uint32_t writesize; uint32_t minor; uint8_t type; }; SEE ALSO
flash(4), nand(9) AUTHORS
Adam Hoka <ahoka@NetBSD.org> BSD
March 31, 2011 BSD