How do I use the Profile Manager to run multiple PHP sessions?

I have a website that tracks the session and state of users as they traverse through the site. Several users can "work together" simultaneously. To test this cooperative functionality, I ran multiple Firefox profiles simultaneously on my computer, using Firefox's Profile Manager. After logging in as two users (one on each separate running Firefox instance), one of my Firefox instances still works, while the other one does not seem to track the session.
How do I create and run multiple Firefox instances to allow me to test the functionality of such sites? I believe this worked a few months ago. Perhaps this is a new bug?
I even tried running normal Firefox and Firefox Extended Support Release simultaneously, but I ran into the same error.

Disregard the question. The solution has nothing to do with any "Firefox bug". Turns out that my session wasn't being managed properly. Or rather, I was accidentally deleting other users' information when new users logged in. So if I had user 1 and user 2, and user 2 logged in after user 1, some of user 1's information would be deleted, resulting in the errors.
Oops; sorry about the false alarm. :)
(Was hoping to retract the question, but it looks like others have a similar problem.)

Similar Messages

  • Can I use the Profile Manager as an MDM while distributing app through app store?

    Is it possible to use the Profile Manager within the OSX Server to provision profiles through apps purchased in the app store? 
    Ex:  userX buys app in the app store, in downloading the app they get enrolled in the MDM / OSX Server I control.  They select profile settings within my app and submit to OSX Server (Profile Manager) at which point I send back OTA the provisioned profile for them to upload.
    Ex:  https://itunes.apple.com/us/app/parentkit/id600618138?mt=8
    Thanks for the feedback!

    Is this not possible?  Is it possible but not allowed? 

  • Firefox will not open - I have reinstalled and used the profile manager solution. It was fine earlier today. IE working fine.

    I tried the suggested solutions including the 'clean install', any help would be most appreciated. I've used the Profile Manager, which is not much use when the browser won't even open to test it. I've also reinstalled twice, installed updates and restarted numerous times.
    Firefox does do this on occasion, but usually sorts itself out - not this time.
    Help!

    You should check for malware or go back into regular mode and see if temorarily disabling your antivirus helps.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    '''Scan with all.'''
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.

  • Is it possible to use Apple Configurator to do a remote wipe of an iPad? Or must I use the profile manager tool within OS X Server?

    Is it possible to use Apple Configurator to do a remote wipe of an iPad? Or must I use the profile manager tool within OS X Server?

    no apple configurator connects via usb
    you'll need a MDM solution such as OSX server profile manager for remote wipe
    OTA pushing profies remote wipe etc
    you could use icloud for remote wipe

  • Mac:  How do you use the "Install Manager" to update Flash?

    So on a Mac with 10.3.181.22 installed, I went to a web page and the "Adobe Flash Player Install Manager" ran and notified me that an update to Flash was available.
    I didn't want to install this at that time, so I dismissed it.
    How do I force another check for an installation update procedure?  If I manually run the Install Manager in /Applications/Utilities, it only gives me the option to *Uninstall* Flash Player and revisiting the web page (or running some other Flash animation) did not prompt me again that there was an update.
    What am I missing to trigger the automatic notification/installation?
    - Steve

    Hi, I'm not familiar with that Mac feature since I don't use a Mac. However, you can go to this site and Install:
    http://www.adobe.com/products/flashplayer/fp_distribution3.html
    Also you can now use the automatic Flash Player notification for the Mac here:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    With this, the next time Flash Player has an update you will receive a prompt and can choose to "Install now"/"Remind me later" or "Don't Install"  I use it all of the time and the update is done in under 2 minutes!!
    Hope that helps,
    eidnolb

  • I need help in creating Firefox profiles directly from command line (script like) without having to use the profile manager step-by-step window

    is there a way to provide command line arguments when invoking profile manager so that I can seamlessly create a profile from one invocation? Passing profile name and profile location. I have to bypass user interaction with profile manager window. Thanks.

    http://developer.mozilla.org/en/docs/Command_Line_Options#User_Profile

  • How do I use the find method to find multiple items in a single paragraph?

    I am desigining a script to find any instances where ctrl+b and ctrl+i are applied to body text and then replace those character format overrides with Italic or Bold chartag.  Here's what the script is supposed to do:
    put the find method in a while loop that searches for character format overrides.
    If a character format override is found, pass the text range returned by the find method and the CharPropsChange flag to the GetTextForRange method.
    Use a boolean compare between the idata of the text item to the character angle and character weight constants.
    Whichever boolean evaluates to true, then use the SetTextProp method to set properties of the text range to the properties of the italic or bold character tag.
    This script does work on the first character format override found however it ignores any other overrides in the same paragraph. The cause of this is that the while loop updates the text loc that the find method uses to the next paragraph in flow. I suspect that i need to add an inner loop that goes through all the text in a single paragraph, where at teach iteration the text loc used by the find method is based on the same paragraph but the offset is modified. I am just not sure how to do that.
    function removeOverrides (pDoc)
        var vDocStart = pDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;
        var vBoldFmt=getCharFmt (pDoc, 'Bold')
        var vItalicFmt=getCharFmt (pDoc, 'Italic')
        initFA_errno ();
        while (FA_errno==Constants.FE_Success)
            var vTextLoc = new TextLoc(vDocStart,0);
            var vFindParams=findOverrideParams (pDoc);
            var vTextRange=pDoc.Find(vTextLoc,vFindParams);
            if (vTextRange.beg.obj.ObjectValid())
                var vTextItems=pDoc.GetTextForRange (vTextRange, Constants.FTI_CharPropsChange)
                if (vTextItems.length==!0 )
                    if (vTextItems[0].idata==Constants.FTF_WEIGHT)
                       pDoc.SetTextProps (vTextRange, vBoldFmt.GetProps())
                    if (vTextItems[0].idata==Constants.FTF_ANGLE)
                       pDoc.SetTextProps (vTextRange, vItalicFmt.GetProps())
                    } else (Log (vLogFileName, '\nERROR: No items were found in the text format array but format override was found: '+pDoc.Name))
            vDocStart=vDocStart.NextPgfInFlow;
    function findOverrideParams (pDoc)
        var vFindParams = AllocatePropVals(1);
        vFindParams[0].propIdent.num = Constants.FS_FindObject;
        vFindParams[0].propVal.valType = Constants.FT_Integer;
        vFindParams[0].propVal.ival = Constants.FV_FindCharacterFormatOverride;
       return vFindParams;

    Hi Rick,
    Well, following up on the previous posting, I actually did figure out how to make it work but it seems rather inefficient. I can insert a new paragraph right after the paragraph that has the table anchor but when i cut the table, i also cut the paragraph i just created. So to get around that, I create two paragraphs, so that there will be one paragraph left after i do the cut and that is the paragraph that I paste the table into. Once the table is pasted into the new paragraph, I delete the other paragraph that I created.
    Here's the updated code from the for loop:
    var vTbl = vDoc.GetUniqueObject(Constants.FO_Tbl, vTextItems[i].obj.Unique);                 
    var vAnchorPgf=vDoc.NewSeriesPgf (vTbl.TextLoc.obj)      
    var vAnchorPgf2=vDoc.NewSeriesPgf (vAnchorPgf);        
    var vAnchorTextLoc=new TextLoc (vAnchorPgf2, 0);             
    var vTblTextRange=new TextRange ();        
    vTblTextRange.beg.obj=vTbl.TextLoc.obj;       
    vTblTextRange.beg.offset = vTbl.TextLoc.offset;        
    vTblTextRange.end.obj=vTbl.TextLoc.obj;        
    vTblTextRange.end.offset = Constants.FV_OBJ_END_OFFSET                 
    vDoc.TextSelection=vTblTextRange;        
    vDoc.Cut (0);                
    vTblTextRange.beg.obj=vAnchorTextLoc.obj;        
    vTblTextRange.beg.offset = 0;              
    vTblTextRange.end.obj=vAnchorTextLoc.obj;       
    vTblTextRange.end.offset =0;                 
    vDoc.TextSelection=vTblTextRange;       
    vDoc.Paste (0);                   
    vAnchorPgf2.Delete();        

  • How do you use the same wireless keyboard with multiple devices?

    My apologies in advance if this question has been answered previously.  There was nothing in the owner's manual (for the keyboard) that answered this.  I did do a rough search that did not yield an answer to this:
    I have one wireless keyboard I am using with my Macbook Pro.  I understand this keyboard can also be used as an input device for my Apple TV and my iPhone - both of which I currently own.
    And although I am able to use the keyboard with those devices, I am forced to "forget this device" after having used it on either the Apple TV or my iPhone so that I can use it on my MacBook Pro.  Is there any combination of keys that one can press on the keyboard that would cycle through my three devices?  As it is right now, if I don't "forget the device" on my secondary units, it somehow defaults to a peripheral OTHER than my MacBook Pro and I'd like for it to always default to my computer. 
    Thank you for any information/advice.

    Bump

  • How can I use the same Sound variable for multiple sounds?

    I need my program to play many different mp3 files at different times.  I'm reading that you can not load different mp3 files into the same Sound variable.  But there must be a way around this right?  Can I Unload mp3 files some how?  Or can I delete the Sound variable and declare it again?  I don't want to have hundreds of Sound variables so what do I do?  Thank you.

    delete doesn't work in as3.  you must remove all listeners and references including nulling the variables.  for displayobjects, they need to be removed from the display list.
    p.s.  you don't need to create a sound instance until you need to load an mp3 using one.  so, if you're waiting for user input to start loading an mp3, you should wait for that input to create that sound instance.

  • The profile manager only shows my new profile. How do I switch back to my default profile?

    I just made a new profile to use exclusively with an alternate version of Firefox. My regular version accidentally opened this new profile, so I tried using profile manager to set it back to the default. However, the profile manager is only showing my new profile. /appdata/roaming/mozilla/firefox/profiles shows that I still have my default and my new profile. Putting -P "default" in the target line just opens up profile manager. How do I switch back to my default profile or get it to show up in profile manager?

    When a profile doesn't show in the Profile Manager then you can register this profile by using the Profile Manager to create a new profile.
    You can click the "Choose Folder" button to make Firefox recognize and use an already existing profile.
    It is best to create a desktop shortcut that selects a specific profile (-P "profile_name") to avoid opening a profile with the wrong Firefox version.<br />
    Make sure to select the profile for the default browser in the Profile Manager, so that is used when you click a link in an external program.
    *http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    *http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    You can use the -no-remote command line switch to open another Firefox instance with its own profile and run multiple Firefox instances simultaneously.
    *http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

  • Getting Profile Manager to Run

    Hello, I have my Mini server up and running and using the following services; DNS, FIle Sharing, Open Directory, and Time Machine.  I would like to start using the Profile Manager.  I turn it on and click on the link to open the service manager and Safari tells me it cannot access the server at server.home.name/profilemanager.  I’m not the best network person in the world but here’s what I’ve done/tried so far;
    I can ping “server.home.name” through the terminal so I know that much is working,
    I found the Apple Article HT5302, referencing the ports used by the profile manager.
    I have Verizon Fios and I went in to the Port Forwarding section and opened the ports 2195, 2196, 5223, 80/443, and 1640.  As part of my debugging I tested them with http://www.canyouseeme.org and the only one that worked was 1640.
    As a brief test I set the firewall on my router to minimum security.  I use NO-IP and, correct me if I’m wrong, I believe everything is working correctly, or else 1640 wouldn’t work right?
    Any one have a suggestion on what I am doing wrong?

    That means you need to clean reinstall.
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    Please report back to see if this helped you!
    Thank you.

  • Neither Firefox nor the profile manager will start. In my task manager, the process is using 50% of my cpu but does nothing. I love browsing with firefox, how can I fix this?

    I've tried restarting my computer, the I tried uninstalling and reinstalling, then uninstalling, erasing all firefox files and folders, then restarting and reinstalling. I've also tried opening the profile manager to change my profile. After reinstalling a few times and trying to open the profile manager before launching firef0x, I got the firefox has crashed window and the process in the task manager is still using 50% of my cpu. The most recent expunge then re-download pops up a "file is corrupt" error and won't even install the program.

    Kill those processes that you are seeing, including any plugincontainer.exe, only once firefox has stopped running should you try to update it.
    Totally unexpected instances of firefox running may sometimes be the result of malware activity.

  • How do I remove unwanted entries in the Profile Manager window?

    Can anyone please explain how do you remove irrelevant entries in the Profile Manager dialog? Since I have both 4.0 and 3.6 installed,each with two profiles,I use to launch secondary profiles with the Profile Manager via a command line instead of a specific shortcut,and the dialog window always shows all four options,regardless of what path I enter : is it possible to clean up the dialog window,so that only the 4.0 profiles are displayed when entering the path to 4.0 profiles,and so on for 3.6,without actually risking to delete any profiles? BTW,4.0 profile folders are stored in a different directory than 3.6,and the 3.6 profiles were accessed with the Profile Manager window (no shortcuts to specific profiles at the time) before installing 4.0

    The Profile Manager is for all versions of Firefox you have installed - every Profile that is listed in the '''profiles.ini''' file will appear there. The location of the Profile folders has no effect on what the Profile Manager dialog window shows. There is no way to set it up relative to one program installation.
    Best thing to do is to have separate desktop shortcuts for each Profile / Firefox-version you want to use.
    http://kb.mozillazine.org/Shortcut_to_a_specific_profile

  • How do I disable the "Delete Proflile" and "Rename Profile" buttons when the profile manager opens at startup?

    I have multiple Firefox profiles for the different people that use my computer, and I would hate for someone to accidentally delete my profile when going online. Is there anyway I can disable that button when Firefox starts, and only have it work when I open the profile manager?
    I was originally just gonna give everyone their own Windows login, but it's easier for me to just do it this way. Help is appreciated.

    If there is already a Firefox instance open that uses a specific profile then you only open a new window in that instance it you click another Firefox shortcut.
    Be aware that if no Firefox instance is open and you click a link in anther program (Windows Explorer or email) and Firefox is the default browser then Firefox will use the profile that is selected in the profile manger as the currently selected profile.

  • How to use the :$PROFILE$ token in a table validation value set

    Hi Community,
    Let me explain the scenario.
    We have a Flex Value Set (CLIENTES SERVICIO DIRECTO) with a table validation, included in the PO Headers DFF, which shows a LOV with the Ship-to addressfrom the customer which we want to serve the goods; i.e. we are acting as a commisionists and the supplier puts the goods in the Ship-to address of the customer.
    This Flex Value Set, as I mentioned, have a table validation, with the following validation table information:
    Table Application: Oracle Receivables
    Table Name: RA_ADDRESSES_ALL a, RA_CUSTOMERS b
    Table Columnns: b.CUSTOMER_NAME Varchar2(20), a.PARTY_LOCATION_ID Varchar2(20)
    Where/Order By: a.CUSTOMER_ID = b.CUSTOMER_ID
    Additional Columns: a.ADDRESS1 "Dirección"(20), a.CITY "Ciudad"(10)
    If we translate this to a SQL code:
    select a.address1,
    a.city,
    a.party_location_id,
    b.customer_name
    from ra_addresses_all a,
    ra_customers b
    where a.customer_id = b.customer_id
    and b.customer_id = 6283 <--- This last condition clause is for narrowing the result to the interested customer.
    This select retrive us two records; for the same customer, one of them for one organization_id (let's say 85) and one of them for the other organization_id (84).
    What we are looking for and want is that the LOV, which actually display the two records, shows only the ship-to site of the customer that belongs to the organization_id which belongs the user who queries or creates the Purchase Order.
    I.e. Suppose that we enter to Purchasing using the responsibility assigned to the Operating Unit or Organization_id 84. We want that theLOV only shows the Ship-to Site from the customer that belongs to the Operating Unit or Organization_id 84.
    I believe that we can achieve this using the :$PROFILE$ token, but we do not know how.
    Any ideas?
    Thanks a lot for your answer.

    Hi Rcana,
    We have just test your suggestion and it works. We believe that the correc sentence was fnd_profile.get('profile_name'), but the value feature solve the problem. Thanks for your help.
    Regards.

Maybe you are looking for