Problem with the external PHP function

I'm working on a registration page. This is the list of instructions that I have that must be met for the registration succeed:

If (isset($_POST['register']))
{
If ($_POST ['username']! = ")
& & (strlen($_POST['username']) > = 4)
& & (strlen($_POST['username']) < = 20)
& & alpha_numeric($_POST['username']) == TRUE
& & $_POST ['password']! = ''
& & (strlen($_POST['password']) > = 4)
& & (strlen($_POST['password']) < = 20)
& & alpha_numeric($_POST['password']) == TRUE
& & $_POST ['mot_de_passe2'] == $_POST ['password']
& & $_POST ['email']! = ''
& & valid_email($_POST['email']) == TRUE
& & $_POST ["email2"] == $_POST ['email']
& & $_POST ['accepts'] == TRUE
& & checkUnique ('user_data', 'username', $_POST ['username']) = TRUE
(& & checkUnique ('user_data', 'email', $_POST ['email']) == TRUE)

External functions "checkUnique' at the bottom just do not seem to work. I can easily sign up with a username or email that already exists in the database.

This is the code for the external function:

function checkUnique ($table, $field, $compared)
{
$query = mysql_query ("SELECT '.mysql_real_escape_string ($field)'. OF ".mysql_real_escape_string ($table)." WHERE ' ".mysql_real_escape_string ($field)." " ' = "'.mysql_real_escape_string ($compared).'"')";

If (mysql_num_rows ($Query) == 0)
{
Return TRUE;
}
on the other
{
return FALSE;.
}
}

AngryCloud wrote:
> External functions "checkUnique' at the bottom just don't seem to work.
> I'm easily able to sign with a username or an email that is already in the
> database.

No, it won't work: you are surrounding the name of the field in quotation marks.
You should also remove magic quotes if they are enabled. Change of the
function to this:

function checkUnique ($table, $field, $compared) {}
If (magic_quotes_gpc()) {}
$table = stripslashes ($table);
$field = stripslashes ($field);
$compared = stripslashes ($compared);
}
$table = mysql_real_escape_string ($table);
$field = mysql_real_escape_string ($field);
$compared = mysql_real_escape_string ($compared);

$result = mysql_query ("SELECT $field FROM $table
WHERE $field = '$compared' ");
{if (mysql_num_rows ($result) == 0)}
Return TRUE;
}
else {}
return FALSE;.
}
}

Of course, you will also need to connect to MySQL and select
the database before calling the function.

--
Adobe Community Expert David Powers
Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/

Tags: Dreamweaver

Similar Questions

  • Error - there is a problem with the external Setup program and it must be closed when you try to install windows updates

    Original title: How can I fix external MSI?

    When I try to download the updates, the error message says there is a problem with the external Setup program and it must be closed.  Updates will not be installed.  Anyone know how to solve this problem...?

    Hi John,.

    ·         You are able to install other applications on the computer?

    It seems to be a problem with the corruption of the .net framework. I suggest trying to repair the .net framework on the computer and see if you can install the updates.

    http://support.Microsoft.com/kb/923100

    Hope the helps of information.

  • Problems with the external monitor W540 connection

    Hi, maybe someone can help me. I'm trying to connect a W540 (no external dock) to an external monitor Dell.

    I tried with two monitors, but none work.

    Connected via VGA port on the side of the W540

    (1) connected monitor and clogged up the resolution of the screen on laptop (lines icons tiny, black on each side of the screen). External monitor works fine. When unplugged, it went back to the previous screen resolution.

    (2) laptop registered resolution and icon size of the screen as a profile.

    (3) external monitor connected right click options graphics Intel, insured was custom display, main display plus external monitor, then had to go in a re - click on the name of the saved profile.

    (4) this worked ok until the next day, when turned on laptop and a blue screen. Managed to get this back hard by restarting and completed the steps in N3

    (5) cannot get the Nvidia Control Panel to display anything else than the 3D options, even if it make the default value (instead of the Intel graphic card)

    Can anyone offer some so that I can connect an external monitor without having to go through all this hassle every time? Why this affects the laptop so bad (and also, it runs very slowly after that)

    Running Windows 8 (but with the interface of Windows 7)

    Thank you very much

    Thank you. A quick update, I contacted Lenovo, and they sent the updated bios drivers. I also uninstalled some software Canon MP Navigator and Lenovo EMC Discovery (http://support.lenovo.com/us/en/documents/ht081844?tabName=Solutions). One or all of them seem to have solved the problem, including the slow start.

  • Problem with the assignment of functions to the keyboard. Help, please!

    Hello

    I'm trying to get the help of the keys on the keyboard to control the navigation of the timeline. I use the code AS3 work the first time, but a little crazy then past and stops working for some reason any. You are supposed to be able to navigate along the timeline with the arrow keys (go back)

    I'm sure there is an easy solution to this problem but I am new to AS3 and it cannot know.

    Any info would be greatly appreciated.

    See you soon.

    Code on the first frame of the timeline (left label)

    Stop()

    stage.addEventListener (KeyboardEvent.KEY_DOWN, f1_KeyDownHandler_3);

    function f1_KeyDownHandler_3(event:KeyboardEvent):void

    {

    switch (event.keyCode)

    {

    Case Keyboard.LEFT:

    {

    gotoAndStop ('Center')

    break;

    }

    Case Keyboard.RIGHT:

    {

    gotoAndStop ('left')

    break;

    }

    }

    }

    Code used on the fifth framework of timeline (Center label)

    Stop()


    stage.addEventListener (KeyboardEvent.KEY_DOWN, f1_KeyDownHandler_2);


    function f1_KeyDownHandler_2(event:KeyboardEvent):void



    {

    switch (event.keyCode)

    {


    Case Keyboard.LEFT:

    {

    gotoAndStop ('left')

    break;

    }

    Case Keyboard.RIGHT:

    {

    gotoAndStop ('right')

    break;

    }

    }

    }

    Code used on frame timeline tenth (good label)

    Stop()


    stage.addEventListener (KeyboardEvent.KEY_DOWN, f1_KeyDownHandler_3);


    function f1_KeyDownHandler_3(event:KeyboardEvent):void


    {

    switch (event.keyCode)

    {


    Case Keyboard.LEFT:

    {

    gotoAndStop ('Center')

    break;

    }

    Case Keyboard.RIGHT:

    {

    gotoAndStop ('left')

    break;

    }

    }

    }

    You must remove the earphone prior actions such as:

    Stop();

    stage.addEventListener (KeyboardEvent.KEY_DOWN, f1_KeyDownHandler_1);

    function f1_KeyDownHandler_1(event:KeyboardEvent):void
    {

    switch (event.keyCode)
    {

    case Keyboard.LEFT:

    {
    stage.removeEventListener (KeyboardEvent.KEY_DOWN, f1_KeyDownHandler_1);
    gotoAndStop ('Center');
       
    break;

    };

    case Keyboard.RIGHT:

    {
    stage.removeEventListener (KeyboardEvent.KEY_DOWN, f1_KeyDownHandler_1);
    gotoAndStop ('left');

    break;

    }

    }
    }

  • Problems with the print screen function

    I have 2 PCs, one with a monitor 17' and the other with a 24 "monitor: I use the screen function print on both the PC with a 17 '' monitor prints normally, but the one with the 24" print screen WIDE, is it possible I can do the PC with the monitor 24 "print normally as the monitor 17" don't?

    Hi David,

    Please contact the Microsoft community. We will be happy to help you with your concern.

    According to the description, screenshot image is large and you want to get it in normal size. Am I wrong?

    Screenshot should give a 1:1 copy of the screen, you can check the zoom value, but it will be set to 1 x when you open it.

    Please send us a screenshot of the screen so that we can check that the size and let you know.

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-security/how-do-i-post-a-screen-shot-on-this-forum/c86de820-C620-401c-A804-9f6337cd3053

    Thank you

  • I have a problem with the external hard drive not detected on the computer as a disk.

    I connected an external hard drive toshiba via USB on this victory 8 x 64 computer that is also a toshiba and the computer doesn't show as a reader in fact it shows that he as a device so what gives. This thing have not even a letter such as C: (what internal hard drive) I watch the little arrow to show you, it is prudent to remove it so it appears here, what does I have a drive bad ext or what? Oh yes, I have tried all my ports even

    Hello

    I suggest you to assign a drive letter for the external hard drive and see if it helps.

    To do:

    a. press the Windows key + R and type diskmgmt.msc.

    (b) if the hard drive recognized in disk management and if there is no drive letter assigned, I suggest you do a right click on the drive and assign a drive letter and check if it helps.

    c. right click paths and the drive letter Change.

    Do one of the following:

    ·         To assign a drive letter if it has not already received, click Add, click the letter you want to use and then click onOK.

    ·         To change a drive letter, click change, click on assign the following drive letter, click the letter you want to use and then click on OK.

    d. restart the computer and check.

    Hope that the external hard drive will not be detected after that.

    Please report if you encounter any problems related to Windows and we will be happy to help you.

  • problems with the external table to excel file

    Hi all
    I tried to use the statement below to create an external table.this table refers to an excel file.

    CREATE TABLE EMPFRAUD_TEST
    (
    SERIAL_NUM WHICH VARCHAR2 (10 BYTE),
    BRANCH_CODE VARCHAR2 (10 BYTE),
    BUSINESS_ADD VARCHAR2 (100 BYTE),
    VARCHAR2 (50 BYTE) REGION,
    DATE OF TRANSACTION_DATE_TIME,
    DATE OF REPORT_DATE_TIME,
    NO_OF_TRANS VARCHAR2 (4 BYTE),
    NUMBER OF AMOUNT,
    FRAUD_TYPE VARCHAR2 (25 BYTE),
    IMPACT_CATEGORY VARCHAR2 (10 BYTE)
    )
    EXTERNAL ORGANIZATION
    (TYPE ORACLE_LOADER
    THE DEFAULT DIRECTORY EXT_EMP_TEST
    ACCESS SETTINGS
    (records delimited by newline
    BadFile "empfraud%a.bad."
    logfile "empfraud%a.log".
    fields completed by «,»
    surrounded of possibly ' "'lrtrim"
    missing field values are null
    )
    LOCATION ("fraud.csv")
    )
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;

    the problem is the following
    (1) when I run the query above the table will be created,
    but when I try to select in the table, an empty table display.
    When I checked the error log file, the following message was given.
    It was obtained from an oracle on unix Server database.

    'L_NUM '.
    KUP-04036: second enclosing delimiter not found
    KUP-04101: Save 71 rejected in the /home/oracle/ext_folder_test/fraud.csv file
    KUP-04021: field error for the field formatting ACCOUNT_KEY
    KUP-04036: second enclosing delimiter not found
    KUP-04101: Save 79 rejected in the /home/oracle/ext_folder_test/fraud.csv file
    KUP-04021: field formatting of error for the serial_num field which
    KUP-04036: second enclosing delimiter not found
    KUP-04101: Save 80 rejected in the /home/oracle/ext_folder_test/fraud.csv file
    column in treatment of TRANSACTION_DATE_TIME error in the row 1 for the /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01858: a non-digit character was found here where was waiting for a digital
    column in treatment of TRANSACTION_DATE_TIME error in line 2 to the /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01843: not one month valid
    column in treatment of TRANSACTION_DATE_TIME error on line 3 for the /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01843: not one month valid
    column in treatment of TRANSACTION_DATE_TIME error in row 8 for the /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01843: not one month valid
    column in treatment of TRANSACTION_DATE_TIME error in line 9 to the /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01843: not one month valid
    column in treatment of TRANSACTION_DATE_TIME error in line 10 by /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01843: not one month valid
    column in treatment of TRANSACTION_DATE_TIME error at line 11 to the /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01858: a non-digit character was found here where was waiting for a digital
    column in treatment of TRANSACTION_DATE_TIME error in line 12 to the /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01843: not one month valid
    column in treatment of TRANSACTION_DATE_TIME error in the 13th for the /home/oracle/ext_folder_test/fraud.csv data file row
    ORA-01843: not one month valid
    column in treatment of TRANSACTION_DATE_TIME error in line 14 to the /home/oracle/ext_folder_test/fraud.csv data file
    ORA-01843: not one month valid
    column in treatment of TRANSACTION_DATE_TIME error in row 15 for the /home/oracle/ext_folder_test/fraud.csv data file
    "ORA-01843: not one month valid."


    pls I need help to fix it fast
    Thank you

    concerning
    Abdulrahman olayide arpin

    NB:
    After the conversion to .csv format.
    HERE IS THE DATA THAT I'M TRYING TO ACCESS THE EXCEL FILE

    REGIONS, Transaction_Date_Time, Report_Date_Time, Account_Key (account number), BUSINESS OFFICE, Number_of_Transactions, Total_Amount (N)
    Ojo 1,162,9 Street, South of Lagos, various, 17 January 00, CHECK
    2,0238, "10 cyril Road, Enugu", Orient, 21/06/2006,23/12/10,020968765357 09867653920174,1,20000000
    3,0127, '261, Roland Rd, Asaba', Midwest, 22/12/2010,23/12/10, 1,'00160030006149, 6000000
    4,0519, 'just road, Onitsha.
    ', East, 12/03/2010,14/02/11,0896002416575,1,5000000.
    5,0519, 'just road, Onitsha.
    ", Orient, 03/12/2010,14/02/11,06437890134356,1,5000000.
    6 149, rue olayide, South NGN01492501036 of Lagos, 10/02/2010,17/02/11, 1,6108950
    7,0066, wale, mi - west,18/02/2011,18/02/10,'05590020002924,1,55157977.53
    8.66, john, Mid-west, 6787500, 1,'00660680054177 11/03/2010,14/03/09
    Waheed 9,0273, Biem, N/central, Jan 09 Dec/2010,01/04/11, Nile, 1, 14146040
  • Problem with the CAE policy function

    Hi all
    I'm trying to set the tables of data with the DTV and get "ORA-28112: cannot run the political function" error when I query the table.
    ---------------------------------------------------------------------------------------------------------------------------
    -My diagram is "sales".
    grant Ridge no matter what context of balances;

    -created the context by using this statement
    create or REPLACE context sales_APP_CTX using PKG_SECURITY ACCESSIBLE on a GLOBAL scale;

    -Package specifications
    CREATE or REPLACE PACKAGE PKG_SECURITY
    function vpd_sec_pol_func return varchar2;
    procedure set_sales_app_context (p_user varchar2, p_security_level varchar2);
    end;
    /


    -package body
    CREATE or REPLACE PACKAGE BODY PKG_SECURITY
    ---------------------------------------------------------------------------------------------
    function vpd_sec_pol_func return varchar2 is

    -v_user varchar2 (100): = UPPER (portal.wwctx_api.get_user);
    Start
    If not for the user ("SALES", "ORACLE") then
    return ' State in (select State from app_user_states where user_id = sys_context ("SALES_APP_CTX", "APP_USER"))';
    on the other
    Returns a null value.
    end if;
    end;
    ---------------------------------------------------------------------------------------------
    procedure set_sales_app_context (p_user varchar2, p_security_level varchar2) is
    Start
    DBMS_SESSION.set_Context ('SALES_APP_CTX', 'APP_USER', p_user);
    -dbms_session.set_context ('SALES_APP_CTX', 'SECURITY_LEVEL', p_security_level);
    end;
    ---------------------------------------------------------------------------------------------
    end;
    /

    -The policy has added to the table
    Start
    dbms_rls.add_policy
    (object_schema = > 'SALES')
    object_name = > "SALES_SUMMARY"
    POLICY_NAME = > "SALES_SUMMARY_POLICY"
    function_schema = > 'SALES. "
    policy_function = > ' PKG_SECURITY. VPD_SEC_POL_FUNC',.
    statement_types = > 'SELECT, INSERT, UPDATE, DELETE.
    update_check = > TRUE);
    end;

    -I was able to put into context using sqlplus in running the procedure
    exec ('TEST_USER', 'R') PKG_SECURITY.set_sales_app_context;
    ---------------------------------------------------------------------------------------------------------------------------

    What I am doing wrong?

    Thank you

    Hello

    ORA-28112 only tells you that there is real error messages in a trace file on the database server. I forgot if the trace file is generated in the bdump or udump directory. Post messages.

    The political function should look like this:

    FUNCTION policy_function (object_schema IN VARCHAR2, object_name VARCHAR2)
            RETURN VARCHAR2 
    

    You don't have to use the arguments (I do not usually), but they have to be there. The system will call your function with two arguments of VARCHAR2, so he must accept two arguments of VARCHAR2.

  • Problems with the external program

    I create programs programmer with a string. A job will be created to launch the channel. One of these programs Planner will have to call a file is under windows. Everything goes well with the exception of which translates an error indicating that the process cannot find the files referenced in the external program.

    Here is the error of the battery being captured in the job log.

    CHAIN_LOG_ID = "16735", STEP_NAME = "L90_ARCHLOGRMANBACKUP", ORA-27370: slave to the job could not launch EXECUTABLE type work
    ORA-27300: dependent operation of the OS: access enforcement officer failed with the State: 2
    ORA-27301: OS Error Message: the system cannot find the specified file.
    ORA-27302: an error occurred in: 6a sjsec
    ORA-27303: additional information: the system cannot find the specified file.

    This is the code I used to create the program:

    BEGIN
    SYS. DBMS_SCHEDULER. CREATE_PROGRAM
    (
    program name = > "RTDB. ARCHLOGRMANBACKUP'
    , program_type = > 'EXECUTABLE '.
    , program_action = > ' C:\WINNT\system32\CMD. EXE'
    number_of_arguments = > 3
    activated = > FALSE
    , comments = > 'runs a RMAN backup compressed all archive logs generated by this process.
    );

    SYS. DBMS_SCHEDULER. DEFINE_PROGRAM_ARGUMENT
    (
    program name = > "RTDB. ARCHLOGRMANBACKUP'
    , argument_name = > "
    argument_position = > 1
    , argument_type = > "VARCHAR2".
    , default_value = > "/ q"
    );

    SYS. DBMS_SCHEDULER. DEFINE_PROGRAM_ARGUMENT
    (
    program name = > "RTDB. ARCHLOGRMANBACKUP'
    , argument_name = > "
    argument_position = > 2
    , argument_type = > "VARCHAR2".
    , default_value = > "/ c".
    );

    SYS. DBMS_SCHEDULER. DEFINE_PROGRAM_ARGUMENT
    (
    program name = > "RTDB. ARCHLOGRMANBACKUP'
    , argument_name = > "
    argument_position = > 3
    , argument_type = > "VARCHAR2".
    , default_value = > 'C:\oracle\product\OraDB102\admin\DTOD\work\RMAN_ARCH_OPENDOR.bat '.
    );

    SYS. DBMS_SCHEDULER. ENABLE
    (name = > ' RTDB.) ARCHLOGRMANBACKUP');
    END;
    /

    To verify that the files referenced in the above code and paths are correct, I spent to the DB host and run the following command from the beginning... Run:

    C:\WINNT\system32\CMD. EXE/q/c C:\oracle\product\OraDB102\admin\DTOD\work\RMAN_ARCH_OPENDOR.bat

    It works very well.

    Someone at - it ideas?

    Thank you

    -Joe

    Hey Joe,

    What you run here are steps of external string, which are transformed into external work when they are executed (see steps chain) upwards in the view of all_scheduler_jobs so that they are running.

    All restrictions for outdoor work hold for the external chain so that you will always have to make sure that the agent Scheduler service is running as a user who has the logon as batch windows privilege and upward.

    A simple external task works for you? If this is not you should probably get that working first and then debug your chain example later.

    Hope this helps,
    Ravi.

  • Problems with the screen capture function

    Very well. I've read the help file on the computer and perform a search on screen captures on the forums, I found the help file.

    My screenshot function does not work. I tried different combinations of buttons according to what each recommended help file and it does not work.

    I worked with other operating systems that allow the user to enter a settings menu and manually configure a key for the screenshots.  Is this possible with vista?  If Yes, where can I find it?  The help files are a little vague.

    I should also mention that I am not the first owner of this laptop, so it is quite possible that the previous owner has changed a setting somewhere along the way.

    Any help is appreciated. Thank you.

    PrintScreen and ALT + PrintScreen are the usual combinations.  Check the manual for your specific computer model to see if using a different combination. See if paste in a program other than Paint made work.
    Boulder computer Maven
    Most Microsoft Valuable Professional

  • I ve using Muse for quite some time now. I love. But when you use the latest version and a new website I have a problem with the FTP export function.

    I've never had this happen before? I ve used Muse for a long time now and it has always worked well.

    Download Muse ONLY php and css files when I use export to the FTP host. No html? It has never happened before.

    If I export to HTML and use my regular FTP program to transfer to the correct host folder it works fine.


    In fact, if I try to update the site of work of Muse, to load on the FTP host, Muse removes html files in the folder and the site no longer works...

    Anyone?

    Please try to check if the exported file includes all of the files, try to export again in a new folder, and then check.

    Thank you

    Sanjit

  • Problem with the creation and display of intelligent insights

    I have a problem with the intelligent preview function. I use Lightroom 6.4 on Windows 10.

    • When I hit the "Original Photo" icon under the histogram in the develop Module, nothing happens: the remans icon exactly the same and no record Preview Smart is created in the catalog folder.
    • When I create a Smart overview in the library Module (library-> Previews-> generate Smart previews), a Preview Smart folder is created in the catalog folder, BUT , in the module development, l ' icon below the histogram says still 'Original Photo': it does not seem to recognize that a smart preview is available.

    Any idea?

    Rob.

    If everything works as you want, so you can leave the open Historgram.

  • Hello! Someone has some problem with the haptic on Macbook 12 "2016 function? It does not work on my Mackbook.

    I'm trying to figure if someone has my problem with the haptic on Macbook 12 "2016 function. The option is checked in the preferences system, but it does not work.

    Thank you

    Hello luigi10m,

    Thanks for posting on the Community Support from Apple. From your post, it looks like your haptic feedback does not work when you click using your trackpad and the setting is enabled. I know that this is a great feature and it is important to make it work. I'll be happy to help you.

    First of all, I would like to assure you that in system preferences > Trackpad > clicking silencer is not checked, that might help. In addition, it would be useful to reset the settings of the SCM. You can find instructions here: reset the management system (SCM) controller on your Mac - Apple Support

    I'll also include those for you here:

    1. Stop the Mac.
    2. Plug the MagSafe or USB - C adapter to a power source and to your Mac.
    3. Use the built-in keyboard, press shift-control-Option on the left side of the keyboard, then press the power button at the same time.
    4. All the keys to unlock, then press the power button to turn on your Mac

    Take care!

  • Problem with the search function

    I use firefox 10 and I have a problem with the search feature. If the word that I will try to find begins with the capital letter I can't find with control function if I write the word only with small letters. a the opposite. For example, if the word is 'Letter' I can't find this word if I type 'letter' in the search bar

    Is the option 'Option match case' in the verified search bar? If so, uncheck it.

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

    Not related to your question, but...

    You may need to update some plug-ins. Check your plug-ins and update if necessary:

  • Kalonline-works until I get the anti-piracy icon so stop saying: there is a problem with the function of anti-hacking

    I play kalonline (RPG game), when to start the game it works up until I get the anti-piracy icon so stop saying: there is a problem with the function of anti-hacking. the program stops. I am the admin of it say kal computer run it in administrator mode and I did and I delete and reinstall the game. Solve the problem in win 7 by a right click and run as administrator, they wanted to work in win xp it all fits on how to solve this problem. These are the things, I was told to do to fix it.
    Hello

    It comes to KalOnline.

    Your error message can be corrected by following these steps:

    1. run KalOnline in Administrator Mode.

    2 uninstall KalOnline d_lete the entire Inixsoft folder, then reinstall the game.
    I did it and and it has not worked. then I was told that this was causing the problem

    Please check your computer system.

    This problem has occurred by a kind of problem of piracy.

    And if you have used a kind of memory-editing program, it could be happen too.

    So if your receipt similar to, then please remove it.
    I have none of these things on my computer. All I know is that people who have not updated windows xp can play the game and people who win 7 can play the game if they right click icon and run as administrator, that I still say side here but no way to prove it.

    Hello

    I suggest you to get in touch with the manufacturer of games and see if there are any other fix for this problem.

Maybe you are looking for

  • Re using the little Apple tv box

    Bought recently on tv - small box Apple. The initial surprise, it's that I can't play a program of BBC iplayer on my iphone on the TV.  It works like this, but why are there no BBC iplayer apple TV box menu option? ITV Hub option or? Seems a little a

  • Why my iPhone more than 6 freezes?

    Why my iPhone more than 6 freezes?

  • Firefox 29,0: Commands tool do not show

    Just updated to the latest version. and miss me the following commands in the toolbar that I had installed previously. These commands are not displayed to the top, when I try to customize the toolbar. 1 Refresh button of the browser.2. stop button lo

  • HP 7 G2 1311 / J5T72AA: HP 7 G2 1311 - only restart

    Good afternoonI have the following problem: I have a Tablet HP7 g2 1311 that constantly and automatically reboots in standby, then it takes longer to restart than normal, sometimes also blocks, so I have to press the power button (to be noted that in

  • Pavilion g7-1368dx upgrade to A8 - 3500M, does not start

    My Pavilion g7-1368dx came with a processor A6 - 3420M.  I have the BIOS f.52 (works very well for months).  I tried to upgrade the processor to an A8 - 3500M (same 35W TDP, socket FS1, and turbo 1.5GHz/2.4GHz) for a boost of graphics (400 vs 320 sha