Apex :run and build application

HI ,
While exporting apex application from test to prod i gave build status override as run and build application instead of run application only.and then i imported
i this case according to my knowledge user can run as well as can make changes ....
is it possible to revert it to run only ....
if yes how ...
thanks in advance....

Yes, from the main screen after logging into workspace, look for "*Manage Services*" link. Under Manage Services, find Manage Application Build Status. There, you can convert application between Run and Build Application to Run Application only and vice versa.
Ittichai

Similar Messages

  • Importing "Run and Build Application"

    I've been trying to duplicate my Oracle workspace applications on my local machine. It worked fine for one of my apps, but the second one failed. I exported the file several times in DOS format with Unicode UTF-8, Build Status Override "Run and Build Application", and other fields blank. I imported successfully on my machine, and got to the "Application Install" screen. But the routine then failed with the message:
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 6, column 7: PLS-00103: Encountered the symbol "¿¿¿¿¿¿¿¿4¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿¿" when expecting one of the following: ( - + case mod new null avg count current max min prior sql stddev sum variance execute forall merge time timestamp interval date 1.4.4.00.33
    When I tried to importing the same file back to the Oracle workspace (to create a backup copy so I could further develop without risk) it also failed at the same point with this message:
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 6, column 7: PLS-00103: Encountered the symbol "䑚⁃敌癡㩥匠汥捥⁴湡攠灭潬敹⁥湡⁤汣捩䈢梠when expecting one of the following: ( - + case mod new null avg count current max min prior sql stddev sum variance execute forall merge time timestamp interval date 1.4.4.00.33
    Any ideas?
    Thanks.
    Bill

    Sergio
    Here is the output from the NLS query:
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET WE8MSWIN1252
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 9.2.0.4.0
    Here is the output from the procedure in the other thread:
    nls_language = {AMERICAN}
    nls_territory = {AMERICA}
    nls_characterset = {WE8MSWIN1252}
    add this line to your DAD config:
    PlsqlNLSLanguage AMERICAN_AMERICA.WE8MSWIN1252
    How (or where) do I add this line to my DAD?
    Bill

  • How to give permission to user to run and install application like data card or modem

    Hi,
    when a standard user try to use an Data card (airtel 3G Dongle), windows 7 prompts for a administrator password to run the application.
    I have to go and type admin password each time when that person uses the dongle. Is there any way that  i can give permission for that user account only to run that application without admin password.
    I don't want to add him to administrator group and then it will be a mess.
    please help me out here............
    Thanks in Advance.

    I would check to see if there is software that can be downloaded to the PC from the manufacturer. I am assuming your device is a "plug and play" device. The manufacturer might still have the device drivers for install on their website.
    Installing the drivers manually should alleviate the problem
    Otherwise, you can make the changes in Group Policy to solve the problem
    See this link: http://technet.microsoft.com/en-us/library/cc725772.aspx

  • Runas and Adobe Application Air 2.x?

    Hello dear people,
    I have been found this trick of RUNASADMIN or EVELATEDPROCESS this url:  http://www.sevenforums.com/tutorials/316-compatibility-mode.html
    Look Step: "OPTION THREE" and Manually in Registry Editor
    I think sure becasue we are suing with Adobe Application AIr 2.x via Administrative rights for Windows Vista and 7....
    Like this Code: But i am not finish this code. I am not sure when you are sure for xml and regkey files?
         Runas to Application Air
         Support for Windows Vista and Windows 7
    package
         import flash.desktop.NativeProcessStartupInfo;
         import flash.filesystem.File;
         import flash.filesystem.FileStream;
         public class StartRunAs
              public var RunasXML:File = new File(var xml:XML = <runas>runasCall()</runas>);
              public var smDir_Runas:File = File.applicationStorageDirectory;
              public var runas_reg_key:File = File.applicationStorageDirectory.resolvePath("runas.reg");
              public function StartRunAs():void
                   // Copy from ApplicationDirectory
                   if(RunasXML.exists)
                        xml.contains("runasCall()");
                        function runasCall():void
                             if(runas_reg_key.exists)
                                  function runas_Addreg():void
                                       // Start regedit with runas.reg
                                       var regeditApp:NativeProcessStartupInfo = new NativeProcessStartupInfo("C:\\Windows\\regedit.exe");
                                       regeditApp.arguments = runas_reg_key;
                                       // Delete startfiles - if you are assigned by UAC readly.
                                       RunasXML.deleteFile();
                                       runas_reg_key.deleteFile();
                             }else
                                  // Write reg file:
                                  var runas_reg_key_Stream:FileStream = new FileStream();
                                  runas_reg_key_Stream.open(runas_reg_key);
                                  runas_reg_key_Stream.writeBoolean(
                                       "Windows Registry Editor Version 5.00" +
                                       "" +
                                       '"' + File.applicationDirectory() + 'myapp.exe"' + '="RUNASADMIN"'
                                  runas_reg_key_Stream.close();
                                  // Execute to regedit add reg file
                                  runas_Addreg();
                   }else
                        SkipInit();
              protected function SkipInit():void
                   // Now Your application with adminstrative rights
    If your runas.reg should see a result: Like this:
    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers]
    "C:\\Program Files (x86)\\MyApp Air\\Myapp.exe"="RUNASADMIN"
    Than Adobe Application Air calls NativeProcessStartInfo with "Regedit.exe runas.reg" and it will to change in administrative mode with Application Air 2.x.
    Than you can close Application Air and you click Shutcut from Desktop. What does it happen? Now Application Air starts with administrative privatages and you prompt "Yes" and Application Air loads and can rewrite in the directory C:\Program Files x(86)\MyApp\
    Did you think sure? That is a nice trick once UAC with read/write mode of Application Air for example:
    Plugins and templates will to copy in ApplicationDirectory Example: C:\Program Files x(86)\\MyApp\plugins or C:\Program Files x(86)\\MyApp\templates
    That is a good suggestion of my access rewriting! Do not worry , dear Windows Users!!!!
    I have been tired nice FileStream with process
    I hope you because you can improve or add suggestions We can work together
    Thanks best regards, SnakeMedia
    That is an example for assignned regkey once Adobe Application Air to adminstrative Application Air like any programs CCleaner or TuneUp Utilities 2011...

    Hello peoples,
    i have been fixed this problem.
    But it show crazy because Adobe Air write worng word : [object file]. I can not try this problem
    I have been writen our code like this.
    AirAdmin.mxml: for Flex 3.5 with Air SDK 2.x
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="init(event)">
         <mx:Script>
              <![CDATA[
                   import mx.events.FlexEvent;
                   protected function init(event:FlexEvent):void
                        // Center main AIR app window on the screen
                        nativeWindow.x = (Capabilities.screenResolutionX - nativeWindow.width) / 2;
                        nativeWindow.y = (Capabilities.screenResolutionY - nativeWindow.height) / 2;
                        // Load regFile and cmdFile
                        getRegFile();
                   private var airAdminFile:String = File.applicationDirectory + "AirAdmin.exe";
                   private var regeditFile:File = new File("C:\\Windows\\regedit.exe");
                   private var regFile:File = new File;
                   private var cmdFile:File = new File;
                   private var cmdAppFile:File = new File("C:\\Windows\\System32\\cmd.exe");
                   protected function getRegFile():void
                        // regfile
                        regFile = File.documentsDirectory.resolvePath("AirAdmin.reg");
                        var regFileStream:FileStream = new FileStream;
                        var regFileStructur:String = 'Windows Registry Editor Version 5.00';
                        regFileStructur += File.lineEnding;
                        regFileStructur += '[HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\Layers]' + File.lineEnding;
                        regFileStructur += '"' + airAdminFile + '"="RUNASADMIN"' + File.lineEnding;
                        cmdFile = File.documentsDirectory.resolvePath("AirAdmin.cmd");
                        var cmdFileStream:FileStream = new FileStream;
                        var cmdFileContent:String = regeditFile + '"' +regFile + '"' + File.lineEnding;
                        if(regFile.exists, cmdFile.exists)
                             regFileStream.open(regFile, FileMode.READ);
                             regFileStructur = String(regFileStream.readUTFBytes(regFileStream.bytesAvailable));
                             regFileStream.close();
                             cmdFileStream.open(cmdFile, FileMode.READ);
                             cmdFileContent = String(cmdFileStream.readUTFBytes(cmdFileStream.bytesAvailable));
                             cmdFileStream.close();
                             openShell();
                        else
                             regFileStream.open(regFile, FileMode.WRITE);
                             regFileStream.writeUTFBytes(regFileStructur);
                             regFileStream.close();
                             cmdFileStream.open(cmdFile, FileMode.WRITE);
                             cmdFileStream.writeUTFBytes(cmdFileContent);
                             cmdFileStream.close();
                   // NativeProcess
                   private var StartProcess:NativeProcess = new NativeProcess;
                   private var args:Vector.<String> = new Vector.<String>;
                   protected function openShell():void
                        var StartUpInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo;
                        StartUpInfo.executable = cmdAppFile;
                        args.push("start");
                        args.push("/C");
                        args.push(cmdFile);
                        StartUpInfo.arguments = args;
                        if(StartProcess.running)
                             // Your mode is as administrative right
                             StartProcess.start(StartUpInfo);
                        else
                             // It is not an administrative right mode!
                             StartProcess.start(StartUpInfo);
              ]]>
         </mx:Script>
         <mx:Label id="mylab" horizontalCenter="0" verticalCenter="0"/>
    </mx:WindowedApplication>
    Nothing has errors. Work fine...
    But 2 outputs for AirAdmin.reg and AirAdmin.cmd have worng words [object file].
    It has problem of writing with current directory. How do i fix path to text
    For Example:
    var AppFile:File = File.applicationDirectory.resolvedPath("App.exe")
    and i put in writing mode for regedit...
    Output should to show this:
    C:\\Program Fils (x86)\\App\\App.exe <- current result like sometime writing function to text mode
    But i have problem of writing mode - if i put in path and directory to text mode.
    Worng words:
    [object file]App.exe <- What is it crazy?
    2 worng words in 2 files ( reg and cmd )
    AirAdmin.reg:
    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers]
    "[object File]AirAdmin.exe"="RUNASADMIN"
    and AirAdmin.cmd:
    @echo off@echo[object File]"[object File]"
    I do not understand because Air 2.6 has problem of writing path to text mode..
    Like this for example:
    File.applicationDirectory.resolvedPath("MyExampleApp.exe") to "C:\\Program Files (x86)\\MyExampleApp\\MyExampleApp.exe"
    A result will to show current path to executable in the reg file:
    "C:\\Program Files (x86)\\MyExampleApp\\MyExampleApp.exe"="RUNASADMIN"
    Thanks for advanced problem . I want to assign Application Air into Administrative Application Air
    I hope you because you think sure because i want to try Application Air to Administrative Mode
    Thanks for reply

  • Revert Build Status to Run and Build

    In what table in the XE database is the status stored? I accidently set it to Run Only and do not have the time nor patience to export and import.
    I'd even accept what table & column it is stored in at this point.
    Thanx for any help

    Hi John,
    There is a tread how to do that.
    Moreover, Dietmar for Germany has a very good explenation.
    Just search for Dietmar.
    Konstantin
    You still can export the application!!!

  • My "Adobe installer" is not running  and "adobe application manager" will not update....

    My question?
    When did making art get so technical? Also, have the software engineers at Adobe finally  begun to shed the Cheetos from their beards and then crown themselves as artists extraordinaire? Well good for them! Bad for me! No offense, but I've  been wrestling with this for quite a while. Without a single Cheeto.....
    Could somebody at least tell me that this problem is mostly imaginary? I can relate to that actually, one time in Santa Cruz...
    Bridge crashes frequently, especially during a drag and drop action. Photoshop crashes less frequently, but when even a mere moment's worth of my eternal genius has been shed, all life weeps, including you...unknowingly...
    I was then instructed by the Adobe to perform a strange ritual using an ancient language called the "DOS" and to inquire for the Adobe of the little known " fsutil file setshortname" routine. Then the Adobe would know my true name, and where my short paths were (?).I tried very hard to comply with the demands of the Adobelites who lounged in the Cloud but fled to this place for counsel./
    This is all true. My mother said so.
    Thanks, and with much too much time on his hands,
    Erich
    Operating System: Windows Vista 64-bit
    Version: 6.0 Service Pack 1
    Adobe Photoshop Version: 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch]) x64
    Architecture: AMD CPU Family:15, Model:10, Stepping:0 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 6
    Processor speed: 2593 MHz
    Built-in memory: 8191 MB
    Free memory: 1109 MB
    Memory available to Photoshop: 7173 MB
    Memory used by Photoshop: 70 %
    Image tile size: 132K
    Image cache levels: 4
    Video Card: AMD Radeon HD 5450

    By "not running", what exactly do you mean?
    You can't open it from "Programs"? You can't open it when double clicking a pdf file? You can't open a link to a pdf on a web page? Do you get any error messages?
    More details please.

  • SDM password when running and deploying webdynpro application

    Hi
    I developed a simple webdynpro application, no eventing just displays text. I rebuild it and then 'run and deploy' application. While doing this it pops up with a dialog box asking for a SDM password.
    Is this deploying correctly?
    Any assistance is much appreciated

    Hi Dajee,
    Yes it is deploying correctly. Give sdm as password it sould work if you don't have changed the default password of SDM.
    Regards,
    Bhavik
    Consider Reward points also.

  • Apex 3.1.2 application export

    Hi
    I have 3 environments, one with apex 3.0 and two with apex 3.1.2. All of them are on 11g DB.
    When I export an application (about 35pages) from apex 3.0 I get file size approx 1,8MB, but when I export same application from 3.1.2 I am getting the file size about 200KB. I made a test and imported the application back into apex 3.1.2 with different application id and found out that i get only pages with page id from 0 to 10.
    I do it like this:
    Home>Application Builder>Application 103>Export / Import>Export
    file format: DOS
    owner override: (empty)
    build status.. :run and build app.
    debugging: yes
    exp. supp.obj. : yes
    exp. comments: yes
    as of: (empty)
    file character set: utf-8
    What I and doing wrong or missing with exporting?
    Taavi
    Edited by: Taavi on Feb 19, 2009 4:11 PM
    On closer look I noticed that most of the downloaded file was cut off for some reason. Any ideas where to look for cutter?
    I managed to export the application with SQL Developer (app.exp>export DDL>save file)

    Make sure the DAD characterset is AL32UTF8.
    Scott

  • How to run the VC application which is deployed

    Hi  All,
    I am new to the VC. I created one model, and i have added some data service and view. and i compiled and deployed. I am not able to find , how to run that deployed application.
    Can any body tell me how to run the deployed VC application.
    Regards
    Vijay

    Hi Vijay,
    go after you have deployed to Deploy on the right side of the VC. There you have to see "see source code" and "Run name of your application". Put your mouse at run and the application will start.
    Another way ist to put the Button "Deploy Model " (it is the picture with the running man) in the 2second menu line. If you do this, the modell will start automatically, if it has no errors.
    Regards
    Thomas

  • Build java and javafx applications

    Hello everybody! Currently, I am building a netbeans project that consist of java and javax applications and the questions are :
    1. How to call java object in javafx object or it reverse. Which one the better?
    2. How to compile and run the project that consist of java and javafx applications.
    Help me, please!Thank's

    Also, If you want to call JavaFX methods from Java you can use interface and have the JavaFX class extend it (interfaces are extended in JavaFX)
    For example, make interface FXAdapter.java
    interface FXAdapter {
         public void modifyLayout();
    }And in your FX class
    public class FXClass extends FXAdapter {
         public override function modifyLayout() : Void { /*Implementation*/ }
    }Now in your java class you can ask for FXAdapter as a parameter and pass a FXClass object

  • IOS/AIR Running and Debugging Issues with Flash Builder

    I'm having very frustrating intermittent issues running and debugging Flex applications on an iPad 3rd generation retina with Flash Builder 4.7.
    Until this morning, launching on device using both standard and fast packaging worked pretty well. Every now and again, I'd get a dialog saying the packaging had completed successfully, but it hadn't. A quick change of the USB cable to another port on my iMac and it started working again. I'd also randomly get a "Error occurred while installing the application: Invalid <device> specified" error, which quickly went away.
    This morning, with the same code base, the same certificate and provisioning profiles, Flash Builder has only managed to successfully package and run my application on my iPad twice and I must have attempted to launch fifty or so times. Standard packaging, fast packaging and with and without the useLegacyAOT.
    Does this sound like a Flash Builder issue? Is my iMac USB driver dodgy? Has anybody else experienced this?
    Any help greatly welcomed!
    Thanks,
    Simon

    Hi I have had this problem sometimes. With my Mac Book Pro.
    Try making a new flex application and see if you have the same result.
    When I had this problem I created a new Application and copied every thing from my other application.
    This my be a hard solution but I don't no any others.

  • Flex Builder, debugger and web application: how?

    Hello,
    I'm traying to setup a project in eclipse with both a java
    web application (servlets, jsp) and flex applications as a
    frontend. So I installed flex builder as a plugin on an eclipse+web
    standard tools, then created a WST web application project, and
    used the "Add flex nature.." of the flex plugin. I don't want to
    use the flex data services.
    Now, in a standard run (I installed a tomcat 5.5 and
    configured it in eclipse), my mxlm files are being correctly
    compiled into swf, and they are successfully calling my servlets
    (which simulates a backend xml-based interface).
    I'm having problems in debug: if I launch the debug profile
    related to tomcat, the normal version of the sfw will be used (even
    manually switching to the "-debug" version, it says that a running
    flex debugger has not be found on localhost). On the other way, if
    I launch the debug as a "flex application", it seems to work (it
    stops at breakpoints) but my tomcat is not started at all, the swf
    is accessed as a local file and all call to my servlet will fail..
    so it will stop working almost immediately.
    There is a way to setup eclipse to start standard java
    debugging with tomcat *and* the flex debugger?
    Thanks
    Cosma

    I found a workaround of sorts for the problem: don't
    terminate the applications!
    Previously, I would terminate the application using either
    the Terminate button in the Debug view or by closing the tab in the
    browser (Firefox). Now I just let them pile up in the browser and I
    rarely see this problem.
    In other words, I was having lots of trouble when doing
    Launch-Terminate-Launch-Terminate... but now I just
    Launch-Launch-Launch... and clean up once in a while.

  • Run and Exit button on application

    Hello,friends! I have some problem and I'll be thanked for any help! I want to create application from my VI with application builder. I want to take away all standard toolbars and buttons when application will be using. So,to do it I must to create Run and Exit buttons in application. But i do not know how to do it :-( It will be cool, if anyone will divide by example of VI, which will contain function for this buttons! Thanks!
    Solved!
    Go to Solution.

    here is a vi attached..just an example 9hittimg stop button will quit Labview)
    If you do not want to see the menu bar or the scroll bar then CTRL+I->VI properties->Window appearence->customize and select from the option to customize accordingly.
    Also if you want to stop and quit the application use the "Quit LabVIEW" function available
    Regards
    Guru (CLA)
    Attachments:
    RunStop.vi ‏12 KB

  • I've updated my Macbook Pro and my iMac with Maverick, updating the various apps. On my Macbook, everything functions perfectly. On my iMac, I get the Your System has Run out of Application Memory, and it's based our Mail, the only app not updated. Ideas?

    Maverick and Your System message
    I've updated my Macbook Pro and my iMac with Maverick, updating the various apps (Pages, Aperture, iPhoto, Numbers & iMovie, too) in the process.
    On my Macbook, everything functions perfectly. On my iMac, I get the Your System has Run out of Application Memory message. But it's not Calendar, it's Mail that not only won't open, but when it does now, it takes the entire system out with it.
    I open Safari, and it works. I open Firefox, and it works and Safari still works. I open Calendar and it works, Safari and Firefox continue to work. I open Reminders, and everything still works.
    I open Aperture, and it opens Finder instead, showing the 3.5 update that was installed two days ago (and Aperture has functioned), but doesn't seem to update the app; after about 20 seconds the update disappears and I can now open Aperture and it shows I'm now opening the updated Aperture, which it didn't show before.
    I click on Mail, and the cursor spins for ten minutes. The mail window finally opens, but the cursor spins and does not connect to upload new mail, and I finally Force Quit Mail. Since the Maverick update, even though Mail was not updated (and maybe because Mail was not updated), I have been able to receive emails twice, and then the program crashed.
    Besides the Aperture app, Pages didn't fully update on the iMac, and I had to remove the old Pages icon from the dock after the new program loaded up from Applications.
    Any ideas?

    Maverick and Your System message
    I've updated my Macbook Pro and my iMac with Maverick, updating the various apps (Pages, Aperture, iPhoto, Numbers & iMovie, too) in the process.
    On my Macbook, everything functions perfectly. On my iMac, I get the Your System has Run out of Application Memory message. But it's not Calendar, it's Mail that not only won't open, but when it does now, it takes the entire system out with it.
    I open Safari, and it works. I open Firefox, and it works and Safari still works. I open Calendar and it works, Safari and Firefox continue to work. I open Reminders, and everything still works.
    I open Aperture, and it opens Finder instead, showing the 3.5 update that was installed two days ago (and Aperture has functioned), but doesn't seem to update the app; after about 20 seconds the update disappears and I can now open Aperture and it shows I'm now opening the updated Aperture, which it didn't show before.
    I click on Mail, and the cursor spins for ten minutes. The mail window finally opens, but the cursor spins and does not connect to upload new mail, and I finally Force Quit Mail. Since the Maverick update, even though Mail was not updated (and maybe because Mail was not updated), I have been able to receive emails twice, and then the program crashed.
    Besides the Aperture app, Pages didn't fully update on the iMac, and I had to remove the old Pages icon from the dock after the new program loaded up from Applications.
    Any ideas?

  • Itunes update would not install due to an error, now itunes won't run and I get this message when I try to launch itunes: "This application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem"

    itunes update would not install due to an error, now itunes won't run and I get this error message when I try to launch itunes: iTunes.exe - Unable to Locate Component "This application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem."
    I'm on a Dell PC running Vista Home Premium.
    HELP!!!!!!!!!!!!!!!!!!!

    try removing all itunes and all other apple program
    follow this link for more info. http://support.apple.com/kb/HT1923
    reboot ur window after uninstalling
    after that download the latest itunes setup and install.

Maybe you are looking for

  • Files from iWeb '08 will not open in 'Web '11

    I have several sites that are generated in iWeb. At work I use a Quad G5 running 10.4.11 and IWeb 2.0.4. At home I'm using a 24" iMac running 10.5 and iWeb 3.0.2. I write and update my sites seamlessly from either computer. Over the weekend I upgrade

  • WRT610N keeps needing to be reset

    Hi, My WRT610N wireless router keeps needing to be reset to be able to connect to the internet. I updated the firmware about two weeks ago and things were going great again until a day or so ago, then it started cutting out multiple times a day. I ch

  • Do we need "Centrify"?

    Hi, we are in the process of doing our Identity Management stack. So far we're working with DSEE 6.3.1, IDM 8.2 and ISW and so on - a Sun DSEE Stack. But we have a consultant who wants to keep pushing Centrify on us. I can't actually understand what

  • Port is added by upnp but still inaccessible

    Hi. I'm new to miniupnpd and iptables. Just now I successfully installed and started miniupnpd on my Linux router, and I ran Skype which then successfully added port (55043) via upnp. However, the port was still inaccessible from internet. Is there a

  • I got a new laptop, but I can't find my creative suite 6 cd. Is there any way to get my CS6 programs from my windows 7 laptop to my new windows 8 laptop?

    I guess I didn't register it to this account since it's not there. I'm going to check my other emails to see if maybe I registered it to a different account and I'm going to keep looking for the cd. But is there any hope of getting my programs from o