User Areas

i am in the middle of creating a website and i currently have
registration and login page that links to a database and have all
the relevant record sets and server behaviours. I would like to
arrange it so that when a user logs in they get sent to their own
"area" that they can customise by uploading text and images etc. I
think that i will need to create a master details page but how do i
arrange it so that they get sent to only their page and edit their
information i.e. corresponding with the username and password that
they entered to login.
Any suggestions would be appreciated

DW has Master/Detail server behaviors built in, you know?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"meesonator" <[email protected]> wrote in
message
news:gb7t7b$k5b$[email protected]..
> Also, related to my previous post, is there any place
where you can get a
> Go To Detail Page for PHP Extension?

Similar Messages

  • Few users are unable to sign in after we added 2 more front end servers in existing pool?

    Hello, 
    We have recently extended the Lync 2010 Enterprise pool with 2 Front end servers.  Now we have totally 6 Front end servers. 
    After this change some users are unable to login. Error message: "Cannot loggin as server is temporarily unavailable"
    Captured, client logs and received the following:
    ms-diagnostics: 4004;reason="Credentials provided are not authorized to act as specified from URI";
    We have the following security settings on the newly added front end servers:
    Network security: Minimumsecurity for NTLM SSP Based clients - set to - Require 128-bit encryption 
    In other existing front end servers, it has been set to - No minimum. 
    Questions:
    1. Is that the issue for signin failure?
    2. Do we need to change this option to - No minimum in new servers and reboot it?
    Please advise. MUCH THANKS. 

    Hello 
    Those clients running in Windows 7 OS. And the error is different:
    "Cannot loggin as server is temporarily unavailable"
    Thanks

  • Windows Server 2012 R2 RDS: RDS Users are unable to delete files from their desktop

    Hello,
    We are working with Windows Server 2012 R2 RDS. We also implemented User Profile Disks. This is all working fine without problems. The only issue I have is that normal users are unable to delete files from their desktop. They are getting a message:
    you'll need administrator permission to delete this file, with the prompt for administrator access.
    They can edit, copy, rename, cut and paste files. But they cannot delete a file from their desktop.
    I checked the security permissions of the files on the desktop (for example a normal self-created PDF file) and the users are owner and have "Full Control" over the files.
    I checked the file permissions and took a look under "Advanced", selecting the specific domain user and checked the "Advanced Permissions" and the user has the "Delete" option checked. So he should be able to delete the
    file.
    I am guessing this is UPD related issue, or something in GPO. But I already unlinked the GPO objects, that I felt could be the source of this problem, but without results.
    Could someone give me a hint on where to look? It's kinda annoying to users, that they can't delete their own files.

    Hello Bria,
    What you should check first, is the NTFS permissions on the User Profile Disk to begin with. See if the user has full control over the items that are in the UPD.
    Also check the GPO's that are enabled for the user and computer account. You can check that by running: gpresult /h <path>\gpresult.html
    There are two GPO settings that could prevent the user from deleting his/her own items: 
    User
    Configuration\\Policies\\Administrative Templates\\Windows Components\\Windows Explorer\
    Hide these specified drives in My Computer
    Prevent access to specified drives in My
    Computer
    There might be other GPO settings, that block deleting items on the UPD, but can't think of any out of my head.
    I can only think NTFS and GPO settings that might prevent the user from deleting items. In my case it was a GPO setting, that I didn't suspect.

  • PC Users are unable to check Outlook while my (mac) Mail is open

    Ever since I upgraded to 10.4, whenever I have my Mail application open, the PC users are unable to check their IMAP mail through Outlook. The PC Users and myself are all using different accounts, but are checking the same server.
    At first, this seemed like it was a coincidence... but then I shut my powerbook and they could check their again. I have to use a web mail client to check my email when I am on the network at work.
    Any ideas to resolve this issue? Mail is set to check every 5 minutes.

    AA8 and AA9 allow Reader Rights so the user can save the form. This is restricted by the license to 500 uses. In the long run, the only advantage of the Reader Rights is for your users, not for you. You can always import the data into the form and have the same result as they had in the form. It is not necessary to transmit the full form to you, only the data. If you were developing a web form that would likely exceed the 500 uses, you would have to negotiate a price with Adobe for Reader Rights (thousands of $$ should be expected).
    If saving is important in a company environment, not online, then you may want to read the EULA carefully as to the exceptions. You will still have to have at least AA8.
    I guess the printing problem was answered.

  • How many users are registered for using the firefox sync server?

    I'm working on a german wikipedia article about "Firefox Sync" and I need more information about the current usage and the historical development of this feature - number of registered users for the Sync Server at Mozilla - would be nice to have numbers for 2011, 2012, and current usage.
    If possible, it would be also useful to know how many german speaking users are using the sync service.
    Where are your Sync Servers located (US, Europe, Asia)?
    What kind of systems and platforms are supported?
    Is there a current documentation about the importance of the Firefox Sync Service, that I may reference?

    thanks for your fast reply,
    your URL to the page with the ideas of the new PiCL service shows in the remark about the usability of the "Firefox Sync" some hints about the usage of the current sync service "only 1% of our users have actually done so" - so I will use that as reference.
    But it would be nicer to have some public message - for example: a mozilla blog entry - from the mozilla services group about the number of registered Sync Server User - and also about performance and reliabilty.
    But if that is private information only, you can close this problem.

  • How many users are browsing this website?

    Hello,
    I would like to find out how many unique users are browsing a particular website in java. Do any one have any idea of how to do this? Did any one work out on this? Source code would be helpful.
    Thanks
    James

    Ya you can really track the no. of users on your site. For this you will have to create HttpSessionListener and register it. Even though I have never done this but this is how it can be done.
    Create the bean with incrementCount(), decrementCount() and getCount() method.
    In HttpSessionListener.sessionCreated(HttpSessionEvent) method:
    a) retrive the above bean from application object
    b) if it is not in application object create new object of above bean
    c) increment counter in the bean
    d) put the bean in application object
    In HttpSessionListener.sessionDestroyed(HttpSessionEvent) method
    a) retrive the above bean from application object
    b) if it is not in application object create new object of above bean and set the counter to zero
    d) else if the bean exist then decrement the counter
    e) store the bean in application object
    Use the value stored in the bean as the no. of visitors currently on the website.
    KNOWN ISSUES:
    a) When user leaves the site only after his session timesout will the counter decremented.
    b) In above Listener methods you need to synchronize the application object.
    Thats all in short, till then byeee....

  • How to see how many users are working on a Dynpro application?

    Hello,
    Is it possible to see somwhere at the portal or on the WAS how many users are currently working with my Web Dynpro application?

    Hi Roy,
    I know it isn' exactly what you want but if you got to:-
    System Administration->Support->Web Dynpro Test Tools->User Management
    you can at least see the users currently running Web Dynpro applications (I think!)
    At least its a start!
    Cheers,
    Gareth.

  • How many users are working on EBS

    is it possible to find out how many users are currenlty at the same time working on EBS.
    Like how many payable users, mfg uers OTL users.

    Hi,
    Below sql will find how many users are currently working on EBS,
    SELECT distinct icx.session_id, icx.user_id, fu.user_name, fu.description
    FROM icx_sessions icx, fnd_user fu
    WHERE disabled_flag != 'Y'
    AND icx.pseudo_flag = 'N'
    AND ( last_connect + DECODE (fnd_profile.VALUE ('ICX_SESSION_TIMEOUT'),
    NULL, limit_time, 0, limit_time, fnd_profile.VALUE ('ICX_SESSION_TIMEOUT') / 60 ) / 24) > SYSDATE
    AND icx.counter < limit_connects
    AND icx.user_id = fu.user_id
    order by 4;
    Thanks,
    Amogh

  • How many users are supported on a Cisco Aironet 1141N? 30?

    I have a client that wants to upgrade his Aironet 1131 APs with 1141N.  How many users are supported on a Cisco Aironet 1141N?

    Yes, you could have 30 clients on the AP. 
    Client density all depends on what the client is doing, really.
    So if you have clients that are just web surfing and pulling email 30+ isn't a problem.  If they are all streaming video, then you want to plan for less clients per AP, and more APs.
    Steve

  • My AD users are randomly losing access to wikis that they are members of and were previously able to login to.

    I have had a more or less successful AD/OD integrated setup for a couple of years (currently running SL Server 10.6.8) which I implemented in order to use Podcast Producer and Apple Wikis.  Recently and for no apparent reason, I have had users lose access to wikis they are members of, even though they are still listed as members of the given wiki.  While over the last couple of years I would periodically get a user whose account would not work with a wiki, this was always immediatly apparent; I've never had an instance where the AD account worked for a period of time and then spontaneously stopped working. Meanwhile, other AD users who are members of the same wiki are still able to access it successfully.  In all cases, users are still able to successfully login to "My Pages", though the wiki they are a member of is no longer visible.  Using the URL for thei wiki simply results in a "you do not have permission to access this wiki" message.  I have already run "dsmemberutil flushcache" which has on occasion restored access for users in the past; however, that is not rectifying this particular issue at this time. Any suggestions as to how I might troubleshoot this?

    Two things that I would immediately check:
    1. Run Disk Utility's Repair for each of the server's volumes. One or more of your server volumes that houses a share point may have filesystem damage that needs to be fixed. This may be the result of an underlying hardware failure of one or more of its disks.
    2. Examine your network configuration. You may have a network cable that's wired incorrectly somewhere on your subnet. I've actually seen this sort of thing cause random disconnections. Mac OS X Server is pretty particular about having a clean network! Check your switches, routers, and gateways for errors or simply reboot them.
    A look in the system.log file using Server Admin or Console on the server may provide clues as to what happened at the disconnection time.
    --Gerrit

  • All of the Users are missing in the File Sharing Prefs

    I was trying to straighten out an issue I was having with accessing my wife's iMac.  She has access to mine.  So then I gave up and was trying to save a Word doc to an external drive and it wouldn't work.  I checked Prefs and the Users are listed but when I go to File Sharing there aren't any of the Users listed.
    Any ideas?

    Hi cdohbar,
    I will provide you the steps to resolve the issue for Mac operating system .
    Please follow the below steps :
    Close Creative Cloud Application (up right corner, click on the cog menu and then "Quit Creative Cloud").
    From Finder, click Go > Go to Folder at top in Menu bar
    Type ~/Library/Application support/Adobe and hit return.
    Rename  the folders 'AAMUpdater' and 'OOBE' to 'AAMUpdaterOLD' and 'OOBEOLD'.
    From the Finder, click Go > Go to Folder.
    Type /Library/Application support/Adobe and hit return.
    Rename AAMupdater,  folder to AAMupdaterOLD
    Launch your Creative cloud desktop.
    Introduce your CC credentials.
    Select install/update applications.
    Hopefully it will work for you. If it does, then you can remove the folders that you renamed as <something>OLD.
    I assume that for Windows users, the steps are different , if you are using Windows OS, please follow the below steps :
    Hold Windows + R key from your keyboard.
    It will open into a run window.
    In RUN application type:  %localappdata%
    Next, navigate: \Local\Adobe\OOBE
    Rename OOBE as OOBE.old
    Then, Navigate to C:Program files/Common files/Adobe(32 bit) or C:Program files(X86)/Common files/Adobe folder.
    Rename AAMupdater folder and try signing to Creative Cloud desktop application.
    If you face same issue again, please reply back .

  • All external users are missing in Shared services.

    Hi All,
    We are on Hyperion System 11.1.2.. Today all of a sudden in production users are not able to log in. So logged in as admin (native user) to see whats going on. Surprised to see that all the groups are empty and all the users are removed from all groups. So when tried to add back its unable to find the external users.
    So some thing is wrong with external users.
    Any suggestions on how to fix or any one experienced similar issues?

    Got this same error in Shared Services 11.1.1.3 Was due to an Active Directory Domain Controller being decommissioned Here is a fix you might try, It basically refreshes your user database connection
    Log into Shared Services
    Click on “Administration” on the “Shared Services” toolbar
    Click “Configure User Directories
    Check the Radio button next to “Active Directory” (or the db your are experiencing the error) and then click “Edit”
    The next screen displays the connection info for “Active Directory”(or the db your are experiencing the error), nothing to change here, just click “Finish” and the connection refresh should start
    Re-start All Services
    Verify that you can now look up an external user without error

  • T/F: iPhone users are not required to pay $15/month extra for Good Technology

    I have a personal Droid RAZR M.  You may wonder why I am posting in the iPhone forum but you are about to find out.
    I have access to corporate e-mail via Good Technology.  When I got this service set up at the same time I acquired the phone, I was required to upgrade from a $30/month 2GB plan to a $45/month 2GB plan just to have this access ("needed for access to company servers").  That was a surprise but I got over it.  However, since then, I have come to learn the following:
    1.  It appears that other than VZW, no other carriers are charging users extra for access to Good Technology.
    2.  Based on a colleague's information from a Good Technology support engineer and a office mate who is using a VZW iPhone, VZW iPhone users are *not* *required* to move to an Enterprise plan aren't paying an extra $15/month.  If one searches the Internet, I am not the only one asking about this.
    If you are using a Verizon Wireless iPhone and have Good Technology on your phone, would you let me know if were *required* to upgrade your data plan and pay extra just for using Good Technology?
    Thanks,
    Techvet

    I need to check some information at work about this, since they have some guidance on how their employees can connect to their corporate email with android and iphone devices.

  • Non Active Directory users are not able to access sharepoint top level site

    I have created a sharepoint group with read permission on top level site and I added the NON AD users to that group but the non ad users are unable to access top level site ,they are able to access remaining all subsites without any issue.I am facing
    this issue only with NON AD users....I have checked the page layouts , all the layouts are  in published mode.All the webparts and Lists on Default.aspx page has all users access permissions.Do I need to change anything in central administration
    for this webapplication.

    Hi,
    Could you please reproduce the issue and collect error information in ULS log for troubleshooting?
    For your convenience:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Not all users are displayed for log on after a reboot or startup...

    Problem summary: Not all users are displayed for log on after a reboot or startup...
    This problem only occurs after a fresh start-up or restart. The only users displayed are the initial (admin user) and "Guest". Two other (non-admin) users are not shown for log on.
    To work around this problem and get them to log on we have to log on as the admin user, then we can see the other users in the Fast User Switching menu (top right-hand corner of the screen), listed under the current logged on user. After selecting the non-admin user we can log in and use the laptop as normal.
    If we lock the screen, use fast user switching or log out all users; all users are available for log in, until a reboot is done; at which point the non-admin users disappear again and we have to log in as the admin user and use fast user switching again.
    The laptops are both brand new MacBook Airs. The initial configuration of Mac OS X Yosemite was done using the Apple ID of the purchaser (parent) and then the OS was patched, immediately, through the App store (no further updates available as of the date of this posting). After this Family Sharing was activated and new users set up for the two children who will be using these laptops.
    Has anybody else experienced this problem with Yosemite?
    Cheers,
    David.

    David,
    Users not enabled for FileVault unlock are only able to log into the computer after an unlock-enabled user has started or unlocked the drive. Once unlocked, the drive remains unlocked and available to all users, until the computer is restarted.
    FileVault has to be On.
    To Enable the users to be able to unlock FileVault Go to:
    System Preferences > Security & Privacy > FileVault ( Tab ) > Click the Lock in the bottom left > Put in your administrator password > Should see an option to Enable Users > Enable User.
    Hope that helps,
    Weston
    Supporting Articles,
    OS X: About FileVault 2 - Apple Support

  • SQL 2012 sp2 "The permissions granted to user 'DOMAIN\user' are insufficient ..."

    1st let me set the tone by admitting I am not real familiar with SQL, I'm more of an Operations Admin. So this is not a new question I think, although I am having difficulty finding an applicable solution.  Using SQL Server 2012 sp2 on a Windows
    2012R2 server.  This is configured to be a SCOM DB server; while on the SQL server itself I open IE and attempt to go to the following URL http://scomsql/reportserver_SCOM I get the
    following error.
    Reporting Services Error
    The permissions granted to user 'DOMAIN\user' are insufficient for performing this operation. (rsAccessDenied) Get Online Help
    SQL Server Reporting Services
    I have looked at the Reporting Services Config. Mgr. and it looks like the Report Mgt. URL is set for port 80 and no SSL is configured.  The rsreportserver.config file has the SecureConnectionLevel set to "0"
    My domain account is listed under Security\Logins and holds the 'Server Roles' of public and sysadmin, 'User Mapping' is DBO for the 'ReportServer$SCOM' and 'ReportServer$SCOMTempDB' and the role membership shows db_owner and public for these as well.
    Any assistance with getting this working would be greatly appreciated.
    # When I wrote this script only God and I knew what I was doing. # Now, only God Knows!

    Hi Wasisname,
    The Reporting Services error rsAccessedDenied occurs when a user does not have permission to perform an action. To troubleshooting this issue, please make sure that you have sufficient permission and the report server name is correct.
    In fact, reporting Services uses role-based security to grant user access to a report server, and there are two types of roles: Item-level roles and System-level roles. On a new installation, only local administrators have access to a report server. In order
    to grant access to visit the URL http://server:port/ReportServer to users, a local administrator must create a role assignment to define the tasks a user can perform. To solve this problem, please refer to the
    following steps:
    Start Report Manager by going to URL
    http://scomsql/reportserver_SCOM.
    Click Site Settings at the top right of the page.
    Click Security in the left pane.
    If a role assignment already exists for the user, click Edit.
    Otherwise, click New Role Assignment. In user, enter the user account.
    Select appropriate access, and then click Apply.
    The issue may be caused by the UAC or Internet Explorer security setting, please try to follow this steps:
    1. Open the Internet options of the IE and add the report server URL into trusted site in the Security tab.
    2. Run the IE as administrator.
    Besides, if the user need to have access to reports, folders, models and shared data sources, we can assign Item-level roles on the root node (the Home folder) or on specific folders or items.
    For more information about Configuring a Native Mode Report Server for Local Administration, please refer to the following document:
    http://msdn.microsoft.com/en-us/library/bb630430(v=sql.110).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

Maybe you are looking for

  • Safari 5.1 under 10.6.8: various issues (responsability, scrolling, etc)

    Hi, here my observations, issues after upgrading to Safari 5.1 (from 5.0.1) under 10.6.8. Scrolling is often choppy (with two fingers, with scroll wheel). Terribly annoying. There is – not always, bit quite often – a strange refresh-effect when switc

  • CLOB data import problem from 9.2 to 10.2

    Hello, I am exporting data from 9.2 to 10.2 with exp/imp utility. I have one table with datatypes NUMBER,VARCHAR2,CLOB,DATE,CHAR. CLOB is having xml data. while importing into 10.2, import failed with the messages IMP-00058: ORACLE error 1461 encount

  • Problem Pending po qty  condition

    Hi all, I have a problem in pending po condition. In our scenario,We usually take the pending po from EKET table. pending poqty = (EKET-MENGE) - (EKET-WEMNG). In my case,we are using 103 ( GR into blocked stock) mvt type to raise GR against the po an

  • Sapscript - Repited spaces between words

    Hi friends. I'm working on a ZMEDRUCK sapscript and when printing a line item, the item text (field EKPO-TXZ01) is being printed with spaces between words. E.g.: Original value in EKPO-TXZ01: material test. Printed: material      ...(two or more spac

  • Is there a market for used iPads?

    Is there a market for used iPads?  I have two of the original iPads and would like to upgrade