Making an Exam: Login

Hey everyone! I am new at this and I wanted some help with a couple of things. So I tried to make an exam and I came up with a few issues. The exam is located here: http://ehsa.net76.net/dntests/adminexam2.php .
One problem is that I don't know how to make the login and input usernames and passwords. How do I make the Start Exam button work so when an appropriate username and password are entered it takes you to the test.
Thanks so much!

in flash you would use something like:
function loginF():void{
var urlRequest:URLRequest = new URLRequest(login.php);
var urlVar:URLVariables = new URLVariables();
urlVar.username = username_tf.text;
urlVar.password = password_tf.text;
urlRequest.method = URLRequestMethod.POST;
urlRequest.data = urlVar;
var urlLoader:URLLoader = new URLLoader(urlRequest);
urlLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
urlLoader.addEventListener(Event.COMPLETE,loginCompleteF);
function loginCompleteF(e:Event):void{
if(e.target.data.login){//do whatever.  login valid
} else {
// invalid login try.
and in your login.php you open your sqlconnection to your database, select your database,  parse the posted variables and check if the username/password match a database entry.  something like:
<?php
$dbServer="yourserver.com";
$dbUsername="yourusername";
$dbPass="yourdatabasepassword";
$tableName = "Users";
mysql_connect($dbServer, $dbUsername, $dbPass) or die(mysql_error());
mysql_select_db($dbName) or die(mysql_error());
foreach ($_POST as $key => $value) {
$$key = $value;
$$key = mysql_real_escape_string($$key);
$result = mysql_query("SELECT * FROM " .$tableName. " WHERE username = '" .$username. "' AND password = '" .$password. "'") or die(mysql_error()); 
$echoS = "false";
while($row = mysql_fetch_array($result)){
$echoS ="true";
echo "login=".$echoS;
mysql_close();
?>

Similar Messages

  • Making user account logins case sensitive?

    Hi, just a quick question. Is it possible to make a user account login name case sensitive? Currently I can log on using upper or lower case for the login name however I would rather only the exact login name could be used.
    Thanks

    I had already answered with example.
    Re: Making user account logins/passwords case sensitive?

  • Making an auto-login on our Intranet; how secure is CGI.auth_user?

    We have CF10 on our Intranet webserver, and I'm developing the authentication system.  The higher ups do not want the Intranet to ask for a login, and instead to pull the user's credentials from the CGI.auth_user variable since they log into a domain before they get to the intranet.
    Thing is, this variable holds a value that lists the domain and username, but no password (ie, 'DOMAIN_NAME\user_name')
    Well, I can run CFLDAP to determine if this user exists in our active directory and is not disabled/locked, but since a password is not captured/provided, the Intranet would have to assume that 'This is good enough for you to say who you are', and auto-log them in as that user.
    My question is, how hard is it to spoof this value?  If someone knows the username of an admin, and can alter the system to capture their credentials as 'DOMAIN_NAME\username_of_admin' then it would log them in as an admin.
    I understand the risk of assuming the logged in person IS the person at the computer (we have many people who login as themselves, but let others use their PC while they are logged in, and informed these people that this is both against policy and that THEY are responsible for anything someone else does on their PC while logged in with their credentials)

    Aegis Kleais wrote:
    We have CF10 on our Intranet webserver, and I'm developing the authentication system.  The higher ups do not want the Intranet to ask for a login, and instead to pull the user's credentials from the CGI.auth_user variable since they log into a domain before they get to the intranet.
    The most important questions on security are not based on which techniques to use. They are based on policy. Thus, if the domain trusts its users and the policy is that the intranet is just one of the resources within the domain, then there will be little need for a second layer of authentication.
    Thing is, this variable holds a value that lists the domain and username, but no password (ie, 'DOMAIN_NAME\user_name')
    Well, I can run CFLDAP to determine if this user exists in our active directory and is not disabled/locked, but since a password is not captured/provided, the Intranet would have to assume that 'This is good enough for you to say who you are', and auto-log them in as that user.
    My question is, how hard is it to spoof this value?  If someone knows the username of an admin, and can alter the system to capture their credentials as 'DOMAIN_NAME\username_of_admin' then it would log them in as an admin.
    It would be a difficult spoof. Suppose you intend on some malafide action on the intranet. You have managed to get hold of the username, DOMAIN_NAME\username_of_admin. To be able to pull off the spoof, you need to be in the domain, and have admin privileges. To have achieved that in the first place, you needed access to an admin password.  We're now down to trust.

  • Making user account logins/passwords case sensitive?

    Hi, just a quick question. Is it possible to make user account login/passwords be case sensitive? At the moment they are case insensitive.
    Thanks :)

    You can make only user account login case sensitive but not password.
    SQL> create user "Test" identified by "tEST";
    User created.
    SQL> grant create session to "Test";
    Grant succeeded.
    SQL> conn test/test
    ERROR:
    ORA-01017: invalid username/password; logon denied
    Warning: You are no longer connected to ORACLE.
    SQL> conn "Test"/test
    Connected.
    SQL>

  • Multiple Branded Login Pages

    Hi
    I followed the plumtree enterprise dev tutorial on the plumtree site on multiple branding using different url host headers, using custom activity spaces and PEI, making calls when login action events are triggered. It works for the most part, except for one case:
    I have url "X" which uses the default guest account, and url "Y", which uses a custom guest account "guest2". Both urls point to the same plumtree portal.
    I can go from Y to X and back to Y. Each time a login action fires and my custom classes swap the guest accounts being used.
    Where it doesn't work is if I go from X to Y. I think its because X logs in as the default "guest" account, and once its logged in, even if I go to Y, no login events are fired and my classes don't get a chance to swap the guest account.
    Looking at PTSpy, none of the login activity events get triggered so there's no way I can get my code to swap the guest accounts.
    Is there another way to force the guest accounts to swap?
    We are using Plumtree Portal 5.0.2
    Regards
    Polan Fong

    Hi Eric,
    We will be adding a Quick Start for a similar customization to the Developer Center soon. Our approach uses the Login PEI to login the user as a custom guest user based upon the url they use to hit the portal (http://www.mycompany.portal.plumtree.com). The custom guest user allows you to use subportal branding to make the login page match the portal after the user logs in. This is not a perfect solution in the 5.0.2 timeframe, but it works for the login page (guest user browsing has some issues). You could also use the Login PEI to do something similar to what you did in 4.5 with custom login pages.
    -- Don

  • Multiple Login PEI's

    I am going crazy trying to migrate some custom pei's and activity spaces from 5.04 to 6.0.1. We currently have 5 or 6 login PEI's. Depending on what happens in the OnAfterLogin method, we may need to redirect the user to a custom activity space. Lets say the user is redirected on step 3, goes out and completes what ever action is required in the AS. After the as is complete, I want to get back into my login flow and complete steps 4-6, but I am not sure how to do this. On step three, I had to return a redirect to a custom space. When I complete my AS I can return null, but that dosen't seem to put me back in the flow. It actually seems to get me stuck in the same AS. So if the custom AS was for changing a password, the user is stuck changing their password forever because I didn't return a valid redirect.
    I have the code for how this was worked around in 5.04, but it breaks in 6.0 and I am not sure it was the right way to do it anyway. Can anybody provide some good ideas on how to do this in 6.0 sp1?
    Thanks,
    Berney

    I'm making some custom login PEIs right now but from scratch in a new 6.1 installation. Do you mind if I ask if you were able to get your custom activity spaces (AS)(most notably your change password AS) to show custom branding according to experience definition? We have 5 uniquely branded portals and each must use the same change password AS but right now I only have it showing the ugly blue out of the box branding - I can't get it branded w/ our custom header and footer. It's going to take some more homework on my part. If I could just find out the exp.def./subportal-id from my PEI to begin w/ that'd be great (right now, using
    IPTSubPortalInfo subPortal = (IPTSubPortalInfo) ptSession.GetSessionInfo().GetCurrentUserCachedSubPortalInfo();
    int id = subPortal.GetObjectID()
    doesn't work.

  • Exam for Oracle Forms Developer

    To be able to able to pass exam for Oracle Forms Developer, do I need to remember all those built-ins?

    I don't know what kind of exam you are taking. But i guess making an exam for forms will involve knowing most of the built-in's.

  • Login User User, Can't get Password Feild: Password?

    Hi
    When making a User Login form from the Dreamweaver 8 Recipes, it falls short of creating the User Login Form. I've tried a few combinations of Insert > Form > Text Feild > I do not know what input Tag Accessibillty Attirbutes to add in
    ID:
    Label:
    Style...
    Posistion...
    Access Key:
    Tab Index:
    Next, when adding in the Server Behaviors the same dimwhit condition re-applies, in:
    Password Feild:
    I want to access: Password defined in the DW8 tutorial.
    My access is restricted to User Login, derived from the text field.
    I've tried changing it and many other variations to no avail.
    In Summary:
    I just want to make a User Login Form.
    Rather than use the tutorials.
    Please Help.
    Sabby76

    Hi Lawrence
    Thank you for your reply
    I've been working so much lately that turning around to dynamic web development simply reminds me of a learing brick wall, my tired overworked brain.
    Thank God for Adobes on-line forum and WA. I use PHP and MySQL and have SS from WA. So far I've uploaded and tested locally and remotely, a .php contactus page. When uploaded remotely, the security lettering was not visible? I uploaded the fonts file again using Filezilla and voila, a working contact page.  Now, I'm going to have a re-think, a rest and re-address the contactus .php page adding text boxes like a telephone number and a rendevous text box. Also, Jason Byrnes from WA added the recipes file to my downloads account and I went ahead and developed the frist page. I'd still like to know how they create snippets forms which ID in the server Behaviors Panel > User Authentication > User Login >  because when I was working with-out the .recipes file I had ago at making the form feilds yet no matter how I combined the ID's they would not bind the server behaviors, any clues?
    Thanks for reading
    Sabby76  

  • SCDJWS Exam Objectives Oriented Book

    Hi
    I am planning to appear for SCDJWS certification exam for which i had a query regarding the preparation for it.
    Just like there is Kathy Sierra book available specific for SCJP certification objectives, is there any book available for SCDJWS certification?
    If yes, kindly provide the details of the book.
    Thanks
    Rohit

    no. One was being written but after the release date had been missed by some 2 years already the project now seems to have been abandoned.
    The amount of material to be absorbed for the exam is staggering, and most of it both bone dry and totally irrelevant to pretty much all real world web services development, making the exam both tedious and irrelevant itself.

  • Fingerprin​t Reader access to KeePass (from a Thinkpad with Password Manager)

    The goal: secure, convenient, automated login to password-protected sites
    KeyPass is a great open-source program for secure creation, storage and use of login passwords and other information. With a plugin called KeeForm, it allows very convenient automatic login to password-protected sites by clicking on a KeePass entry. To preclude unintended access to all of your secure information, it is wise to close Keepass after each use, or set Keepass to lock when minimized. But this is less convenient, because a long secure master password then has to be entered before each use of Keepass.
    Using a fingerprint reader to enter Keepass can be a big time saver while retaining security. Capacitive swipe fingerprint readers can be very secure, provided they operate through equally secure software. They are available as USB units, or integrated into some keyboards and notebook computers, for example some Lenovo ThinkPads.
    Unfortunately, set-up can be a challenge and there may be disadvantages even after the best workable interface between KeePass and a particular biometric system. This example uses the integrated fingerprint reader and software on a Lenovo ThinkPad X61.
    The problem: getting secure fingerprint software to use KeePass
    ThinkPads can use Lenovo fingerprint software alone for start-up into Windows, but they need additional layers of software (Client Security Solution - CSS, and Password Manager  - PM) to work with other programs including KeePass. PM uses CSS security functions.
    Cautions about Lenovo CSS:
    1. Some organisations advise against CSS because of problems including clashes with antivirus programs. See http://www.ncsu.edu/antivirus/lenovo/ and
    http://prowiki.isc.upenn.edu/wiki/ThinkVantage_Sof​tware_Under_Windows_Vista
    These bugs may have been fixed over time - but install at your own risk!
    2. CSS and PM introduce their own system overheads which may slow some operations.
    3. Once tried, CSS may not simply be inactivated while restoring basic fingerprint start-up into Windows. The X61 at least insists that CSS be reactivated for any fingerprint function. If you try a Windows system restore to a time before CSS was first activated, you may experience the ‘blue screen of death'. The security chip evidently regards your desire for a past configuration as a security breach. With luck you may ‘live again' if you can log into Windows in Safe Mode to undo the attempted system restore. After that, I reactivated CSS. I was not game to try uninstall after inactivation of CSS - but see the ncsu link above.
    Having decided to accept the ‘risks' of activating CSS and PM, you may want to try PM for all password management. For me it would not recognise some internet logins, could not complete auto-submission in others, and did not allow the manual adjustments that make KeePass so versatile. Unfortunately PM help is very limited. There is no current user manual (old manuals up to v1.4 available on the web do not match the properties of the current v3 of the software). KeePass (or the KeeForm plugin) also struggles with some sites, but it works much better overall. Help on KeeForm plugin syntax is limited, but otherwise KeePass help is great.
    So we really want the fingerprint reader (via PM) to work for KeePass master password entry.
    This is not so simple for five interacting reasons:
    (i)  It is tricky to register KeePass in PM;
    (ii) PM then gets confused by ‘hidden' entry of a master password during fingerprint login to KeePass, and repeatedly tries to save ****** as a changed master password;
    (iii) PM also tries to automatically register each entry opened for editing within KeePass;
    (iv) PM tries to automatically register other logins even if they are managed through KeePass.
    (v) Your KeePass records are now only as secure as your PM login (which is likely to be your Windows login).
    The solutions: or workarounds at least
    The best workarounds I could develop for these five issues were:
    (i) To register KeePass in PM, first ensure that PM is running (icon in the system tray). Then launch KeePass, click the login window box for unobscured password display (three blue dots turn black), enter the master password and click OK to start KeePass as usual.
    If PM does not offer to save an entry for KeePass by this stage, try ‘plan B'. Open a window to edit an entry in KeePass, then click Cancel. PM seems to recognise this more readily as a login window and may offer to create an entry. Accept the offer, and name the entry KeePass. Then open PM to edit the saved entry. You will have to edit several fields to achieve an effective PM entry for KeePass:
    The title field must be "Open database - database.kdb", to match the title of the KeePass login window.
    The file name field should show the full path to KeePass.exe (something like C:\Program Files\KeePass\PeePass.exe depending on your installation).
    The login and password data field is accessed by double clicking the entry. It will need to show only your KeePass master password (in the unobscured text view). In login and password data, delete each line of unwanted text until you get to the final password line (shown as *****), and edit this line to provide your master password.
    In the Advanced tab, select auto-fill and auto-submit and the desired security level [see (v) below]. Then select OK to get to the PM front window, and File - Save Changes, then Exit.
    Now when you close and re-launch KeePass, PM should automatically intervene (requesting a fingerprint to complete the KeePass login if you selected that security level. Select ‘No' when PM asks to change the password [see (ii) below].
    If you had no luck, try ‘plan C'. Close KeePass completely, then launch it again to open the login window. Then right-click the PM icon in the system tray, open the ‘Type and Transfer Tool', click the box for unobscured password display, type in the KeePass master password, drag the cross-hairs to the password field in the waiting KeePass login window, and release the password there. Click OK to start KeePass as usual, then click OK to close the PM transfer window. If there is still no KeePass entry in PM, check that KeePass has not been included in the PM excluded programs list. If this sequence does not work, reboot and check again. Failing all else, any entry that PM succeeds in making from any login page can be edited to an effective KeePass entry by editing fields as described above for ‘plan B'.
    PM (v3.00) can be coy to associate initially, but it will accept KeePass (v1.14) as a password-managed program, and thereafter it reliably succeeds to auto-submit the KeePass login after some help described in (ii) below.
    (ii) Having sent the correct master password to the KeePass login window, PM becomes confused by the ‘hidden' text now in the password field, and offers to change its record of your KeyPass master password to ******. You can manually select ‘No' in the PM changed-password dialogue box that appears every time you use PM / fingerprint for KeePass login. But Beware: if you ever accidentally select ‘Yes' (the default) your KeePass master password record in PM will be changed to ******. This can be edited to provide the correct password again, but it is more than a minor pain in the AR5E. Unless you know (or have a backup of) your KeePass master password you just lost access to your KeePass database!
    To avoid this big nuisance and risk, you can set up to restart KeePass for each use from a desktop shortcut (instead of minimising it to the system tray) and have the shortcut run a batch file with vbs scripts that send the ‘No' message to PM automatically.
    Here is an example batch file, with corresponding vbs scripts. You can make all these files using Notepad and save the files with the names indicated, into the KeePass program directory (C:\Program Files\KeePass in this example).
    KeePass.bat (This launches KeePass and tells PM v3 not to change the password. Caution: If Lenovo changed PM program design in future, the effect could change; the batch file might send {TAB}{ENTER} keystrokes to another open window on your computer):
    C:
    cd\
    cd "C:\Program Files\KeePass"
    start " " "C:\Program Files\KeePass\KeePass.exe" "C:\Program Files\KeePass\Database.kdb"
    start /w Sleep.vbs 1
    start /w AppActivate.vbs
    start /w SendKeys.vbs
    Sleep.vbs (provides a short delay to open the ThinkVantage dialogue window, otherwise the following scripts fail because they are sent too soon):
    Wscript.Sleep Wscript.Arguments(0) * 1000
    AppActivate.vbs (puts focus on the ThinkVantage  Password change dialogue window so that Tab and Enter commands are not sent elsewhere with undesired effects):
    CreateObject("WScript.Shell").AppActivate "ThinkVantage Password Manager"
    SendKeys.vbs (sends a ‘No' response to the PM request to change its KeePass entry):
    CreateObject("WScript.Shell").SendKeys "{TAB}{ENTER}"
    Please substitute ) where you see smileywink: in the vbs scripts above - I can't get this forum window to stop automatically translating the " ) sequence of text (without a space) as an emoticon.
    This batch file approach should work with additional startup switches for KeePass, for example the /backup.path: switch used by ‘another backup' plugin (or you can use the db_backup plugin that works from the KeePass.ini file). Quotes are needed around any entry with spaces. But some things that ‘should work' such as just writing "KeePass.exe" instead of the full path in line 4 of the batch file do not give the same outcome for me. This may be an effect on timing of the switch of focus between windows - so if you strike a problem it may be worth experimenting with the delay time set through the sleep script.
    If you set KeePass to lock when minimised, you will have to deal manually with the PM changed-password dialogue every time you re-access KeePass. So it is simpler to close rather than minimise KeePass after each use and restart it when needed, via the batch file.
    (iii) You have to tell PM ‘No' whenever it offers to save an entry that is edited in KeePass. This is less of a nuisance, because entries rarely need to be edited once set up in Keepass.  There is no way to turn off this requirement. If you select ‘Never' it will prevent use of PM and therefore fingerprint entry to start KeePass (not just the edit window).
    (iv) Turn off internet login within PM. This will leave all internet logins to KeePass. Unfortunately you can not set PM to only allow a single program login (KeePass), but you can set it to exclude specific programs, so do that for other programs that you access via KeePass.
    (v) Finally, set PM security within CSS so that a fingerprint (or a password if the fingerprint reader fails) is needed every time PM is launched (not just once per boot). Similarly, set KeePass security this way within PM. Otherwise (if you set the requirement to once per boot) your passwords are open to inspection while you are away from your booted computer.
    Caution: How secure is your Windows login password? Most likely this is also your PM login password, so it now allows access to your KeePass database! Make sure that it is a unique, secure and preferably memorable password.
    How close are we now to the desired combination of security and convenience?
    Click on the KeePass shortcut to the batch file given above, swipe the fingerprint, wait while CSS works, then click on the relevant Keepass entry to access any password-protected site or application in your Keypass list - great convenience.
    Security is very strong - both KeePass and PM are extremely secure unless you use a weak or insecure master password or select less secure settings.
    Starting (or opening a locked instance of) KeePass without the batch file given above requires a couple of extra carefully-placed clicks in the process to tell PM not to mess up its entry for KeePass, then to complete KeePass startup. This is less convenient, and a mistake could prevent future database access - so the batch file method is recommended.
    A final caution (while enjoying secure & convenient logins):
    Beware - fingerprint access is so convenient that you may forget your master passwords! Eventually they will be needed! You may click the wrong button in PM, suffer a faulty fingerprint reader or change computers! Then you must recall your master passwords before you can access your password file (and possibly your computer). This could be devastating: loss of all secure password information in KeePass and PM (and possibly loss of all information on a protected computer drive, not to mention need to pay for a computer motherboard and HDD replacement). So:
    1. Choose very secure but ‘unforgettable' master passwords for KeePass and computer (PM) access.
    2. Always set up a secure master password as an alternative to biometric authentication (in case of a faulty fingerprint reader).
    3. Keep your password database backups, and your separate master password backups, in another secure (preferably encrypted) but accessible location!
    Program versions tested:
    KeePass v1.14 (v2 betas not tested) with KeeForm v2 and DB_Backup v1.14
    Lenovo CSS v8.20 with PM v3.00
    The solutions were tested in November 2008 on a Thinkpad X61 running Windows Vista Business. The tricks to interface with KeePass can vary between fingerprint programs (search the KeePass forum).
    Message Edited by r_g_b on 11-03-2008 07:01 PM
    Message Edited by r_g_b on 11-04-2008 12:00 AM

    I'm reviving quite an old topic here, but I have been unable to find any other good information on this.  I currently use the latest version of Keepass v2.23 and have Lenovo Passoword Manager v4.3 installed on my new W530 laptop.  I can't get PM to recognize any passowords at all, in web browsers or in windows application.  
    In PM the only thing I can do is create folders and secure notes.  My fingerprint software works great for automated logins to windows.  Does anyone have any experience with using the fingerprint reader with a windows application like Keepass?  
    How can I get the Password manager to do ... anything?  Recognize a password in windows or a web browser?
    I'm open to any other software to be used or I can write scripts if necessary to accomplish this.  It doesn't seem like this should be so difficult, but from what I've learned about Lenovo so far, is that nothing is easy.  After trying to get battery charge thresholds working proplery in Windows 8, I've already lost faith in a company that I thought had a great reputation.  

  • O/p problem

    Hi all.
    I have a serious issue..I have a simple report that selects the data from database table and Downloads into a file.
    My problem is -there is only 2 records in table and it should come only 2 in Output.I m getting the same 2 o/p.But if run ,s thr progaram 10-12 times with each time i make a fresh login..i have got some times more than 2 records.
    How it is possible..?
    Can any one explain it..
    I have Cleared and refreshed all the table.
    I think this should not be  issue related to clear refresh since i m making a fresh -login for each run.
    Thanks
    Saurabh Tiwari

    Hi saurabh,
    1. It might happen that
      the program is APPENDING the 2 records,
      to the original file.
    2. if u are using the fm GUI_DOWNLOAD
       just make sure u don't pass the parameter
       APPEND = 'X'
    regards,
    amit m.

  • How to access database file on CDROM from Java Programe??

    Hello friends,
    I am making online exam application.
    I want my question database to be reside on CDROM.
    but i am not getting any idea how to make DSN or static path that resolute the path that i have mentioned for CDROM.
    basically i want to know how to access CDROM from Java Programe????
    Thanks in advance
    Navik Pathak

    Once you mounted the CDROM (something maybe as /media/cdrom) as a file system (or assigned a drive letter to it like D: or F: or whatever), the files are accessible normally.

  • DATA-PUMP ERROR: ORA-39070 Database on Linux, Client on Win 2008

    Hi,
    i want to make a datapump export from client Windows 2008. I define dpdir as 'C:\DPDIR'.
    While making expdp
    expdp login\pass@ora directory=dpdir dumpfile=dump.dmp logfile=log.log full=y
    i get those errors
    ORA-39002:niepoprawna operacja
    ORA-39070:nie mozna otworzyc pliku dziennik
    ORA-29283:niepoprawna operacja na pliku
    ORA-06512:przy "sys.utl_file", linia 536
    ORA-29283:niepoprawna operacja na pliku
    (decriptions in polish)
    I found out, that datapump is saving files to the Linux Server (where database is). When i define 'C:\DPDIR' it doesn't recognize it because there is no such directory on Linux.
    How can I save datapump export dumpfile on Windows?

    tstefanski wrote:
    Hi,
    i want to make a datapump export from client Windows 2008. I define dpdir as 'C:\DPDIR'.
    While making expdp
    expdp login\pass@ora directory=dpdir dumpfile=dump.dmp logfile=log.log full=y
    i get those errors
    ORA-39002:niepoprawna operacja
    ORA-39070:nie mozna otworzyc pliku dziennik
    ORA-29283:niepoprawna operacja na pliku
    ORA-06512:przy "sys.utl_file", linia 536
    ORA-29283:niepoprawna operacja na pliku
    (decriptions in polish)
    I found out, that datapump is saving files to the Linux Server (where database is). When i define 'C:\DPDIR' it doesn't recognize it because there is no such directory on Linux.
    How can I save datapump export dumpfile on Windows?
    >Hi,
    i want to make a datapump export from client Windows 2008. I define dpdir as 'C:\DPDIR'.
    While making expdp
    expdp login\pass@ora directory=dpdir dumpfile=dump.dmp logfile=log.log full=y
    i get those errors
    ORA-39002:niepoprawna operacja
    ORA-39070:nie mozna otworzyc pliku dziennik
    ORA-29283:niepoprawna operacja na pliku
    ORA-06512:przy "sys.utl_file", linia 536
    ORA-29283:niepoprawna operacja na pliku
    (decriptions in polish)
    I found out, that datapump is saving files to the Linux Server (where database is). When i define 'C:\DPDIR' it doesn't recognize it because there is no such directory on Linux.
    How can I save datapump export dumpfile on Windows?
    expdp can only create dump file on DB Server system itself.

  • Itunes won't sync, won't backup, status of all devices are "other"

    computer is a mac mini 2006 1.66 ghz core duo, 2 gb of ram, macmini 1,1. os x 10.6.8 , itunes 11.4
    devices are running ios 8.1 , they can sync and backup perfectly fine to my mac book pro. but they haven't been able to sync or backup to my mac mini for over a month. when i plug the ipad and iphone in , sometimes i see the different sections, apps, videos, in different colors, but as soon as i click on backup the whole bar turns yellow. is there any way to clear all of itunes databases to clear this out?
    maybe the reason why it won't work is becasue i encrypted the backup on the other mac? or the passcode was changed?? but i can still import pictures with iphoto
    i dont think i have to restore the iphone. because its backing up to a different mac perfectly fine with no issues. . but the newer mac doesn't have the movies that are on the older mac's library
    things i have tried
    disable passcodes and find my iphone. i thought this would get past itunes not knowing the passcode
    reset lockdown folder
    delete itunes and delete mobile device helper and reinstall itunes
    signing out and singing in to the apple store numerous times
    making sure itunes login is the same on the iphone and ipad
    i was going to try deleting the entire library and re-adding it. but i dunno if this will help with devices
    then i was going to try erasing and reinstalling os x
    but i thought i would ask here first.

    i found out this is a bug in iTunes 11.4
    if you have older machine and you are 32 bit and running snow leopard , iTunes is broken
    this is a special version of iTunes for 10.6 users , here is the link
    http://support.apple.com/kb/dl1774?viewlocale=en_US

  • CS4 Apps not launching after install

    Hi,
    I have an imac running OSX 10.5.6, with CS2 installed on it. This morning I received my CS4 upgrade discs. The installation ran without a problem. I opened CS4 Photoshop with no problem, then I opened CS4 Acrobat...a window popped up asking for a serial number (odd I thought) so I put in my CS4 serial number, but it didn't work. I decided to restart the machine. After restart none of the apps would launch, they appear in the doc for a few seconds and then close up. Acrobat will launch briefly, but it asks for my computer password, after that it says I need to launch another CS 4 app bc it is part of a suite and acrobat closes. CS4 Bridge is the only app that will launch and stay opened. So with the exception of Bridge and Acrobat (which doesn't really open in the end) all the other apps just appear on the doc for a few secs and then close.
    I was on and off the phone with tech support for about 6 hours, installing, uninstalling (CS2 and 4 using maccs3clean) making new user logins, using safe boot, more uninstalling and reinstalling. Then they tell me they are out of ideas and will need to do research and since it's Friday, I won't hear from them again until Monday. Obviously this is a bit aggravating.
    Does anyone have any idea what could be causing this? I'd almost say the discs were duds, but after that first installation I was at least able to open PS without a hitch, but the trouble seemed to start when I opened acrobat, and it asked for a serial number.
    Thanks in advance.

    Hi Dov,
    Thanks for chiming in. After several hours of phone time with  tech support, they had no answers and said that would have to get back to me Monday. But I’ve found the solution on a forum and it literally took me less than a minute to do. I removed the "FLEXnet Publisher" folder from the Preferences folder that’s within the Library folder. All CS4 apps opened right up without a problem.

Maybe you are looking for

  • ViewObject & Horizontal ScrollBar

    Hi All, I need to use 2 view object with the same number of column on a page jspx. I want to use only one horizontal scrollbar. How can I get the horizontal scrollbar position on one view and set the horizontal scrollbar position of the other one? In

  • SCREEN PAINTER Layout not working

    Hi, we have SAP Netweaver 7.0 Trial version, we are using SAP GUI 710, when we try to view the SCREEN PAINTER Layout it is not functioning properly.. The screen displays fully in dotted lines. Anybody can help me.. Regards, Sudhakar N

  • Help installing without cd/dvd drive

    Hello, I just bought the Adobe Creative Suite 6, except I do not have a dvd drive in my computer because it is a macbook retina. Can I download the products from online and just enter the serial number? Thanks Sam

  • Tds5034b library

     Hello everyone, Im Looking for a tds5034b library can anyone help me? I have a problem on saving waveform screen capture in my computer, I found a VI on this thread TDS5034 but the waveforn only save on OSCILLOSCOPE drive , i want to save my capture

  • Now to delete a RAC database manually

    Hi, Could someone provide the neccessary steps to drop a rac database manually? I ran dbca to delete the database. It hanged after delete the datafiles. I run dbca again and still shows the database as disabled but is not able to remove it. Thanks Gu