Unanswered threads

This one is for Oracle Jdeveloper Team
I am seeing lot of threads which are not answered. what is the
time frame in which a thread will remain open/answered.
ravi
null

This forum is monitored by the JDeveloper team on a regular
basis. Although we endeavor to answer questions on a timely basis
some threads require research and investigation. Other threads
are not appropriate for this forum. The forum is NOT meant as a
substitute for Oracle Customer Support. If you have urgent issues
you should contact them.
- PSW
Ravi (guest) wrote:
: This one is for Oracle Jdeveloper Team
: I am seeing lot of threads which are not answered. what is the
: time frame in which a thread will remain open/answered.
: ravi
null

Similar Messages

  • Show: Answered | Unanswered Filter

    As you may have heard, we are working with Lithium to upgrade our forum software to their latest version.  I need some feedback concerning the Answered | Unanswered filter that displays either answered or unanswered threads. 
    Do you use this filter in your daily forum browsing?  If not daily, how often do you use it, if at all?
    We are not considering taking it away, but there is a possibility that it would not work for a few weeks after the upgrade.  I would like some feedback before we proceed. 
    Thanks in advance,
    Laura
    Web Support & Operations
    National Instruments

    I think it is of limited use, except for NI staff that needs to make sure everything is answered.
    Typically, the filter is meaningless because even if there are a few answers already, the question might not have been answered at all, or may have received only an incorrect answer, or a request for clarification, or .....
    I would prefer to filter the list of my threads in the tracker such that all threads with new activity (bold) are on top.
    LabVIEW Champion . Do more with less code and in less time .

  • No replies for thread

    Hi All,
    I have posted some questions in Webdynpro ABAP forum.
    I did not get any replies for some of them. All of them are good ones. I always search before posting.
    I closed the threads and posted them again with new subject line.
    Still I could find no replies. How can I get clarified. Even moderators are not replying them.
    I'm still in search of the answers. I would appreciate if the moderators share their views for those threads based on the quality of the threads. In order to get the replies where else can we post the same thread in addition to the specific forum.
    Regards,
    Lekha.

    Hi All,
    >
    Siegfried wrote::
    > PS: Moderators are there for keeping the forums clean and not for answering questions without replies.
    I hope Siegfried's quote implies only for the thread without replies.But still it is out of their interest & time to give solutions to the unanswered thread.
    >
    saslove sap wrote:
    > All things are acceptable...
    > But Is it like if one person become Moderator by sharing his vast knowledge to the right posts and having nice reputation , and later he need to ignore to share knowledge?......
    >
    Before becoming a Moderator they get some time to help others with their knowledge apart from their regular work schedule but after becoming the moderator an extra burden of maintaining the forum is added up and that minimizes the percentage of sharing their knowledge.But still i dont believe that they avoid sharing their knowledge.
    >
    > I am so proud to SAPIANS with lot of knowledge around us and really intrested to share their knowledge....But problem it is not reaching at the right time...
    >
    Yeah this kind of situations happens rarely and it happens if there is a vacation for the regular contributors of SDN so it takes some time to get the answer.
    >
    > Every one Really missing the replies of great man like RICH HELIMEN ,Thomas Jung ..Lot many.
    >
    Yeah, people really miss solutions from these great men.
    >
    > we really need to appreciate some Guys who are contributing Long Lastingly  Craig , Julius ,Matt,Thomas ,Vijay, Anton, Rob (Every one upto extent what they can when time prompts for them).....SDN should come up certain encouragments to the guys who are really working hard to contribute ....
    >
    Yeah i strongly second this statement.And these men dont contribute to SDN expecting something they do it as they enjoy doing it.This can be clearly seen from their replies and contributions apart from the regular technical forums(ie.Coffee Corner)
    PS: I added some missing names to the list of great men.
    Cheers
    Andrew

  • Table Control[Accept Input Only] - "ENTER" Key

    Hi Folks,
    I'm reviving this unanswered thread in relation to table control: when the user press enter, all the values entered disappear.
    [url]Re: Table control (Enter key)[url]
    I have a table control that accepts "ONLY" input, meaning to say, there will be no pre-loading of data in the PBO, so it will loop through the table control itself instead of looping from an internal table.
    Issue: Whenever I press "ENTER" in any column/row of my table control, ALL the values I entered disappear.
    PBO:
    PROCESS BEFORE OUTPUT.
      MODULE CLEAR_OKCODE.
      MODULE LOAD_TABLECTRL.
      LOOP WITH CONTROL TC_DATA.
        MODULE READ_DATA.
      ENDLOOP.
    module READ_DATA output.
      READ TABLE T_DATA INTO WA_DATA INDEX TC_DATA-current_line.
      data : line_count type i.
      "to increase the number of lines in table control dynamically
      describe TABLE t_data lines line_count.
      TC_DATA-lines = line_count + 10.
    endmodule. 
    PAI:
    PROCESS AFTER INPUT.
      LOOP WITH CONTROL TC_DATA.
        MODULE MODIFY_DATA.
      ENDLOOP.
    module MODIFY_DATA input.
    WHEN 'CREATE'.
      "subroutines are here, etc.
    WHEN 'DELETE'.
    WHEN 'BACK'.
      LEAVE TO SCREEN 0.
    endmodule.
    In my ABAP Debug, the value of SY-UCOMM is BLANK whenever I press Enter.
    Thanks.

    Hi
    Your code seems to be rght only the MODIFY statament is useless:
    module READ_DATA output.
      READ TABLE T_ID_CHECK INTO WA_ID_CHECK INDEX TC_ID-current_line.
      IF SY-SUBRC EQ 0.
        ZQID_CHECK-WERKS = WA_ID_CHECK-WERKS.
        ZQID_CHECK-MATNR = WA_ID_CHECK-MATNR.
        ZQID_CHECK-LICHA = WA_ID_CHECK-LICHA.
        ZQID_CHECK-LIFNR = WA_ID_CHECK-LIFNR.
      ELSE.
        CLEAR ZQID_CHECK.
      ENDIF.
    endmodule.
    Now before LOOP of PBO try to set the lines of table control to be display, I've created this report on my system and it works fine:
    .CONTROLS T_CTRL TYPE TABLEVIEW USING SCREEN 100.
    DATA: BEGIN OF ITAB OCCURS 0,
              WERKS LIKE MARC-WERKS,
              MATNR LIKE MARC-MATNR,
              LIFNR LIKE LFA1-LIFNR,
          END   OF ITAB.
    DATA: WA LIKE ITAB.
    START-OF-SELECTION.
      DO 4 TIMES.
        ITAB-WERKS = '5010'.
        ITAB-MATNR = '1234567890'.
        ITAB-LIFNR = '0000000001'.
        APPEND ITAB.
      ENDDO.
      CALL SCREEN 100.
    PROCESS BEFORE OUTPUT.
      MODULE SET_T_CTRL.
      LOOP WITH CONTROL T_CTRL.
        MODULE READ_DATA.
      ENDLOOP.
    PROCESS AFTER INPUT.
      LOOP WITH CONTROL T_CTRL.
        MODULE MODIFY_DATA.
      ENDLOOP.
    MODULE SET_T_CTRL OUTPUT.
      DESCRIBE TABLE ITAB LINES T_CTRL-LINES.
    ENDMODULE.                 " SET_T_CTRL  OUTPUT 
    MODULE READ_DATA OUTPUT.
      READ TABLE ITAB INDEX T_CTRL-CURRENT_LINE.
      IF SY-SUBRC = 0.
        MOVE-CORRESPONDING ITAB TO WA.
      ELSE.
        CLEAR WA.
      ENDIF.
    ENDMODULE.                 " READ_DATA  OUTPUT
    MODULE MODIFY_DATA INPUT.
      MODIFY ITAB FROM WA INDEX T_CTRL-CURRENT_LINE.
      IF SY-SUBRC NE 0.
        CHECK NOT WA IS INITIAL.
        APPEND WA TO ITAB.
      ENDIF.
    ENDMODULE.                 " MODIFY_DATA  INPUT

  • Crystal Report Viewer 2008, postback causes a weird QueryString for dates

    HI,
    I'm having a weird problem that was masked with the error "".
    What is happening to me is that i have an ASPX page where the QueryString passed in is used as parameters to the report (straightforward).  When the page first loads, this is all fine the QuerySTring is properly parsed and the report is properly displayed.  Now, the problem comes when i click on the PRINT Button it performs a postback, and during that postback the querystring is read so that it can rebuild the report on the postback.  (In previous versions of crystal, this has always worked).  The issue here is that the version 12 of the report viewer here now appears to also append some information to the query string that was not previously there (like this:  ServletTask=Print&cmd=get_pg&page=1)  So the problem here for me is this is what my original QueryString looks like:
    tokenid=b2817081-6b52-43c7-8e2c-d6209af2ed98&Type=Appointment&Val=12%3b1%3b1%3b06%2f10%2f2000
    THat query string is generated by the following code (pre-encoded)
    "PrintPage.aspx?tokenid=" & Guid.NewGuid.ToString & "&Type=Appointment&Val=" & "12" & ";" & "1" & ";" & "1" & ";" & "1/1/2000"  (NOTE the date here, i'll get to that in a second)
    Then, what the problem is on the postback the Query String looks like this:
    tokenid=2a4f42de-bd90-48b5-ac82-bd34b503afd3&Type=Appointment&Type=Appointment&Val=12%3b1%3b1%3b1%2f1%2fPrintPage.aspx%3ftokenid%3d2a4f42de-bd90-48b5-ac82-bd34b503afd3&Val=12%3b1%3b1%3b1%2f1%2f2000&ServletTask=Print&cmd=get_pg&page=1
    As you can see here it's all messed up.
    So, what i found here is that the underlying cause is that we are passing a "date" in the original QueryString and it seems on the postback the Crystal Reports Viewer is having some issue with that and basically messes up the query string...
    I have Crystal Reports 2008/SP3 installed.
    Any help would be greatly appreciated.
    Thanks

    Cleaning up these forums I came across this unanswered thread.
    Very weird behavior that I have seen maybe 3 or 4 years ago - I think it was with opendocument.aspx...
    In this case, we appear to be re-adding the querystring with the aspx name and question mark (u2026.parentagesu2026).  Having two question marks (%3f) is essentially a malformed URL since this indicates where the querystring starts.
    The duplicate querystring may have been a coding error(?) where it gets added again on a postback.
    Were you able to resolve the issue?
    Ludek

  • Contacts and calendar showing double - because of MobileMe?

    I got mobile me and the contacts and calendar updated wirelessly as expected, however the last time I plugged in my iPhone to my computer, the iPhone synced with all information (contacts, calendar, itunes, photos, etc.) and now both my contacts and calendars are showing double on my iPhone. Is there a way to fix this?
    the calendars show two boxes on my iPhone: "From my Mac" and another "(email)(Mobile Me)". I assume this is why there are duplicates, however I do not know how to delete or get rid of it. I thought Mobile Me would simply update information from the Mac, not add to it.
    The contacts have the same two boxes and show all my groups of contacts twice.
    Am I not supposed to sync with my mac now that I have mobile me? How do I get rid of these duplicates now?
    Thank you,
    Kim

    For those of us who did use the search function but came up with this useless, unanswered thread, here is the link to the Apple Support page that resolves this issue:
    http://support.apple.com/kb/HT3677

  • Error in WBS

    Hi,
    While creating the WBS Element user has wrongly updated Requesting company code.
    all AUC assets were created in requesting company code for the investment management.
    PO is created with that WBS Element & GR, Invoice, Vendor Payment also made.at the time of GR (Service PO) FI Entry was created as below.
    CWIP Exp A/c Dr     500 (with WBS as cost object)
       To GR/IR A/c                500
    now while settlement CWIP Exp is going to requesting co code AUC which were created at the time of WBS Element Creation with different requesting Co Code with Cross Company Transaction activated. now i tried to remove reqesting company code from WBS it is showing  below error.
    Asset 300200000682 0 not in requesting company code ABC In global memory of function group AIST
    Message no. AA001
    Diagnosis
    The asset number 300200000682 0 you entered, does not exist in company code ABC In global memory of function group AIST.
    System Response
    Processing cannot be continued.
    Procedure
    Correct your entry.
    It is also possible that this asset is defined as a group asset. In that case, it cannot be used as an asset.
    i need
    1) can i remove or change requesting comapny code from WBS.
    2) can i delete AUC's which were created in requesting company code & recreate in existing Co Code (Transactions posted PO to
         PAY)
    3) How do i capitalize the CWIP Exp to original company code AUC.
    Regards,
    Shekar.

    There is already an unanswered thread with the same issue by the same author. For all replies update
    Re: Settlement Error CJ88
    Plese do not open new threads if there are existing ones.
    This thread is now locked.
    Virendra

  • Tomcat server 5.2.08 - ADF 10.1.3.36.73 - servlet exception on any ADF page

    I've tried a lot of things - but I still get this.. works fine within jdev 10.1.3.04 server.
    Can anyone help ? - this app was started in 10.1.2.xx -
    HTTP 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: loader constraints violated when linking oracle/jbo/ApplicationModule class
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
         org.apache.jsp.Scanme_jsp._jspService(Scanme_jsp.java:133)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    root cause
    java.lang.LinkageError: loader constraints violated when linking oracle/jbo/ApplicationModule class
         java.lang.Class.forName0(Native Method)
         java.lang.Class.forName(Class.java:141)
         oracle.jbo.http.HttpSessionCookieFactory.class$(HttpSessionCookieFactory.java)
         oracle.jbo.http.HttpSessionCookieFactory.getSessionCookieClass(HttpSessionCookieFactory.java:230)
         oracle.jbo.http.HttpSessionCookieFactory.createSessionCookie(HttpSessionCookieFactory.java:128)
         oracle.jbo.common.ampool.ApplicationPoolImpl.createSessionCookie(ApplicationPoolImpl.java:449)
         oracle.adf.model.bc4j.DataControlFactoryImpl.findOrCreateSessionCookie(DataControlFactoryImpl.java:155)
         oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:239)
         oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:76)
         oracle.adf.model.BindingContext.get(BindingContext.java:465)
         oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)
         oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)
         oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)
         oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127)
         oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60)
         oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87)
         oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51)
         oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277)
         oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296)
         oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425)
         oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54)
         oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44)
         oracle.adf.model.BindingContext.get(BindingContext.java:491)
         oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)
         oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)
         oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)
         oracle.adf.model.binding.DCUtil.findBindingContainer(DCUtil.java:650)
         oracle.adf.controller.lifecycle.LifecycleContext.initialize(LifecycleContext.java:121)
         oracle.jbo.html.jsp.datatags.UseBindingContainerTag.doStartTag(UseBindingContainerTag.java:72)
         org.apache.jsp.Scanme_jsp._jspx_meth_adf_uimodelreference_0(Scanme_jsp.java:149)
         org.apache.jsp.Scanme_jsp._jspService(Scanme_jsp.java:88)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.0.28 logs.

    Thanks for the reply Prasanth.
    I'll have to say yes. We used the configure notes as supplied in jdev 10.1.3.
    and have deployed (adf runtime installer) - removed - deployed and restarted tomcat more then a few time.. I tested the 10.1.2 apps that are out there - they do not run with the 10.1.13 adf .. they work correctly when I reinstall the 10.1.2.
    Reproduce the issue - lol .. well I was using 10.1.2 on my first adf jdevloper project.
    add a data action - all of a sudden - everytime you went to view/add code - it blew a java exception... (that was my 2nd 'clean install' of 10.1.2) - after finding no help with that .. (found a few unanswered threads about it.. on meta link) - decided to move to 10.1.3 - after importing the project - and rebuilding (like two weeks ago) - and adding some nice improvements - it runs fine in my local jdev.
    spent the last week or so trying to get it to run on the tomcat... one page of the app will open and run on tomcat (the one without any adf bindings..) the other two generate the error above.

  • Satellite A660: Remark and a question about illumination/mute button

    Remark:
    Hi, I am a proud owner of a satellite A660-166 (3 days old) and I installed everything from scratch on the win 7 pro since I received my laptop with a home version (need pro for work)...I encountered some problems but this forum really answered all my questions :) Never found such a helpful forum for technical support. So I wanted to express my gratitude and my support for everything you do for the users :)
    Problem: Well, it's not really a problem, more of a curiosity... I had some problems with the eco button at that point illumination/mute button was for mute....Thanks to you guys I found out what needed to be done, I reinstalled Flash card software and everything was working properly plus the illumination/mute button was for illumination now. I don't have anything against that, I prefer it that way, but I'm wondering how do I change that...I found some unanswered thread about using toshiba assistant and the illumination tab...Since my laptop is pretty new, I don't have an illumination tab, I was wondering how do I change the button to mute if I want to?
    Thanks, keep up the good work!

    It is nice to hear you found answers to your questions here. Many people here try to help.
    Back to your issue: It is not easy to offer precise answer and I really dont know if you can change settings for one single button. I think it has something to do with registry entries but how to change it is another question.
    If you use this button for illumination ON/OFF you can use FN+ESC for MUTE option so you will have both options that can be used using one single button or quick key combination.
    Can you please test it and confirm it works properly?

  • Update Operation Fatal Error when installing Technical Preview Build 10041 Upgrade

    I posted this in the Microsoft Community forums and was redirected here.
    Below is the original post (URL: http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_install/update-operation-fatal-error-when-installing/6eaff1b9-0223-4357-afc8-884382590e82 )
    Hello,
    In trying to perform an upgrade install of the Windows 10 Technical Preview Build 10041 (as is the latest available for direct download as of my writing), I am running into a problem I cannot find mention of anywhere else on the web.
    I fall into two categories with regards to this build: A) Product tester who actually needs to test application performance under Windows 10 on bare metal, B) Semi-crazy techie who loves using (usable) beta software as his primary environment ;)
    so it is rather important to me that I get this working on my machine in some non-virtualized respect. I am reluctant to do a full/fresh install if installation problems are happening, because my Windows 8 product key has been f***ed up from the
    start (likely some random database corruption) and I've had to utilize phone support to get around an "unknown error" the last two times I've had to use it. So, for fear of that key completely crapping out on me, I don't want to move to Win10 unless
    I'm confident it will install and I can stick with it (for better or worse) through the end. Problems within the Preview after I install it I can deal with.
    So, I first tried to install the Preview through the standard Windows Update method. The installer took about 7 hours (but from reading lots of internet discussions, stupidly long install times in that range seem to be a common problem with
    this builds separate from it actually failing). During the reboot between the "Setting up Devices" (Or is it Setting up Drivers? I forget) and "Taking Care of a Few More Things" (Again, possibly paraphrased), for about a split second, underneath
    the Windows logo and throbber, some error like this appeared:
    Fatal Error Performing Update Operation # of ##: ERROR CODE
    It only appeared for a fraction of a second, and I had no chance of reading the precise numbers or error.
    However, the installer then seemed to continue, and went until the main circle was at 100%. As soon as 100% hit, however, the screen went black for something like 30min. Then, I briefly saw "Attempting to recover installation" before "Restoring
    your previous version of Windows." And I was, quite impressively considering how far along that installer was, back in Windows 8.1 completely unharmed.
    I tried again by burning an ISO and doing a disc upgrade install. I let that one run overnight and was asleep for the error, but I was back in Win8.1 in the morning, so I can only assume a similar thing happened there.
    As for my system specs, I'm running on a MacBook Pro 9,1 under Boot Camp. I am upgrading from Windows 8.1.2 Pro with Media Center. I have found other online accounts of people quite successfully installing Windows 10 on Macs, so that isn't the issue.
    Does anyone have any clue as to what this error might have been/be, and how I might fix it? Or at least have it on good authority that a fresh installation would be unaffected (meaning it's software-related)? If not, I can try installing to a VHD,
    which would at least let me product test on bare metal, but wouldn't have the harddrive space to be my daily driver and would probably only get used occasionally.
    Thanks in advance to anyone who can help!
    So far, I have the yet-to-be-tried idea of a clean boot prior to installation.
    If anyone here has any more specific ideas, lemme hear 'em.
    Thanks!

    To the individual who proposed this as an answer to my problem: It's not even applicable. I specifically stated that I was trying to avoid doing a clean installation (at least without knowing more about the problem at hand). An answer saying to do the thing
    you're trying to avoid doing is not an answer. You can see my last reply for the current status of this issue. 6-8 hour blocks of time in which I can't use my computer (as is required to install build 10041) aren't super common for me, but I haven't abandoned
    this thread. There have simply been no more updates. If your motivation as a mod was that you simply don't like there being unanswered threads on this forum, then perhaps you could attempt to contribute rather than arbitrarily marking the first reply as an
    answer.
    I will continue to update this thread as I try new things and get more information.
    Thank you.

  • Adobe Creative Suite Cloud on a MacBook Pro

    I need to upgrade my ancient Adobe Creative Suite 3 and just learned that Adobe is now offering just one upgrade option - Creative Suite Cloud. I don't have much choice but upgrade, but before I take the plunge, I'd like to find out what I'm getting in to.
    I found an unanswered thread on an Adobe forum where someone on a Mac complained about CS Cloud taking up far too much space on his hard drive. He also said something about having to move his websites into a different folder for some reason.
    Anyway, I'd love to hear from others who are using Creative Suite Cloud on a Mac, especially if you upgraded from CS3. Do you have any tips to share?
    I should add that I'm using MAMP to power my sites.
    Thanks!

    Are you talking about adobe creative cloud? 
    If you are, the Adobe Creative Cloud give you most of Adobe's tools (and all that most would need) to do anything.  I will warn you about this though, is that it is a subscription, and you are basically renting it.  that means you really do not own it.
    About the hard disk space, all Adobe apps seem to take up at least a GB (and this does not matter if you get the master collection or the Creative Cloud).  so ether way, it will take some space. 
    Also, if you want to try-before-you-buy, you can go to creative.adobe.com, and get a free account and try out all of he adobe apps available for creative cloud.  The best part of it, your apps will be updated to CS7 (if or when it comes out) instead of buying the apps again in your subscriptions.  if you need even more information, you can go to adobe's site to find out more (www.adobe.com)

  • [solved] Can't connect to samba shares

    This is probably my fault, but for the life of me I can't figure this out. I started out trying to get usershares to work by following the wiki at https://wiki.archlinux.org/index.php/samba, and I am unable to connect to the resulting shares either from the local host or from my netbook. It tells me permission denied. I then tried creating a public share with guest access, because I couldn't get the usershares to work. I am unable to get that working either. I have
    chmod 777 -R
    the folder I am sharing, as well as the
    /var/lib/samba/usershare
    folder. Please help. Here is my smb.conf:
    #======================= Global Settings =====================================
    [global]
    workgroup = OSHANNON
    server string = MDSHANNJARO
    hosts allow = 192.168.1. 127.
    log file = /var/log/samba/%m.log
    max log size = 50
    security = user
    map to guest = Bad User
    guest account = nobody
    dns proxy = no
    usershare path = /var/lib/samba/usershare
    usershare max shares = 100
    usershare allow guests = Yes
    usershare owner only = False
    #============================ Share Definitions ==============================
    [Bleach]
    path = /mnt/Data/Bleach
    read only = no
    guest ok = yes
    I tried adding the nobody user since there was no users listed when running
    pdbedit -L
    using
    pdbedit -a -u nobody
    and just pressed enter for the password field. This did not help.
    testparm says
    Load smb config files from /etc/samba/smb.conf
    rlimit_max: increasing rlimit_max (1024) to minimum Windows limit (16384)
    Processing section "[Bleach]"
    Loaded services file OK.
    Server role: ROLE_STANDALONE
    Press enter to see a dump of your service definitions
    [global]
    workgroup = OSHANNON
    server string = MDSHANNJARO
    map to guest = Bad User
    log file = /var/log/samba/%m.log
    max log size = 50
    dns proxy = No
    usershare allow guests = Yes
    usershare max shares = 100
    usershare owner only = No
    usershare path = /var/lib/samba/usershare
    idmap config * : backend = tdb
    hosts allow = 192.168.1., 127.
    [Bleach]
    path = /mnt/Data/Bleach
    read only = No
    guest ok = Yes
    Last edited by mdshann (2014-03-04 06:01:04)

    uninstalled samba, reinstalled it. deleted old config file. created new config with just the contents that the wiki states is necessary for usershares to work. the current smb.conf looks like
    [global]
    usershare path = /var/lib/samba/usershare
    usershare max shares = 100
    usershare allow guests = yes
    usershare owner only = False
    added my user to samba using
    pdbedit -a -u mdshann
    started smbd and nmbd and enabled both. tried to share a folder, caja says samba is not installed. use yaourt to search for caja and find package mate-file-manager-share. installed said package, killed and restarted caja. shared folder and told it to add permissions automatically. checked the boxes to allow guest and to allow users to change files. still I cannot connect. just for reference, I have used the wiki article sections from the beginning of the article through adding a user. I did not use the creating a share section as I want usershares to work through MATE and CAJA. It creates the share and it is visible on the network, I just can't connect to it.
    Pretty much the same as what I tired before, with the same result. Only difference is I haven't tried manually creating the share through smb.conf, but that didn't work before either. No reason to think it will work now, the problem was the same whether I used the gui usershares option or adding the share to smb.conf.
    I was able to get samba working with a very similar config file as in my first post, on arch based manjaro on my server at work. I did not enable or use usershares at work, but creating the shares in smb.conf worked just fine. Why will the same procedure not work on arch? Same packages for the most part, manjaro just adds a few. In fact, when I set up samba on manjaro, I used the arch wiki article, as Manjaro's wiki is sparse. Main reason we used manjaro at work was the speed of installation was much quicker, and we needed the machine back up quickly so we could start backing up our customers data. (I own a PC repair shop.)
    On a side note, this community has served me well in the past the few times I have have issues since I started using arch 5 years ago. Why my post has gone so long without a reply other than being chastised for trying to call attention to a 3 day old unanswered thread is beyond me, but I am not thrilled by it. It has now been a full 2 weeks since my original post. I have never had this issue before, and if I can't bump or somehow call attention to my thread I am unsure of how to get help. Am I supposed to keep posting new threads on the same issue? I would think those would get closed rather quickly if I had. Should I post nonsense on this thread, I mean anything other than the word bump. A discussion of cat videos maybe?

  • Copy/Paste from Preview Results in Gibberish

    I have found two archived, unanswered threads related to this topic.
    http://discussions.apple.com/thread.jspa?threadID=1743102
    http://discussions.apple.com/thread.jspa?threadID=2226894
    User okinasevych says,
    "For me, I've noticed the problem occurs after I make and save a second annotation (a highlight, to be exact). For whatever reason, the first annotation can be saved without breaking the ability to copy text. After the second annotation and save, the ability to copy text is broken."
    I have found that this is true not only of annotation, but of any saves. For example, if I delete a page from the pdf and save, I can still copy & paste no problem. But if I delete another page and then save a second time, any further copy/pasting results in garbled/encoded text as indicated in the above posts.
    Has anyone found a solution to this issue?

    Hi a,
    I am not reading the post that he wants to do anything with the Cut/Deleted page or info.
    I am reading it that after two revisions any further attempts to manipulate the text results in garbled Text.
    I cannot replicate this behaviour with deleting a page, saving, closing and open the save and deleting a second page.
    The Text I highlighted (And copy/pasted to TextEdit) worked OK.
    I don't use Preview in this manner normally an may have misunderstood the steps.
    Using my 10.5.8 G4 (listed below) and Preview 3.2
    7:37 PM Friday; November 5, 2010

  • AdobeLibraryAPI - Develop on desktop browsers before testing on mobile devices.

    Hello guys,
    According to these tutorials[1] [2], to run apps on desktop browsers it's necessary to remove the adobe api script from HTML. That was ok until I had to develop authentication features and stuff out of the fulfillment XML feed scope.
    I've tried to remove bridge protocol from Library api, but doing so I couldn't execute the adobeDPS.authenticationService.login transaction.
    So I'm thinking to mock the api methods to return fake static data. Is there a better approach to run my apps on desktop before testing on iOS devices?
    [1] http://www.adobe.com/devnet/digitalpublishingsuite/articles/html-default-library.html
    [2] http://www.adobe.com/devnet/digitalpublishingsuite/articles/library-store-combined-templat e.html
    PS: Similar and unanswered thread: http://forums.adobe.com/thread/1334310
    PS: Sorry if this question is on the wrong place, but I found this is the best forum to ask about AdobeLibraryAPI.
    Kind Regards,
    Bernardo

    Hi, Bernado
    Where are you from? Brazil?
    Me envia um email. Posso te ajudar
    [email protected]

  • Grainy Photos in Album Page

    Hi,
    I'll start by saying that I've searched discussions and read the tutorials...and I'd prefer to fix this issue without resorting to codes/outside albums.
    The photos published in the Album page are quite grainy/pixelated. I really need these to appear as sharp as possible as this is an artist's homepage. Will I need to publish the photos in their original size? I'm using the Leaf Print template and the website (under construction and all) is http://www.raraavisart.com
    Thanks,
    Shanna
    BTW, a similar question was asked in an unanswered thread:
    http://discussions.apple.com/thread.jspa?messageID=11320137&#11320137

    What were the sizes of the original images that were used in the album. It appears that you've set the album to 1 column which will increase the image size of the photo used for that image. This demo page show the different sizes of images used for the different parts of a My Albums page: AlbumImageSize .
    Try moving the spacing slider to the left a bit in the Media Index settings pane to reduce the album image size somewhat. The pixelation might be reduced to an acceptable level.

Maybe you are looking for

  • How to erase a hard drive on a i MAC Power PC with OSX 10.5.8 pre-intel?

    I got this i Mac G5 Power PC with a 20" screen (no iSight) and last generation of i Mac repaired.  Capacitors and a power supply did revive my machine and it works fine.  I would like to donate my machine and want to erase the hard drive and make sur

  • How can I see my entire page when editing?

    When i edit my web page, the far right column is over shadowed by the middle column. so i can not see any of my text in the rows of that column unless i shrink the middle column there is no scroll at the bottom. so is there a way to view the entire p

  • Font size in text fields

    Is there a way to change the font size in a text box or text field on every webpage through one of the prefrences? I have looked on the forums here and searched Google, but could not find any answers. MacBook   Mac OS X (10.4.8)  

  • How to get rid of 'other' data in capacity?

    In april, i got my iphone 4 replaced because of a broken lock button. When i brought the replacement home, i noticed that when i plugged it in there was a lot of "other" data in the capacity bar, and there was nothing on my phone at the time. Now, th

  • How do I stop loading a page? This feature disappeared with a Firefox update.

    There used to be a "stop loading this page" button in the toolbar. Somehow it's disappeared and I can't find any relevant help.