PS gallery linked to Dreamweaver does not show up once on pub. server

i created a photoshop gallery and linked it to my website (Dreamweaver) under construction (as im learning); it shows up fine when i preview it on browser from my computer location, however, it does not show up once on the public server. any help as to the direct problem with this link/file/coding, etc... would be greatly appreciated....
site >>>> http://paulrosal.com/ >>>>> CLICK ON "ART"
******************************CHECK OUT CODING RIGHT HERE******************************
<!-- saved from url=(0013)about:internet -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>gallery</title>
<style>
body,html {
margin-top:0;
margin-left:0;
margin-right:0;
margin-bottom:0;
height: 100%;
width: 100%;
</style>
<!-- Active Content Workaround Support File -->
<script src="resources/AC_RunActiveContent.js" language="javascript"></script>
<script language="JavaScript" type="text/javascript">
function getQueryVariable(variable) {
  var query = window.location.search.substring(1);
  var vars = query.split("&");
  for (var i=0;i<vars.length;i++) {
    var pair = vars[i].split("=");
    if (pair[0] == variable) {
      return pair[1];
  return -1;
</script>
<script language="JavaScript" type="text/javascript">
  var startImg = getQueryVariable("startImg");
  //alert(startImg);
</script>
<!-- Flash Detection Script Block -->
<script language="JavaScript" type="text/javascript">
<!--
// Globals
// Major version of Flash required
var requiredMajorVersion = 8;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Minor version of Flash required
var requiredRevision = 0;
// the version of javascript supported
var jsVersion = 1.0;
// -->
</script>
<script language="VBScript" type="text/vbscript">
<!-- // Visual basic helper required to detect Flash Player ActiveX control version information
Function VBGetSwfVer(i)
  on error resume next
  Dim swControl, swVersion
  swVersion = 0
  set swControl = CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
  if (IsObject(swControl)) then
    swVersion = swControl.GetVariable("$version")
  end if
  VBGetSwfVer = swVersion
End Function
// -->
</script>
<script language="JavaScript1.1" type="text/javascript">
<!-- // Detect Client Browser type
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
jsVersion = 1.1;
// JavaScript helper required to detect Flash Player PlugIn version information
function JSGetSwfVer(i){
// NS/Opera version >= 3 check for Flash plugin in plugin array
if (navigator.plugins != null && navigator.plugins.length > 0) {
if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
descArray = flashDescription.split(" ");
tempArrayMajor = descArray[2].split(".");
versionMajor = tempArrayMajor[0];
versionMinor = tempArrayMajor[1];
if ( descArray[3] != "" ) {
tempArrayMinor = descArray[3].split("r");
} else {
tempArrayMinor = descArray[4].split("r");
                versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0;
            flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
           } else {
flashVer = -1;
// MSN/WebTV 2.6 supports Flash 4
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
// WebTV 2.5 supports Flash 3
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
// older WebTV supports Flash 2
else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
// Can't detect in all other cases
else {
flashVer = -1;
return flashVer;
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
      reqVer = parseFloat(reqMajorVer + "." + reqRevision);
        // loop backwards through the versions until we find the newest version    
for (i=25;i>0;i--) {    
if (isIE && isWin && !isOpera) {
versionStr = VBGetSwfVer(i);
} else {
versionStr = JSGetSwfVer(i);         
if (versionStr == -1 ) {
return false;
} else if (versionStr != 0) {
if(isIE && isWin && !isOpera) {
tempArray         = versionStr.split(" ");
tempString        = tempArray[1];
versionArray      = tempString .split(",");                   
} else {
versionArray      = versionStr.split(".");
versionMajor      = versionArray[0];
versionMinor      = versionArray[1];
versionRevision   = versionArray[2];
versionString     = versionMajor + "." + versionRevision;   // 7.0r24 == 7.24
versionNum        = parseFloat(versionString);
             // is the major.revision >= requested major.revision AND the minor version >= requested minor
if ( (versionMajor > reqMajorVer) && (versionNum >= reqVer) ) {
return true;
} else {
return ((versionNum >= reqVer && versionMinor >= reqMinorVer) ? true : false );    
// -->
</script>
</head>
<body><div align="center" style="width:100%; height:100%">
<script language="JavaScript" type="text/javascript">
<!--
// Version check for the Flash Player that has the ability to start Player Product Install (6.0r65)
var hasProductInstall = DetectFlashVer(6, 0, 65);
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
// Location visited after installation is complete if installation is required
var MMredirectURL = window.location;
// Stored value of document title used by the installation process to close the window that started the installation process
// This is necessary to remove browser windows that will still be utilizing the older version of the player after installation is complete
// DO NOT MODIFY THE FOLLOWING TWO LINES
//document.title = document.title.slice(0, 47) + " - Flash Player Installation";
document.title = document.title.slice(0, 47);
var MMdoctitle = document.title;
// Check to see if a player with Flash Product Install is available and the version does not meet the requirements for playback
if ( hasProductInstall && !hasReqestedVersion ) {
    var productInstallOETags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="550" height="200"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="resources/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=Ac tiveX&MMdoctitle='+MMdoctitle+'" />'
    + '<param name="quality" value="best" /><param name="bgcolor" value="#3A6EA5" />'
    + '<embed src="resources/playerProductInstall.swf?MMredirectURL='+MMredirectURL+'&MMplayerType=Plug In" quality="high" bgcolor="#3A6EA5" '
    + 'width="550" height="300" name="detectiontest" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="best"'
    + 'wmode="opaque"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.adobe.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(productInstallOETags);   // embed the Flash Product Installation SWF
} else if (hasReqestedVersion) {  // if we've detected an acceptable version
    AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
'flashvars','baseRefUrl=resources/&groupxml=group.xml&stylexml=style.xml&localText=localT ext.xml&livePreview=false&startImg='+startImg,
'width', '100%',
'height', '100%',
'src', 'resources/gallery',
'quality', 'high',
'pluginspage', 'http://www.adobe.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'opaque',
'devicefont', 'false',
'id', 'gallery',
'bgcolor', '#f7f7f7',
'name', 'gallery',
'menu', 'true',
'allowScriptAccess','sameDomain',
'movie', 'resources/gallery',
'salign', ''
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = 'This photo gallery requires the Adobe Flash Player.'
        + '<a href=http://www.adobe.com/go/getflash/>Get the free Flash Player here</a>';
    document.write(alternateContent);  // insert non-flash content
// -->
</script>
<noscript>
// Provide alternate content for browsers that do not support scripting
// or for those that have scripting disabled.
       Sorry, this photo gallery requires that scripting be enabled on your web browser and that the Adobe Flash Player be installed.
  <a href="http://www.adobe.com/go/getflash/">Download the Adobe Flash Player</a>
</noscript>
</div>
</body>
</html>

Are you sure you have uploaded everything in the gallery folder to the correct location. It can't find the index.html page.

Similar Messages

  • Linked Recon event does not show up in user's provisioned resources

    I am totally new at this Orcale OIM stuff and I have looked through this forum and have not found an answer. I have configured the connector and and (I think) successfully ran the EBS_TR_User task limiting it to one specific user. It runs and I do not see any errors. It did create an entry in the Recon Event Manager in the design console and the event indicates that the EBS user is "linked" to the expected OIM user. The recon event also shows the responsibility that is in EBS for the user. However, what I do not understand is that when I look at the user in OIM and select to display the resource profile for the user, the responsibility does not show in OIM.
    Why does it not show in OIM? Is there something I am missing to cause it not to appear? Or is there another step I need to complete to make it appear? Or does it just not ever appear? Does anyone know what to do after the EBS_TR_User scheduled task runs or where I can find information on this? Any insight or direction is greatly appreciated !!

    Well take care of Martin's Suggestion to first of all identify that its Trusted Source or Target Resource model of reconciliation you are running. This is how you can identify that:
    - Check it against the Connector Documentation Or
    - Go to the Resource Object against which you are running this reconciliation. Check the Trusted check box. If this is checked then you are running Trusted Mode and in this case you won't be able to see those Responsibilities in the Resource Profile of Users.
    Now if the above condition is not true and the mode is not Trusted then make sure you have the following rule condition defined.
    One Entity Match Found -> Establish Link
    One Process Match Found -> Establish Link *(For Later on identification of same Account)*
    Thanks
    Sunny

  • Link in bookmarks does not show up at the bottom of the browser

    Under Windows, when I put the mouse over a link in bookmarks, the corresponding URL appears at the bottom left of the browser. But it does not work that way under MAC OSX.
    Is this by design?
    Thank you.

    On Mac the menu bar is maintained by the Mac OS and not by Firefox, so Firefox can't display that text. You need to use the bookmarks sidebar to get that hover feature.

  • Flash video does not show up once uploaded. Help please.

    OK I've spent several days searching online for an answer to this question and I'm at my wit's end.  Please help me out.  This is what is going on.
    I'm using flash to design a basic website.  Within that website I want to place a .flv file.  Everything works fine in preview mode and test movie mode.  The problem comes when I puplish to the web.  I'm just using flash to publish which puts all the files in a folder.
    IN previous attempts, once I load those files onto a server it does not play the .flv file.  The .sfw skin will show up but the general .sfw file for the project doesn't seem to be finding the .flv file.  And yes, I'm uploading the .flv file to the server.  Is there something wrong with the html code that it can't find the .flv file?  I can replicate this problem on my desktop by moving the .flv file out of it's project folder.  Once I do that and then click the .html file the page will load but it won't find the video file.  It's like it can only open that file if it's in the original project folder and the folder doesn't get moved.
    I can't be the only who has experienced this.  Please help!

    The effect you're having "only displaying the flvplayer skin but no video" is a clear sign that your swf can't find the flv.
    One thing that you can do to ensure that everything is right is to first upload the .flv file to the desired location and then link your FLVPlayback to the url on the flash IDE / AS.
    2nd Option would be to:
    save flv, fla and swf in the SAME folder (no subfolders or such)
    upload flv and swf to your webserver while keeping them together in the same folder, that ensures that your files can find eachother.

  • Dreamweaver does not show current version of page

    Not sure how to describe this problem. When I open a page in dreamweaver for editing, the text is not the text I put there recently. If I do I "live view" it IS the text the should be there, if I preview in a browser it IS the right text as well. I can't edit the site at all. I have little enough work coming in without losing more clients because of this sudden glitch. First everything was crashing after the Snow Leopard update, then as that seems to be working better, this happens! Ive been using Dreamweaver since macromedia version 1 and I've had issues but nothing this strange. Any ideas?

    Hmmm...
    Make sure you are having valid code in your page.
    Try running it at http://validator.w3.org/#validate_by_input once and see if there are any errors.
    DW may not be able to show your content if you have invalid code as it will get confused on what to display.
    Regards,
    Vinay

  • FM "TH_POPUP" Does not show popup in 4.7 server when run in background.

    Hi Experts,
        I am Using the Function Module TH_POPUP in my report to notify user when a background job is compleated. when I run my report in background the job gets canceled when the Function module is called only in our SAP 4.7 server.
    The report works without trouble in  our SAP 4.6c & ECC servers
    Can anybody give a solution?
    or
    provide another function module similar to TH_POPUP..
    Thanks in Advance...
    Anand C
    Edited by: Anand Cyril on Oct 5, 2009 8:35 PM

    Why do you want the pop-up to appear?  How exactly does it appear when you run it in the background?  I would have thought that it wouldn't as there's no GUI for it to pop-up on.
    Try adding this code to your program
    IF SY-BATCH NE 'X'. "program running in foreground
    *...show pop-up
    ENDIF.

  • Print Server does not show local USB printers (OS Server 10.3.9)

    I have mac OS X 10.3 server sharing my local USB printer for over more than 18 months, suddently on Jan 6th 2007, my server refused to see them in
    the Print Services in the Admin tool.
    The last log I got from starting it is on jan 5th:
    2007-01-05 16:31:08 -0800 [00288] Starting Mac OS X Server Print Service (v1.0.150)...
    2007-01-05 16:31:44 -0800 [00288] Mac OS X printing initialized.
    2007-01-05 16:31:45 -0800 [00288] Starting print sharing. Service: LPR.
    2007-01-05 16:31:46 -0800 [00288] Stopping print sharing. Service: SMB.
    2007-01-05 16:31:47 -0800 [00288] Print Service Started.
    2007-01-05 16:31:47 -0800 [00288] PrintServiceMonitor: Starting event listener.
    2007-01-05 16:31:47 -0800 [00288] Printer: "Lexmark Optra E310", Created..
    2007-01-05 16:31:47 -0800 [00288] Printer: "Internal Modem", Created..
    2007-01-05 16:31:47 -0800 [00288] Printer: "iP2000", Created..
    I can see this error in the watchdog log:
    2007-02-08 18:27:28 PST Reaped child process 287 ("/usr/sbin/PrintServiceMonitor"); quit with exit status 36.
    2007-02-08 18:27:28 PST Process "/usr/sbin/PrintServiceMonitor" respawning too rapidly!
    2007-02-08 20:35:27 PST Terminating due to signal.
    I can still print locally to the machine (obvisouly no other computers on my network can !).
    The Print Service tab, let me add 3 types of queue: LPR, appletalk and OpenDirectory but NOT USB !!!
    On Jan 8th I have installed FCP and that's the extend of my modification....
    R.

    I have tracked the problem a little deeper, and it's caused by the PrintServiceMonitor.
    If you run in a Terminal:
    :/private/etc/cups root# PrintServiceMonitor -x
    PrintServiceMonitor: Initialization error (-9948)
    _Assert: ASXPrintServerLib.cpp, 452
    ktrace seems to point to a CUPS config error but I can't find what's wrong with it.

  • My itunes in pc fails to secure link with itunes store it shows the process bar it automatically quits the process it also does not shows any on the screen. i am using windows xp service pack 3. what shoul i do?

    my itunes in pc fails to secure link with itunes store it shows the process bar it automatically quits the process it also does not shows any on the screen. i am using windows xp service pack 3. what shoul i do?
    Diagnostics test
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    ECS G31T-M7
    iTunes 10.5.2.11
    QuickTime 7.6.9
    FairPlay 1.13.37
    Apple Application Support 2.1.6
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.97
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 0012ABAC07F3CCB0
    Current user is an administrator.
    The current local date and time is 2011-12-31 14:06:21.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is not supported. (16005)
    Video Display Information
    Intel(R) G33/G31 Express Chipset Family
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {7599FAD1-1BB9-4AC6-80AF-404253DC519E}
    Description:            Atheros L2 Fast Ethernet 10/100 Base-T Controller - Packet Scheduler Miniport
    IP Address:             192.168.1.5
    Subnet Mask:          255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:      Yes
    DHCP Server:         192.168.1.1
    Lease Obtained:     Sat Dec 31 13:46:09 2011
    Lease Expires:       Tue Jan 03 13:46:09 2012
    DNS Servers:         192.168.1.1
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    SSL 3.0 Support:     Enabled
    TLS 1.0 Support:     Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was unsuccessful.
    The network connection timed out.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-12-31 14:00:02.
    **** Device Connectivity Tests ****
    iPodService 10.5.2.11 is currently running.
    iTunesHelper 10.5.2.11 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    Connected Device Information:
    rawkiss’s iPhone, iPhone 3G running firmware version 4.0
    Serial Number:       86931UEAY7H
    **** Device Sync Tests ****
    Sync tests completed successfully.

    I have found a fix after doing additional research through this forum. Tech Note #328730 addresses this problem and it works for Photoshop Album 3.2 even though it was written for release 1.0.
    Here is a link that will take you directly to the Tech Note:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=328730
    When using this fix the Tech Note indicates:
    "Imported image data and tags are lost when you re-create the My Catalog.psa file, so you need to reimport images and reapply any tags"
    however it did retain the captions (at least it did for me).

  • Using firefox 14.0.1. Loading a link using right-click and "Open Link In New Window", results in new window opening but address bar does not show URL..

    Using firefox 14.0.1. Loading a link using right-click and "Open Link In New Window", results in new window opening but address bar does not show URL. However, if I right click on a link and select "Open Link In New Tab", the Tab shows URL in address bar. So it's working when it's a New Tab but not a New Window.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • After upgrading my iPhone 4S to iOS6, my Find My Friends app no longer links to my Contacts and does not show contact names. It only shows e-mail addresses and does not link up to the corresponding email address in my Contacts. How can I fix this?

    After upgrading my iPhone 4S to iOS6, my Find My Friends app no longer links to my Contacts and does not show contact names. It only shows e-mail addresses and does not link up to the corresponding email address in my Contacts. How can I fix this?

    I am also having problems with a site I am building. No matter what websafe font I use it displays as New Times Roman in FireFox. The correct fonts show in both IE9 and Chrome.
    In addition, text shifts in FireFox. I have to position other text objects farther and farther apart as I go down the page or they start to overlap. Nav buttons and other images also have to be positioned in the wrong place for them to be in the correct place when the page is opened in FireFox. FireFox should display pages correctly by default. I can't expect th average user to have to tweek his/her settings to display my site.
    I have been recommending FireFox on my website as the best browser. I might have to change that and abandon FireFox myself.

  • Extract panel does not show in Dreamweaver CC 2014 - using Mac - Why?

    It is odd - as I used the Extract workspace, the Extract panel does not show - not even if I try opening it via Window -> Extract.
    I have updated my Dreamweaver 2014 to the most recent version.
    Can anyone help me?

    Good to know that your issue has been resolved.
    To further investigate why that issue happened we would need some more information from you.
    Please tell us more about the settings of DW before applying patch
    > Which workspace you were working before applying the patch ?
    > What all panels were ON before applying the patch ?
    > Did you perform any specific steps before applying the patch ?
    > What is the version of your Mac ?
    > Any extensions of DW installed?
    Thanks,
    Lalita

  • HT201272 my quick link to previously purchased does not show movies. Why? I am trying to relocate a movie I have "lost"

    I am trying to relocate a movie I have lost on my itunes.  My quick link to purchased items on itunes does not show movies. How can I get my movie back. I have part of the download, the extras but movie is missing. only purchased in Novermber2011 but I have changed computer. The other one died. Any ideas.

    Subsequent movie downloads are currently only available in the USA and only some of those are (depending upon studio).
    Downloading past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not available in all countries; apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Movies currently available in the USA only. Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list (e.g., ringtones), or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid.  Apple notes it is your responsibility to back up your purchases.
    Select the store on the left side of iTunes.
    Click on Purchased on the right side under Quick Links.
    You can re-download your available previous purchases.

  • The File Explorer does not show links in the folder structure on a computer

    Dear all,
    My general issue is that, when I connect my Z10 (SW release 10.2.1.2102) via USB, the File Explorer shows some folders from the connected PC. It does not list folders that are links on the computer.
    A lot of those links are duplicates in a different language (because of the multilingual version of Windows 7). My particular issue is that I had to move my Documents folder to another disc and created a hardlink to that folder on the primary SSD disc. Now, this link does not show up at all in the File Explorer on my Z10 device.
    Anybody knows a workaround, please? Maybe it exists another file manager similar to that one by BB, which could do that...
    Thanks for reading!
    Cheers,

    If you look at the browser use stats you'll see that its kind of useless to preview your site in Safari...
    Chrome is poised to overtake IE so its worth setting up your own local server. Its quick and easy.
    From Mac Help..
    Sharing a website on your computer
    You can use the Apache web server software included with Mac OS X to host a website on your computer. Before doing so, you should already know how to create HTML pages and build websites.
    To host a website on your computer:
    Use the HTML editor of your choice to create your website. For your site’s homepage, use the filename “index.html” so that web browsers can locate and open it automatically.
    Put all of your website’s pages, graphics, and any media files in your home directory’s Sites folder.The existing index.html page will be replaced with your new index.html page.
    Choose Apple menu > System Preferences and click Sharing. 
    Select the Web Sharing checkbox.
    To view webpages you put in your Sites folder:
    Open a web browser and go to http://your.computer.address/~yourusername/.
    To find your computer’s address, choose Apple menu > System Preferences, and then select Web Sharing. The address is displayed in the window.
    For “yourusername,” use your account name, and make sure you include the ending slash (/). To find your account name, choose Apple menu > System Preferences, click Accounts, and then select your account in the list.
    You can also share a website on your computer by placing files in /Library/WebServer/Documents on your hard disk. To place files there, you must be logged in as an administrator. To view these pages, open a web browser and go to http://your.computer.address.

  • SCCM console does not show the link to the report manager!

    SCCM console does not show the link to report manager.
    Any idea?
    thanks!

    Hi,
    The report manager URL isn't displayed in SCCM console. Why you want to display it in console?
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • HTTP_server link does not show in Application server control...

    Hi, I'm trying to configurate OAS 10g and HTTP Server, when start OAS all the proccess start up, including HTTP Server, but then when try to configurate HTTP_server in Application server control I can't access it, because this component has no 'link' below its name ... why? I can see HTTP_server is up, but can not access it!
    help

    Hi Pratap, Sumit,
    I did do the steps afresh now but still teh issue persists,
    1) Download the complete classes/oracle/apps/per folder to my local desktop myclasses/oracle/apps/per in Binary mode.
    2) In Jdeveloper i created a new OAF Workspace and Project and mentioned the default package as oracle.apps.per
    3) In myprojects/oracle/apps/per/selfservice/hierarchy/server i copied only the XML files (VO,View Link) from the server in Binary mode and the PG.xml from the database using the export batch program.
    4) Close and open Jdeveloper and you can see the PG.xml in webui folder and only the view object xml files in server folder. View Links do not show up eventhough they are available in the folder. Even the server.xml file which is available in the folder does not show up in Application Navigator.
    Please let me know if i have missed any step which you had mentioned.
    Thanks, Suresh

Maybe you are looking for

  • IE 7 issue with Spry Collapsible Panel

    Hi Folks My problem is I have dropped in a small collapsible panel at the top (right) of my site pages which basically houses a sharing panel and a Google+1 button. As ever it works well on all the other major browsers with the exception of IE (7). H

  • Error while opening query

    Hi When i am trying to open query I can able to see the the query when I click on Change it is giving error message. "Inconsistency in loading. Please check use of deleted objects" When I try to execute that query it is giving error and disconnecting

  • Characters don't appear as they should in SMSes

    Hi, This is specific to just these characters that I use quite frequently in my SMSes, the square brackets - [ ] When I type them in, they appear as they should on +my phone+, but peculiarly, they appear as "<?" and "?>" instead on the receipient's p

  • Spinning wheel freezes before shutdown

    Can anyone enlighten me please on what is being checked by the system during shutdown while the spinning wheel is spinning? My Mac Pro is not shutting down properly and the wheel freezes just before the system reboots. This reboot does not allow you

  • Quotation output through email,

    HI All, How can I send quotation output through email, Can some one provide me a step by step configuration guide for Output determination via email.