CF10,0,11,285437 global UNC Mapping does not work?

Maybe the way global UNC mappings are supposed to be added has changed?
When I under ColdFusion 9 add the following mapping via the adminstrator interface:
Logical Path = /SharedFiles
Directory Path = \\webroot\sites\_SharedFiles
The url http://somesite.com has it's path set to \\webroot\sites\somesite in IIS7.5
Browsing http://somesite.com/SharedFiles/some.cfm renders the cfm fine, since the CF9 mapping for SharedFiles works without any issue.
When I under ColdFusion 10,0,11,285437 add the following mapping via the adminstrator interface:
Logical Path = /SharedFiles
Directory Path = \\webroot\sites\_SharedFiles
Again, the url http://somesite.com has it's path set to \\webroot\sites\somesite in IIS7.5
First thing I notice as different is that CF10 shows the Directory Path as //webroot/sites/_SharedFile instead of \\webroot\sites\_SharedFiles
Clicking EDIT still has the Directory Path exact as I wrote it thou...
Browsing the url http://somesite.com/SharedFiles/some.cfm throws a 404 Not Found, since the mapping doesn't work with CF10, it points to \\webroot\sites\somesite\SharedFiles\some.cfm instead of what is specified in the mapping.
This is rather critical when hundreds of sites are setup to use such a global mapping, and we can't really switch to CF10 before this works again.
Message was edited by: F4798w85gasdg
Added some red and blue color to make it easier to read

Found something which I miss for CF10.
In CF8 you can:
Adding a virtual web mappingA virtual web mapping lets you map a physical system path to a logical resource path that might be outside the ColdFusion MX web root. For example, you might want to map the physical directory c:\myapp\resources\images to the logical resource path /images. After setting up the mapping, users access the directory using a URL in the following form: 
http://hostname/images/ 
One advantage to using virtual web mappings is that it hides the physical layout of your application directory structure from users.  
To configure a virtual mapping: 
1
In a text editor, open the file web_root\WEB-INF\jrun-web.xml.
2
Create a virtual mapping.
For example, the following entry maps the c:\myapp\resources\images directory on a Windows system to the virtual directory /images:
<virtual-mapping>    <resource-path>/images/*</resource-path>    <system-path>c:/myapp/resources/images</system-path>    </virtual-mapping> 
http://www.adobe.com/support/coldfusion/adv_development/config_builtin_webserver/config_bu iltin_webserver08.html
Question is just if this can be done with C10 and where.
EDIT: Found the solution, just had to add it as alias in server.xml's host context section

Similar Messages

  • Map does not work on my iPad air 32?

    I downloaded flightradar24 app and the maps do not show in any detail and satellite is not working at all.  Despite multiple downloads it still won't work.
    I now see my apple Maps app that came loaded with my new iPad Air 32 does not work.  My friend with iPad 3 sitting next to me has full functionality of maps on the same wifi. Thanks.

    I downloaded flightradar24 app and the maps do not show in any detail and satellite is not working at all.  Despite multiple downloads it still won't work.
    I now see my apple Maps app that came loaded with my new iPad Air 32 does not work.  My friend with iPad 3 sitting next to me has full functionality of maps on the same wifi. Thanks.

  • Export Parameters in Parameterized Message Mapping does not work.

    Hello, XI-Gurus!
    I have a question: how to use an EXPORT parameter in Parameterized Message Mapping? seems it does not work...
    (I use XI / PI 7.1)
    For example, I have a follow scenario: a large message comes to XI from one BS (message contains a lot of rows), then this large message splits to some small messages (something about 1000 rows in one small message), and send small messaeg one by one from XI to second BS. So, after receive step I use a transformation step with Parameterized Message Mapping to get a total amount of rows in large message (it needs for making condition for loop in IP, for example). I want to use an EXPORT parameter to pass this number from Parameterized Message Mapping to Integration Process. How can I do it?
    Of course, I know the way to how to make this scenario without any parameterizing, but I want to use exactly "Parameterized Message Mapping" like it writes in this help:
    http://help.sap.com/saphelp_nwpi71/helpdata/en/43/c3e1fa6c31599ee10000000a1553f6/frameset.htm
    This topic contains something about procedure how to use an EXPORT parameter, but this procedure does not work. I don't understand how to write this UserDefined Function, which I can set any export parameters.
    I read this blog:
    /people/jin.shin/blog/2008/02/14/sap-pi-71-mapping-enhancements-series-parameterized-message-mappings
    this blog has NO solutions about EXPORT parameters. about IMPORT parameters - everything OK.
    Some topics about how to use export parameters in MM in this forum marked as "answered", but this is not true.
    How to export parameters from Message Mapping
    Export parameter REALLY work in message mapping???????
    Export parameter in Message mapping UDF
    WBR,
    Vsevolod

    Hi Rudolf,
    It still does not works.
    Great thanks for all your answers! If your advice works on your PI-server, it means that my problem not in UDF.
    Step by step:
    1) I create in "Signature" tab two parameters: FILE_NAME, FILE_TYPE (of course, they both Export and xsd:string type)
    2) Then, I goes to "Functions" tab and create new function "testUDF" with one argument var1.
    3) In body of this UDF insert 2 strings:
       getOutputParameters.setString("FILE_NAME" , "Order");
       getOutputParameters.setString("FILE_TYPE" , "PDF");
    4) in "Definition" tab I bind function "Local.testUDF" with one field in my input message and goes to "Test" tab for testing.
    5) And then I have a message window "Problems While Testing":
    Source text of object Message Mapping: mm_ParamMap | urn:****.*.:****:TEST has syntax errors:
    Function testUDF, Line 1:
    cannot find symbol
    symbol  : variable getOutputParameters
    location: class com.sap.xi.tf._mm_ParamMap_
    getOutputParameters.setString("FILE_NAME" , "Order");
    ^
    Function testUDF, Line 2:
    cannot find symbol
    symbol  : variable getOutputParameters
    location: class com.sap.xi.tf._mm_ParamMap_
    getOutputParameters.setString("FILE_TYPE" , "PDF");
    ^
    Note: /usr/sap/PID/DVEBMGS00/j2ee/cluster/server0/./temp/classpath_resolver/Mapb1562570ca9e11deb3fe00237d301cd6/source/com/sap/xi/tf/_mm_ParamMap_.java uses or overrides a deprecated API.
    Note: Recompile with -Xlint:deprecation for details. Note: /usr/sap/PID/DVEBMGS00/j2ee/cluster/server0/./temp/classpath_resolver/Mapb1562570ca9e11deb3fe00237d301cd6/source/com/sap/xi/tf/_mm_ParamMap_.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    2 errors
    Look at this notes, first writes that I use a deprecated API, second - about unchecked or unsafe operations.
    And I have no idea what's wrong... Can you help me?
    Thanks!
    WBR,
    Vsevolod

  • NFSv4 UID mapping does not work

    Hello,
    i tried several hours to get nfsv4 uid mapping, but it does not work.
    #/data 192.168.20.0/24(rw,sync)
    /data 192.168.20.0/24(rw,fsid=0,insecure,no_subtree_check,async)
    /data/home 192.168.20.0/24(rw,nohide,insecure,no_subtree_check,async)
    /etc/conf.d/nfs-*.conf files are not modified.
    /etc/idmapd.conf does not exists anymore (was removed in the last nfs-utils package update)
    rpcbind is running on both computers.
    My mount command:
    /bin/mount -n 192.168.20.70:/data/home /mnt/demeter -t nfs4 -v
    When i access the folder from the server as the specific user, it works. But not from the client (same username, but other UID). When i list the upper level directory of the server from the client side, i see as username only the number (of course, because the UID does not exists on the client). I can only access folders, where the client's useID have permissions on the server (for example, when i try to access the server from the client as a user, wich userID on the server has permission to it).
    What i'm doing wrong?
    When searching the internet for nfs-problems / howto's, it seems, the arch configuration is a little bit different than on, for example, suse linux / debian linux. For example, it seems the option NEED_IDMAPD/NEED_GSSD seems to be obselet?
    Greetings from Germany,
    Sebastian
    Last edited by Arakis (2015-05-18 12:54:26)

    I too would recommend coordinating UID and GID.  That's what I do.  However, you could try the following (not sure how it will work now that /etc/idmapd.conf is gone) ...
    Configure NFS4 module:
    $ cat /sys/module/nfs/parameters/nfs4_disable_idmapping
    If it is "Y", then:
    # echo N > /sys/module/nfs/parameters/nfs4_disable_idmapping
    # echo "options nfs nfs4_disable_idmapping=0" >> /etc/modprobe.d/nfs.conf
    Clear the idmap keyring of all existing keys:
    # nfsidmap -c
    Restart ID-name mapping service:
    # systemctl restart nfs-idmapd.service
    I've not tested this, so good luck!  :-)
    (edited to change "nfs4_disable_idmapping=1" to "nfs4_disable_idmapping=0")
    Last edited by Painless (2015-05-21 16:24:53)

  • Creating a symlink directory on a network share to a path below a mapped drive letter, local path, or UNC path does not work

    Am I correct in assuming I can not create a `symlinkd` to a network share, local path, or a UNC path on a network share that will be accessible by clients?
    ###Mapped drive letters don't work:
    1) navigate to a network share:
    pushd \\windows2008server\share\
    2) make a hardlink:
    mklink /d test_sharedir t:\directory\
    dir .\test_sharedir
    #Directory of Z:\test_sharedir
    #File Not Found
    UNC paths don't work:
    1) navigate to a network share:
    pushd \\windows2008server\share\
    2) make a symlink:
    mklink /d test_dirunc \\windows2008server\share
    dir .\test_dirunc
    #Directory of Z:\test_dirunc
    #File Not Found
    I can create a functional `symlinkd` on a local drive to a mapped drive letter or a UNC path.
    Are my assumptions above correct?
    We are in the middle of a migration and have created two symlinkd to UNC paths for shared DLLs, one below c:\windows\system32\ (directing to a share containing 64-bit DLLs) and one below c:\windows\syswow64 (directing to a share containing 32-bit DLLs).
    On the file server, we have had a path to 32-bit DLLs (from Windows 7 clients: s:\dll\).  I am attempting to rename this directory so that it is accessible via "s:\dll32\" and would like to create a symlinkd that links "s:\dll" to
    "s:\dll32" [again where S: is a mapped drive on a Windows 2008 server].  How do I do this?
    Thanks,
    Matt

    Hello Mandy,
    The link you sent me is for Netapp CIFS server daemon contained within DataOnTap (the Netapp OS) to follow symlinks.  I am inquiring about the Microsoft products Windows Server and Windows 7.
    To gain a better understanding of the Microsoft Windows Server and client (Windows) CIFS stacks and interaction of the stacks, I have referred to Figure 6 "Server Message Block Server Model" within the following (albeit older) document: http://download.microsoft.com/download/2/8/0/2800a518-7ac6-4aac-bd85-74d2c52e1ec6/tuning.doc
    You will see the following:
    I assume that the Windows Server CIFS server service must be "smart enough" to determine that a CIFS client is attempting access to a SYMLINKD and actually fill the request by following the SYMLINKD.  The CIFS server service does not appear
    to operate like this.
    1) Am I correct in my assumption that the CIFS client (redirector) and the CIFS server (server) do not following symbolic links (whether they be file or directory)?
    2) If not, how do I submit a feature request for this so that it can be reviewed and approved or not approved for inclusion/hotfix release?
    Thanks for your time,
    Matt Brown
    [UPDATE]
    Note that you can use a `directory junction` instead of using a SYMLINKD, to link to LOCAL resources (source). However, `directory junctions` do not allow access to resources over UNC.

  • Google maps does not work

    I have Snow Leopard 10.6.8 on my Macbook Pro. No matter which browser I use, Google maps will not render the map detail - instead it just shows the target location with a letter 'A' or whatever, but the background map is just grey with no features. It  makes no difference how long I wait either. I have used the various features in browsers to clear out the 'junk' and have used 'reset safari' when in that browser, Still no joy. I have had the MBP for two years and I expect this simple feature to work as it does on all my Windows PC's and iPhone. I am at my wits end and feel somewhat duped into the Apple world by the triumph of 'form' over function. I want to love my MAC but it aggravates me instead because I spend too much time trying to figure out how to get basic features working when in fact they should work first time without user intervention.
    Has anyone got a 5 minute fix for this ridiculous fault please? I cannot upload a screen grab either because (1) this Apple forum wont allow upload of my screengrabbed jpgs of tiffs, or (2) my MBP wont allow it (despite them being within the expected size limit). Another spectacular own goal by Apple.

    Have you tried a PRAM and an SMC reset? They're longshots, but don't take long to try.
    PRAM: http://support.apple.com/kb/HT1379
    SMC: http://support.apple.com/kb/HT3964
    Have you run Apple Diagnostics from the disc(s) that shipped with the computer?
    Since the problem occurs in all browsers, it still sounds like a video hardware or video RAM or maybe a software issue having to do with layers and rendering.
    The map layers aren't getting rendered, or if rendered, aren't getting displayed.
    Do you have any browser add-ins? Pop-up blockers?
    Since you have two video chipsets, it's possible that might be related to the issue.
    This non-Apple website talks about switching between chipsets on the various MacBook models so equipped, and points to a free 'donationware' program for the menubar that lets you easily switch between chipsets:
    http://www.everymac.com/systems/apple/macbook_pro/macbook-pro-unibody-faq/macboo k-pro-unibody-switching-between-graphics-processors.html
    Trying to think of other software that might help pinpoint the problem, does the iPhoto Slideshow 'Shatter' template work? Working properly, it 'shatters' images into several color layers and rotates them in and out to build and deconstruct photos.

  • Log in to Secure Global Desktop Enterprise does not work

    Dear All !
    I installed tarantella 4.10.903 on our server tarantella. We use secure
    modus, proxies over 443 port. It does work with Log in (classic webtob)
    but when I try with Login (Log in to Secure Global Desktop Enterprise
    Edition) it does'nt work...Page cannot be displayed...
    Should I install the full SW-Pkg. again ?

    Manfred wrote:
    Dear All !
    I installed tarantella 4.10.903 on our server tarantella. We use secure
    modus, proxies over 443 port. It does work with Log in (classic webtob)
    but when I try with Login (Log in to Secure Global Desktop Enterprise
    Edition) it does'nt work...Page cannot be displayed...
    Should I install the full SW-Pkg. again ?
    can you post the Listen lines of your httpd.conf file? Also try to
    restart the tomcat server
         $ tarantella webserver restart --servlet

  • Nokia maps does not work off line

    Nokia Maps doesn't work off line but Nokia Drive does on my Lumia 900). Anybody knows why?
    Solved!
    Go to Solution.

    Nokia Drive can use offline maps on WP7.x devices, not Nokia Maps 
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Crystal report 10 export to MAPI does not work in Windows 7

    hi:
    I am using CR10 10.0.5.1025 in Windows 7. I tried to export a report to MAPI and got error:
    Error 2147500037 returned by function <MAPIResolveName>
    This error occurs both Office 2007 and 2003
    Any one see this error before?

    SOLUTION
    Hi, (excuse my bad english)
    The client have and use Windows 7 SP1 x64 Ultimate version .
    He use Crystal Report XI R2 Sp6
    PROBLEM:   He has a MAPI error Error when exporting PDF to MAPI.
                          He Receiving the following error message when trying to export PDF Crystal Report to MAPI.
                          Error 2147500037 returned by function <MAPIResolveName>
                          Email Client: MS Outlook 2007
    SOLUTION:   Were I found on the internet.
    Auhtor is: Andrew Whittam
    Web Link: http://www.2icsoftware.com/Support/Forum/tabid/110/aff/2/aft/1105/afv/topic/Default.aspx
    Microsoft decided to no longer support the 'Simple MAPI' email system in Windows 7. Although countless applications use it to manage emails, including 2ic Pallets, a replacement system has not been provided.
    So Windows 7 users have two options:
    Manually create email messages by copying and pasting information from the '2icEmail.txt' file that is created whenever there is an emailing error, i.e. every time you try emailing with Windows 7.
    Downgrade the '  C:\Windows\System32\Mapi32.dll  ' file to an earlier version, i.e. replace Mapi32.dll with the same file from a Windows Vista or XP computer.
    Downgrading seems to work ok. Mapi32.dll on Windows 7 has version number 1.0.2536.0, which is the same as Mapi32.dll on Windows Vista and XP. However, downgrade AT YOUR OWN RISK and check with your system administrator before making any changes.
    It is strongly recommended to rename the existing Mapi32.dll file rather than delete it so it can be restored if you find other programs do not work after downgrading. To downgrade, follow the steps below:
    Open Windows Explorer, navigate to '  C:\Windows\System32   ' (or '  C:\Windows\SysWOW64  ' for 64 bit operating systems), find Mapi32.dll and rename it to Mapi32.dll.OLD or Mapi32.dll.2ic. If you receive the message "You require permission from TrustedInstaller to make changes to this file." or some other permissions-related error, change the Owner of the file and permissions before trying again, i.e. right-click on Mapi32.dll, select Properties, Security tab, click Advanced, Owner tab, click Edit..., select "Administrators", OK the dialog boxes, again right-click on Mapi32.dll, select Properties, Security tab, click Edit, select "Administrators", allow Full Control and OK the dialog boxes. For more detail, good instructions can be found at http://helpdeskgeek.com/windows-7/w...dinstaller.
    Run the 'Email patch' from the Downloads - Utilities page of this website. This patch installs and registers the files below.
    C:\Windows\System32\Mapi32.dll
    C:\Windows\System32\MSmapi32.ocx
    Note they are only installed when missing or replacing an older version. For 64 bit operating systems these files are updated in the 'C:\Windows\SysWOW64' folder. Alternatively these files can be manually copied from a different computer and registered using Regsvr32.
    The email functionality can be checked using the 'Export/email test spreadsheet', also available on the Downloads - Utilities page. Using this spreadsheet to generate an email on Windows 7 before downgrading should result in an error message. Emailing should work after running the patch.
    RESULT:       I fixed the problem customer PC. TEST and Verification are fonctionnal.
    Steve
    Edited by: sstmartin on Mar 18, 2011 9:11 PM

  • Value mapping does not work

    Hi All,
    I can not get value mapping in XI 3.0 to work. Has anyone experience with this, the documentation is soo bad. This is what I have done:
    In the Graphical mapper I used the object "Value mapping" and filled in the following parameters:
    Value mapping context: http://sap.com/xi/XI
    Source
    Agency: System1
    Schema: UnitSystem1
    Target
    Agency: System2
    Schema: UnitSystem2
    In the directory I created an Value mapping table with the same paremeters as above and filled in the table.
    When I test the complete flow, the value mapping is not used. The unchanged values are just copied over to the target field.
    Any help is appreciated.
    Cheers,
    Frank

    Hi Colin,
    In test Mode you can't test the value mapping, because the value mapping table is part of the Directory. Instead of the Value Mapping I tried "Fixed Values" and that works, but you can not re-used it.
    If this advanced mapping guide explanes how to use the value mapping better then the standard "how to" mapping guide, please send it to me.
    email: [email protected]
    Cheers,
    Frank

  • Global Selector .AFFieldTextDisabled does not work

    The declaration of styles against the global selector .AFFieldTextDisabled do not effect disabled input text components as is implied in the Selectors for Skinning ADF Faces Components document.
    Can anyone please clarify if I am using this selector incorrectly or if you have managed to get it working.
    I have been unable to find any material indicating a problem or different implementation of the .AFFieldTextDisabled selector.
    I tried a simple custom skintest application and AFFieldText selector functions as expected but the following global selector style definition doesn't change the style of disabled input text components.
    .AFFieldTextDisabled{
    background-color:Red;
    Thanks in advance
    Eddie

    Hi.
    The selector for the input text disabled is
    af|inputText:disabled {background-color:#00C000};
    af|inputText:disabled::content {background-color:#00C000};
    af|inputText:disabled::label {background-color:#00C000};
    In this link you have a demo http://jdevadf.oracle.com/adf-richclient-demo/faces/components/skinningKeys/index.jspx

  • Crystal report export to MAPI does not work in Windows 7

    I am using CR11 R2 SP4 in Windows 7. I tried to export a report to MAPI and got error:
    Error 2147500037 returned by function <MAPIResolveName>
    Any one see this error before?

    Hi Edmund,
    Once post are closed we don't typically go back and watch them. There are also other post with this same issue.
    Vincente logged a case I just updated him:
    The scheduled release is as follows:
    It's been fixed and set to be released in Fix Pack 2.6 for Cr 2008 and 6.2 for CR XI R2
    Then again for 2008 FP 3.1 and SP 4
    6.1 was just release a few weeks ago so 6.2 should be in 3 or so weeks. All depends on how the QA'ing goes.
    I'll know better when we get closer to the expected release time. 
    For Cr 2008 I'll have to find the scheduled release date.
                                                                                    Thank you                                                                               
    Don

  • Trusted Reconciliation Status mapping does not work - 11g Release2

    Hi all,
    On my process for trusted reconciliation I have mapped my status attribute to Oim 'Status' attribute. It is as follow:
    UserStatus -> Status
    On my custom scheduled task I transform the status data get form HR (my trusted system) with the values 'Active', 'Disabled','Deleted' and create a reconciliation event.
    Even the value I set for the status is 'Active' , afte reconciliation the status is not updated and it is 'Disabled'., what may be the problem? any help is strongly appreciated
    Part of my reconciliation event creation code is as follow :
         params.put(AttributeConstants.TCMB.ROLE, "Consultant");
         params.put(AttributeConstants.TCMB.ORGANIZATION_NAME, "Xellerate Users");
         params.put(AttributeConstants.TCMB.XELLERATE_TYPE, "End-User");
         params.put(AttributeConstants.TCMB.DISPLAY_NAME, resourceData.getName()+" "+resourceData.getSoyadi());
         params.put(AttributeConstants.TCMB.IDENTITY_STATUS, UserManagerConstants.AttributeValues.USER_STATUS_ACTIVE.getId());
         System.out.println("Active param : "+UserManagerConstants.AttributeValues.USER_STATUS_ACTIVE.getId());
         System.out.println("Disabled param : "+UserManagerConstants.AttributeValues.USER_STATUS_DISABLED.getId());
         System.out.println("Deleted param : "+UserManagerConstants.AttributeValues.USER_STATUS_DELETED.getId());
         long result = recObject.createReconciliationEvent("TCMB_PBS_TRUSTED", params, true);
    Thnaks in advance,
    BR
    Aliye

    I would say don't supply status info for recon. OIM will update automatically based on start date and end date.
    If you have special scenario then sure we have to map it and try params.put(AttributeConstants.TCMB.IDENTITY_STATUS,"Active") for same.
    Better ignore passing status attribute. Lets OIM decide.
    --nayan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Planning system value mapping does not work (planingsys)

    Hello,
    When sending a Material from R3 to SBO one of the materials fails with this error:
    DI Error -1004 : (-1004) '' is not a valid value for field 'PlaningSys'. The valid values are: 'M' - 'MRP', 'N' - 'None' =| (End of appended Exceptions)
    I immediatly set a value mapping for Planning System ( '' -> 'N' ) but the same error still occurs (i also tried with '' -> 'M' ).
    Can anybody help ?
    Thanks,
    Fabrice.

    I finally found a solution
    The value mapping that needs to be done was:
    'PD' -> 'bop_MRP'
    the value '' in the error is wrong: the value was 'PD' and the mapping has to be done with the SBO SDK variable name.
    Bye.
    Message was edited by:
            Fabrice NANNI

  • Map does not work in IPad 3

    Map on IPad 3 stopped working post update to IO6. Prior to this update, I was able to use direction (i.e. GPS) functionality on IPad MAP but now "direction" option doesn't work and everytime I try finding direction it keeps giving error "Direction Not Available... Direction could not be fouond ..."
    Is this a known bug / issue and any idea by when this will be resolved?

    Hi,
    Are the pdf files in which you are trying to highlight are scanned copies?
    Also are the pdf files password protected?
    In password protected files user is not allowed to add any comments.
    Thanks,
    Ankit

Maybe you are looking for

  • Upgradation from XI 3.0 to PI 7.0

    Hi All, If  anybody have upgradation document  from XI 3.0 to 7.0 Please share it with me..what  are the major  differences between XI 3.0 and PI 7.0? Thanks in advance, Hemu

  • What would cause a lot of redo or logswitches in an instance with no users?

    Hello all, I've got a database instance that is set up as a 3 node RAC cluster. I don't think this is RAC related, but the database issues is causing RAC issues. The instance has been set up, and later will be used to temporarily hold data while anot

  • Wrong apple ID comes up

    Just installed itunes 11 and tried to sync my ipad.  Now is I try and double click on any of the apps it asked me to log in with a apple ID of [email protected] THis is not mine ID and the list of apps in Itunes does not even correspond to what is on

  • Error when calling skillbuilder popup in edit-record mode

    Apexers, Iam facing another issue with Skillbuilder modal page(for those who have used this plugins). Ive the CREATE part working well the problem is with EDIT part to edit records via the link i applied all the steps and clicking the edit link pops

  • Files to big

    Hi there!, Does anyone know who to compress swf files as i have just built a site and it takes a long while to display in the browser? Any ideas will help! thanks shayne