User Login Redirect

Hi, I have a php login using Dreamwearver tools. The users
have access levels from "A" through "J" (to simplify things). When
a user logs in I want them to be directed to the appropriate page
according to their access level. For example, if the user's access
level is "F" they go to "f.php" . But because there are so many
access levels, redirecting down the line via the "restict access to
page dreamweaver function" , (as mentioned in other solutions on
this topic), is unpractical. Any suggestions?

Use the switch statement to redirect the user depending on
their access
level eg
switch ($access_level){
case "A":
header("Location: www.mysite.com/a.php");
break;
case "B":
header("Location: www.mysite.com/b.php");
break;
case "C":
header("Location: www.mysite.com/c.php");
break;
Gareth
http://www.phploginsuite.co.uk/
PHP Login Suite V2 - 34 Server Behaviors to build a complete
Login system.

Similar Messages

  • Anonymous User Login

    Hi All,
    I have an issue with 'Forgot Password' button in the end user login. When a Forgot Password button is clicked, a Question Login workflow will trigger (I think I am right?) .Now I would like to customize the 'Question Login' workflow as per my requirements, but unfortunately I am not, I modified the system configuration object, but still with no luck I am not able to customize that workflow.
    So I thought of using anonymous login page and I can launch my own workflow as per my requirements. I have registered my workflow at 'anonymous end user tasks'. and I try to launch the anonymous login page using the url 'http://localhost:8080/idm/user/anonlogin.jsp'. I am getting the following errors.
    An unrecoverable error has occurred processing the request. Contact your system administrator.
    Syslog ID = LG-1111-024933.
    Only the Reset Administrator may access this view.
    I don't know, where I am doing wrong. For the first time I am trying to use anonymous login page.
    Did anybody faced similar problems?
    Can anybody please post some points, like what is the procedure to use a Anonymous login page?
    Thanks in advance

    Well, first, I visited Configure > User Interface, and enabled Anonymous Enrollment.
    Next, I went to user/login.jsp, and saw "Request Account". I clicked on it, and up popped the user/anonEnrollment.jsp page. (I was looking at using this for one of our requirements; turned out I didn't need it, and did something else).
    Anyway, a quick check with Live HTTP Headers for Firefox shows that the post was directly to anonEnrollment.jsp; anonEnrollment.jsp has this at the top:
    String anonUser = LoginHelper.getAnonymousUser(session);
    if (anonUser == null) {
        String url = "user/login.jsp";
        LoginHelper.redirect(req, out, url);
        return;
    }Not a huge amount of help. However, it does establish that there is an "getAnonymousUser" method, which is documented to return "the currently registered anonymous user name if any". And reading the Workflows, Forms, and Views manual, it states that the anonymous main page is for "... when a user who does not have a Identity Manager account logs in, an Identity Manager user object is created ...". Basically, if you're using pass through auth, and have a source system that will let a user authenticate, they can then set themselves up.
    So, I visited "anonmain.jsp" after clearing all cookies, and up popped "anonlogin.jsp", with a login box. I entered "anonymous", and lo!, I was logged in, and saw the anonymous user menu. In other words, I was "provisionally" logged in with an account that doesn't really exist (anonymous).
    However, I had to provide that extra bit of information, namely, my "fake" user name of "anonymous". I don't know how you'd do that without JSP customization.
    Basically, "anonymous" means "has a username, but we don't have an account", rather than "truely anonymous" as near as I can tell. The system will do it for you in the case of "Request Account" (the generated login page has some Javascript code to redirect to anonEnrollment.jsp), but it doesn't seem to be an exposed API.
    You might get somewhere with customizing the "Request Account" string in the messages catalogue, and then customizing the anonymous enrollment workflow.

  • User Login - go to previous URL not working

    Hi
    I have a user login set up using the DW server behaviour.
    The problem I have is that the redirect to the previous url doesnt work and always directs a successful login to the default successful login page.
    The problem seems to revolve around this part of the code:
                    if (isset($_SESSION['PrevUrl']) && FALSE) {
                        $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
                    header("Location: " . $MM_redirectLoginSuccess);
    and in particular the use of the && FALSE check.  I can see from my debugger that the value of $_SESSION['PrevUrl'] is properly set to the previous url.  If I remove the && FALSE check the login works as I would expect and redirects to the previous URL.  However, as this is 'out of the box' DW code I am concerned in case removing the && FALSE check may be doing some harm.  I have to admit I dont understand the logic of what the && FALSE part of the IF statement is actually checking for.
    Any advice and/or reassurance that by removing the && FALSE is not doing any harm or exposing me to any risks would be appreciated.
    Thanks

    session_start() is set
    As I step through the code and watch the variables I can see that the value of $_SESSION['PrevUrl'] is equal to the previous url but $MM_redirectLoginSuccess remains as the default success page.
    If I remove the && FALSE element from the IF statement, the value of MM_redirectLoginSuccess is changed to the the value of $_SESSION['PrevUrl'], which is what I want.
    So my question is, what is the && FALSE bit doing and why is it there and do I need it?

  • Notification message box of Hyperion Planning when user login

    Can we have a notification message box popup when user login Hyperion Planning or Workspace application? We would like to communicate to the end users by the system instead of just email because some end users may not check the email so frequently. It is the best to notify end users about any latest changes e.g. budget rate, etc when they login the system to check data or print reports.
    We noticed that there is a broadcast message feature but only limit to those users already online. And the message will not shown when there are some users login later. We would like to have some notice board like message instead of instant messaging.
    The online help of "broadcast message" feature:
    "Use broadcast messaging to communicate a text message to all Planning users currently logged on to an application. For example, you can send messages about system availability or periodic maintenance. You should also send broadcast messages to request that users log out before upgrading or migrating applications.
    You can send broadcast messages using the Web client or a command line utility. If you send them using the Web, they are sent to users of your current application. If you send them using the command line, you can specify any application, without being logged on to it. You can also schedule messages using standard operating system mechanisms. "
    Thanks in advance!

    I have tried the above step and it only works when i am in the advanced mode. but when i change to basic mode i can see the forms and still can access without any disturbance. for your help i am pasting the planningcentral.jsp so that you could suggest me something other.
    Thanks in advance...
    the original file :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <%@ include file="Common.jin" %>
    <% nWhichPage = HspConstants.PLANNING_CENTRAL;
    String redirectString = request.getParameter("Redirect");
    String mainFrameContentURL = (String)session.getAttribute(HspConstants.SESSION_MAIN_FRAME_CONTENT);
    String mainFrameContent = ((inAdvancedMode) && (mainFrameContentURL != null)) ? mainFrameContentURL : "SelectForm.jsp";
         String queryString = request.getQueryString();
         String mastHeadURL = "BT_Masthead.jsp" + ((queryString != null) ? "?" + queryString : "");
    %>
    <%@ include file="SessionValidate.jin" %>
    <%-- Section for Checking latest CSS version and redirecting to AppSettings.jsp --%>
    <%     if ((HspPlanning != null) && (HspPlanning.isApplicationOwner()))     {
              boolean isHubRegistered = (HspPlanning.getHubServer() != null);
              if ((!isHubRegistered) || (HspPlanning.isUserMigrationReqd())) {
                   inAdvancedMode = true;
                   redirectString = null;
                   mainFrameContent = "AppSettings.jsp?RND=" + Math.random();
    %>
    <%-- End CSS validation section --%>
    <html>
    <head>
    <title><%= HspMsgs.LABEL_WELCOME_TO_HP %></title>
    <%@ include file="PlanningLibraries.jin" %>
    <script language="JavaScript">
    var isPlanningFramework = true;
         var topFrameLoaded = false;
         var taskListViewPaneLoaded = false;
         var processBarLoaded = false;
    </script>
    </head>
    <frameset id="mainframeset" rows="72,19,*" cols="*" frameborder="NO" border="1" framespacing="0">
         <frame src="<%= mastHeadURL %>" name="topFrame" id="topFrame" scrolling="auto" noresize >
         <frame src="BT_ProcessBar.jsp" title="object palette header" id="objPaletteHeader" name="objPaletteHeader" scrolling="no">     
         <frameset id="nestedFrameSet" cols="20%,*" frameborder="NO" border="0" framespacing="0">
    <% if (inAdvancedMode) { %>
         <frame src="LP_ObjectPalette.jsp" id="leftPalette" name="leftPalette" scrolling="no">
         <frame src="<%= (redirectString != null) ? redirectString : mainFrameContent %>" id="mainFrame" name="mainFrame" scrolling="auto">
    <% } else { %>
    <%     int currentTLId = -1;
         HspTaskList thisTL = (HspTaskList)session.getAttribute(HspConstants.SESSION_TASK_LIST);
         if (thisTL != null) thisTL = HspPlanning.getTaskList(thisTL.getId());
         if (thisTL != null) {
              currentTLId = thisTL.getId();
         } else {
         Vector availableTaskLists = null;
         availableTaskLists = HspPlanning.getTaskLists();
         HspObjectPositionComparator hspObjectCompare = new HspObjectPositionComparator();
         HspCSM.sortVector(availableTaskLists, hspObjectCompare);
         if ((availableTaskLists != null) && (availableTaskLists.size() > 0))
              currentTLId = ((HspTaskList)availableTaskLists.firstElement()).getId();
         } %>
         <frame src="LP_ObjectPalette.jsp?TaskList=<%= currentTLId %>" id="leftPalette" name="leftPalette" scrolling="no">     
         <frameset id="wizardFrameSet" name="wizardFrameSet" rows="*,0" frameborder="NO" border="0" framespacing="0">
    <%     if (currentTLId != -1) {
              String wizardFrameContent = "TL_Navigator.jsp?TaskList=" + currentTLId;
              HspTask currentSessionTask = (HspTask)session.getAttribute(HspConstants.SESSION_TASK);
              if (currentSessionTask != null) {
                   wizardFrameContent = "TL_Navigator.jsp?TaskList=" + currentTLId + "&SelectedTask=" + currentSessionTask.getId() + "&ShowWizard=true";
                   mainFrameContent = "TL_Wait.jsp";
              } else {
                   mainFrameContent = "TaskListStatus.jsp?TaskList=" + currentTLId;
              %>          
              <frame src="<%= mainFrameContent %>" id="mainFrame" name="mainFrame" scrolling="auto" noresize>
              <frame src="<%= (redirectString != null) ? redirectString : wizardFrameContent %>" id="wizardFrame" name="wizardFrame" scrolling="NO" noresize>
    <%      } else { %>
              <frame src="<%= (redirectString != null) ? redirectString : "Error.jsp" %>" id="mainFrame" name="mainFrame" scrolling="auto">
    <%      } %>
    <% } %>
         </frameset>
    </frameset>
    <noframes><body>
    </body></noframes>
    </html>

  • Cisco WLC 5508 simultaneous Web Auth Users logins?

    Hi there,
    We have 2 WLC5508 (7.2.111.3) with several SSID's.
    One of them is configured as Passthrough with an external splash server. Works fine.
    Now we want to use the "On MAC Filter failure".
    If the client MAC-adresse is configured under MAC Filtering on the WLC, the authentication is done without WebAuth.
    If MAC-adress is not known, the client will be redirect to the external WebAuth server for authentication.
    To keep the Passthrough functionality for the user, we hardcoded an username&password in the splash-page.
    So, every client WebAuth uses the same username&password for authentication against the WLC.
    User Login Policies is set to unlimited.
    So far so good, it seems to work, but I have read, that Cisco 5500 controllers supports only 150 simultaneous Web Auth Users logins.
    The two WLC's have abount 100-170 clients connected.
    Question:
    - Will these be an issue with the 150 simultaneous logins, despited when usin only one user for all Wifi-clients?
    - Can the user WebAuth be done with a Cisco ISE like Passthrough, no username&password should be entered by the user.
      If yes, some guide information wolud be great.
    - When successfully authenticated, a logout screen shows on the Windows client. Can this be hidden some how?
    Thanks for the answers ;-)
    Kind regards,
    Norbert

    Question:
    - Will these be an issue with the 150 simultaneous logins, despited when usin only one user for all Wifi-clients?
    > I believe this means at the same time... I have clients doing the same thing with hundreds or more of guest users
    - Can the user WebAuth be done with a Cisco ISE like Passthrough, no username&password should be entered by the user.
      If yes, some guide information would be great.
    > ISE is really used to login with a username and password and to be able to profile.  You would need to ask that on the Security forum to get their input if this is something then would do or just leave it on the WLC
    - When successfully authenticated, a logout screen shows on the Windows client. Can this be hidden some how?
    > Not really... some machines with popup blocker does block this and you don't see the logout, but you can't remove this.
    Thanks,
    Scott
    *****Help out other by using the rating system and marking answered questions as "Answered"*****

  • Passing URL variable on login redirect

    I first want to say thank you for all the great help I have received on these forums over the past couple months - it has been very helpful and saved me countless days.
    Saying that, I do have another problem. I would like to pass a URL variable to the success redirect page when users login. I want to have a recordset on the login page that retrieves an issueid for the most current article and then passes it on the URL to the page that is loaded when a user successfully logins. I have tried adding the recordset to the login page and then changing the URL for the successful redirect on the tNG_config.inc.php file to:
    $tNG_login_config_redirect_success["5"] = 'dashboard_issue.php?issueid=' . $currentIssueId . '';
    but it isn't working. I have a tried as many variations of that syntax as I could think of or find searching online but still no luck. There might be a much easier way to do this but the way the dashboard_issue page is set up is that it is looking for the issueid in the url. The benefit being that the same page can be used for any issue that the user wants to change to once he is logged in.
    I hope this is making some sense. If not please let me know.
    Thanks!
    -Dan

    The most current issue is actually just the one that is closest to today's date in the future. Users are free to add as many issues as they want in the past and future so I really can't go by issueid to sort since it might come in any order. Right now I have the most current issue found with this query:
    SELECT issueid, DATE_FORMAT(date, '%W, %M %d, %Y') 'date' FROM issues WHERE date >= CURDATE() LIMIT 0,1
    I will try to explain the problem a little more. This works great for what I need to do for this page as soon as they log in since it doesn't even look at the URL at all. If a user wants to go to a different issue I display a different page (which is this page just renamed) where the recordset looks at the URL issueid variable instead of the most recent issue recordset. The problem with this setup is that it is hard to maintain 2 pages all the time and would be great if I can just have one page to handle everything.
    Is it possible to do something like this?:
    IF issueid url variable EXISTS THEN use recordset1
    IF issueid url variable DOES NOT EXISTS use recordset2
    with recordset1 being the one that grabs the most current issue and recordset2 being the one that pulls the issue information based on the url issueid.

  • Regarding Planning User Login Screen

    Hi ALL
    I have a client request to perform following task
    If a user logs in and opens report X and user works on that form and then logs off and logs in later then planning applicaiton is automatically redirecting to the previous web form user have opened.
    So now my client requires user to be redirected to default page.How this can be achieved.
    In the forums I have seen John has suggested to modify 'MRU_SCREEN_PROPS' to redirect for one time purpose but here I need a permanent solution I have tried following ways
    I have seen tables where the applicaiton has deployed i.e relational database
    Table i have reffered is HSP_USER_PREFS there I have manually modifed the column 'MRU_SCREEN_PROPS' to the default login page of the planning application but it over writes when logs off and logs in
    So is there any procedure to permanently redirect my user to one login page.
    Thanks,
    Ram.

    John/Rinku,
    Thanks for your reply actually my requirement was go to home page whenever user logs out and logs in to planning from workspace. Currently If a user opens a data form and then logs out and logs in then user is redirected to form which was opened last time.
    Rinku has given right answer.
    Thanks for help.
    John/Rinku,
    I have other question my client wants to look at application description in the workspace home page currently I have my application name in workspace homepage I have to change it such that it would display description.
    EG: currently by application name is "BUDGET" description is "Planning Application for Company" on the workspace page I have to change from application name to description.
    Thanks,
    Ram.

  • Trouble with Login Redirect [$_SESSION['PrevUrl']

    I'm using the DW functionality to confirm that a user is logged in before allowing access to a page. Everything works except successfully redirecting to the previous URL. Here's the situation:
    User accesses a page with a url such as "addtocookbook.php?recipeid=6".
    Since the user is not logged in, they are redirected to"login.php".
    After successfully logging in, the user is redirected to "addtocookbook.php" without the "recipe=6".
    My login page does attempt to direct the user to the previous url (if it exists). I'm not sure if there is a simple way to make the variable $_SESSION['PrevUrl'], used by DW to redirect,  store the entire url.
    Any help is appreciated.
    Elie Chocron

    The problem lies with some obsolete code in the Restrict access to page server behavior. Fortunately, the fix is quite simple.
    The affected section of code is as follows:
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($QUERY_STRING) && strlen($QUERY_STRING) > 0)
      $MM_referrer .= "?" . $QUERY_STRING;
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    All that is necessary is to replace the three instances of $QUERY_STRING like this:
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    The redirect will then work correctly.

  • Possible to reexecute BeforePhase methodbinding after login redirection?

    ADF 11gR1 PS1
    Hi.
    I have a menu built dynamically (based on http://biemond.blogspot.com/2008/11/dynamic-menu-based-on-roles-database.html ), which calls a bean method to populate the menu. This method is called during the BeforePhase of a page.
    By standard built-in security functionality, if the user is not authenticated, the user is redirected to a login page, and then brought back to the original page.
    BUT, it turns out the BeforePhase event was already triggered prior to authentication, and isn't executed again. Therefore, the dynamic menu is not rebuilt showing the items for authenticated users.
    Any way to execute a method in "a beforephase scope" after authentication?

    Your class should override onPageLoad() method for that you will need to implement PagePhaseListener. You can execute your method in onPageLoad().

  • Group Policy to clear down MRU lists and to clear or to prevent user login details for programs such as Remote Desktop from being recorded

    Hi there,
    Please can anyone instruct me on how to set up Group Policy to clear down MRU lists and to clear or to prevent user login details for programs such as Remote Desktop from being recorded. Your help would be much appreciated.
    Kind regards,
    RocknRollTim
    P.S. I was redirected by a forum user off the Microsoft Community forum.

    Hi RocknRollTim,
    Agree with Jason. Using a script will be a better option.
    Just addition, for history of RDP Connections, please open Registry Editor and follow the path:
    HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default. Please check if find MRU registry items where the name (or the IP address) of the terminal server is kept in.
    Please also follow the path: HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers. It contains
    the list of all RDC (remote desktop client) connections that have ever been established from this computer.
    When expand Server folder and select a node, you will see the UsernameHint key that show the name of the user connected by rdp.
    Please back up registry items to avoid unexpected issues before any operation.
    If any update, please feel free to let us know.
    Hope this helps.
    Best regards,
    Justin Gu
    Thank you for responding back Justin Gu and I agree with both you and Jason Miller that a script can easily achieve this task. Thank you all for your help.
    Many thanks,
    RocknRollTim

  • WebMail [squirrelmail] login redirect problem

    Hi, all -- I'm running into a recurring WebMail login redirect issue. When going to www.domain.xxx/WebMail, I have in the past gotten a directory listing, then needed to click on "index.php" to get to the login page. Then everything worked fine.
    Now I get a "copy" of my main website's index page, only with "?" in place of all the graphics. It appears that the redirect (which never worked right in the first place...) is now even more bolluxed up.
    I've checked already that port 16080 is enabled, so that shouldn't be the problem.
    BTW, I am NOT a UNIX power-user, so please be VERY specific in both commands and syntax if I need to get into Terminal to fix the redirect. Thanks in advance!
    G4   Mac OS X (10.3.9)   OS X Server 10.4.8 on a 500MHz G4

    Hi, all -- I'm running into a recurring WebMail login
    redirect issue. When going to
    www.domain.xxx/WebMail, I have in the past gotten a
    directory listing, then needed to click on
    "index.php" to get to the login page. Then
    everything worked fine.
    If you want to fix this, make sure that:
    1) Your document root (aka "Web Folder") is set properly for the "www.domain.xxx" site in "Server Admin > Web > Settings > Sites > www.domain.xxx > General."
    2) In the same window, make sure "index.php" is listed as one of the default index files.
    Now I get a "copy" of my main website's index page,
    only with "?" in place of all the graphics. It
    appears that the redirect (which never worked right
    in the first place...) is now even more bolluxed up.
    I've checked already that port 16080 is enabled, so
    that shouldn't be the problem.
    Port 16080 means you're using Performance Cache (under "Options"). If you don't need this, turn it off.
    MacBook Pro   Mac OS X (10.4.8)  

  • How open multiple responsibilities in the same user login session in R12 ?

    Dear All,
    Can anyone help me to know how to open multiple responsibility in the same user login session in R12 ?
    Thanks..
    Edited by: G-oracle on Sep 18, 2011 11:22 AM

    Can anyone help me to know how to open multiple responsibility in the same user login session in R12 ?What do you mean by open multiple responsibilities in the same session? You can only see the menu of one responsibility at a time, so how to do you expect the application to let you see multiple responsibilities/menus in one session?
    You could open another session and this way you can access more than one responsibility at the same time.
    Thanks,
    Hussein

  • Is there a way to create user logins or some other way to ...

    Is there a way to create user logins or some other grouping for a set of applications to use (memory) resources optimally -- for example only mail and Safari and Word in one grouping and another for Safari and an audio recording application, etc.?

    It is possible to use Parenal Controls to limit which applications can be used be a particular user account.
    But it's not really necessary as far as managing memory.
    Matt

  • How can I filter a Sharepoint 2007 libarry list based on current user login?

    Hi all.
    I would like to know how I can filter a SharePoint library list based on current user login.
    Suppose I have created the followings:
    1) A SharePoint form library containing bunch of uploaded InfoPath form data.
    2) The InfoPath form template contains a promoted text field called "TargetUser" to store user domain login (ex: DOMAIN\JOE) and every InfoPath form file in the library has a valid domain name stored in the "TargetUser" field.
    I have created a custom view for the form library and would like to filter this view so only items whose "TargetUser" field matches current user's login ID are displayed.
    I went to Edit View page to customize the view and tried to use the [Me] function but I got a "Filter value is not a valid text string" message instead when clicking OK. Apparently [Me] returns a Person/Group data type and the filter cannot compare its value
    to that of "TargetUser".
    I tried using text functions (ex: TEXT([Me],"") hoping to extract default string value from [Me]. The filter accepts the parameter without any error but the resulting fitlered list does not display any items at all.
    I have googled this subject for hours but I have not found any solution.
    It would be greatly appreciated if anyone can help me to create a functional filtered list.
    FYI, my SharePoint 2007 installation is just WSS 3.0 + Form Server. I do not have MOSS 2007 (so no MOSS 2007 web parts or web services).
    Thank you.
    Jason

    Here's what I usually do in order to accomplish this.  Ultimately you'll need to have 2 different fields.  There's the one you already have, with DOMAIN\username stored in it.  Then you'll need an additional field as a "person" column type. 
    Call it "TargetPerson" or something.
    Create a sharepoint designer workflow that runs each time an item is created or changed.  One action:
    Set FIELD to VALUE.
    The first FIELD is "TargetPerson", the VALUE is your "TargetUser" field. 
    Once this is done, then the person value is stored in the person field.  This is the field that you can filter by "TargetPerson" is equal to [Me]
    Laura Rogers, MCSE, MCTS
    SharePoint911: SharePoint Consulting
    Blog: http://www.sharepoint911.com/blogs/laura
    Twitter: WonderLaura

  • I had renamed my user login name and assumed that there will be no change in the settings and files. When I login with the new profile name everything is gone. How can I get back all my files and settings?

    I had renamed my user login name and assumed that there will be no change in the settings and files. When I login with the new profile name everything is gone. How can I get back all my files and settings? Please help. Thanks.

    You should have asked this before you tried: Changing username or short name- User Account and Short Name- OS X- How to change user account name or home directory name.

Maybe you are looking for

  • FS10N cumulative value Table and Fields

    Hi, FS10N balances, cumulative balances in which table it will store this values. I am not able to see cumulative balances in BKPF or BSEG. In which table we can see the cumulativie values by period wise for FS10N. Thanks srinu

  • Print to PDF in acrobat X has rights issues

    Hi all, I can print a Test Page from the driver window but I can not print to PDF from Framemaker 10 originally and now IE8, word, etc. don't work too. Win 7 64 bit - We have 4 systems with this issue. I believe this maybe a rights issue. I had Disti

  • Location of Infinity modem and router

    I would like to change my broadband to Infinity but need to know a few things before doing so. The main OpenReach socket (the one with a removable lower section) is above the front door fanlight. From this box I have two wires (extensions) coming out

  • Find file by extension name

    I am looking for a specific file and don't know it's name but I know extension name.  I would like to fine this file by entering it's extension in Finder. Thank you David

  • SolMan - RZ21 error  "getservbyname failed "

    Hello,   Need some help with the above issue. In RZ21 --> Technical Infrastructure --> Configure Central System ---> Create remote Monitoring entry.   I am receiving the following error in the system log. "getservbyname failed" The display screen rep