I have a problem with a CS6 dynamic table creation

I have 2 tables, 1 of them is caled 'user', the other a "cars" they are inked with a foreign key in the table of cars there is a column called UserID and takes the value of "user", so my question is I tried to make it dynamic table when the user is connected to display its cars that have his Userid on them only unfortunetly when I do this I get a blank table with nothing in it anyone can help me solve this problem. This is the code I use:

<? php require_once('Connections/MyConnection.php');? >

<? PHP

initialize the session

If (! isset {})

session_start();

}

* Log out the current user. **

$logoutAction = $_SERVER ['PHP_SELF']. » ? doLogout = true;

If ((isset & & ($_SERVER ['QUERY_STRING']! = "")) {})

$logoutAction. = '& '. htmlentities($_SERVER['QUERY_STRING']);

}

{If ((isset($_GET['doLogout'])) & & ($ {_GET ['doLogout'] == "true"))}

to completely disconnect a visitor, you must delete the session varialbles

$_SESSION ['MM_Username'] = NULL;

$_SESSION ['MM_UserGroup'] = NULL;

$_SESSION ['PrevUrl'] = NULL;

unset($_SESSION['MM_Username']);

unset($_SESSION['MM_UserGroup']);

unset($_SESSION['PrevUrl']);

$logoutGoTo = "/ cars/LogOut.php";

If {($logoutGoTo)

Header ("Location: $logoutGoTo");

"exit";

}

}

? >

<? PHP

If (! isset {})

session_start();

}

$MM_authorizedUsers = '1', 2;

$MM_donotCheckaccess = "false";

Restrict access to Page: grant or deny access to this page

Function isAuthorized ($strUsers, $UserGroup, $strGroups, $UserName) {}

For safety, first assuming that the visitor is NOT allowed.

$isValid = false;

When a visitor is connected to this site, the MM_Username of Session variable value equal to their username.

So, we know that a user is NOT logged if this Session variable is empty.

If (! empty ($UserName)) {}

In addition to being connected, you can restrict access to only certain users based on a created ID when they connect.

Analyze the channels in the tables.

$arrUsers = explode (",", $strUsers);

$arrGroups = explode (",", $strGroups);

If (in_array ($UserName, $arrUsers)) {}

$isValid = true;

}

Or, you can restrict access to only certain users based on their user name.

If (in_array ($UserGroup, $arrGroups)) {}

$isValid = true;

}

If (($strUsers == "") & & false) {}

$isValid = true;

}

}

return $isValid;

}

$MM_restrictGoTo = "/ cars/Home.php";

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";

}

? >

<? PHP

If (! function_exists ("GetSQLValueString")) {}

function GetSQLValueString ($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")

{

If (via PHP_VERSION < 6) {}

$theValue = get_magic_quotes_gpc()? stripslashes ($TheValue): $theValue;

}

$theValue = function_exists ("mysql_real_escape_string")? mysql_real_escape_string ($TheValue): mysql_escape_string ($theValue);

Switch ($theType) {}

case 'text ':

$theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";

break;

case "long":

case "int":

$theValue = ($theValue! = "")? intval ($TheValue): 'NULL ';

break;

case "double":

$theValue = ($theValue! = "")? doubleVal ($TheValue): 'NULL ';

break;

case "date":

$theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";

break;

case "set":

$theValue = ($theValue! = "")? $theDefinedValue: $theNotDefinedValue;

break;

}

Return $theValue;

}

}

If (! function_exists ("GetSQLValueString")) {}

function GetSQLValueString ($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")

{

If (via PHP_VERSION < 6) {}

$theValue = get_magic_quotes_gpc()? stripslashes ($TheValue): $theValue;

}

$theValue = function_exists ("mysql_real_escape_string")? mysql_real_escape_string ($TheValue): mysql_escape_string ($theValue);

Switch ($theType) {}

case 'text ':

$theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";

break;

case "long":

case "int":

$theValue = ($theValue! = "")? intval ($TheValue): 'NULL ';

break;

case "double":

$theValue = ($theValue! = "")? doubleVal ($TheValue): 'NULL ';

break;

case "date":

$theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";

break;

case "set":

$theValue = ($theValue! = "")? $theDefinedValue: $theNotDefinedValue;

break;

}

Return $theValue;

}

}

$maxRows_cars = 10;

$pageNum_cars = 0;

If (isset($_GET['pageNum_cars'])) {}

$pageNum_cars = $_GET ['pageNum_cars'];

}

$startRow_cars = $pageNum_cars * $maxRows_cars;

$colname_cars = "-1";

If (isset($_SESSION['MM_Username'])) {}

$colname_cars = $_SESSION ['MM_Username"];

}

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_cars = sprintf ("" SELECT * FROM cars WHERE UserID = %s ", GetSQLValueString ($colname_cars,"int")");

$query_limit_cars = sprintf ("%s LIMIT %d, %d", $query_cars, $startRow_cars, $maxRows_cars);

$cars = mysql_query ($query_limit_cars, $MyConnection) or die (mysql_error ());

$row_cars = mysql_fetch_assoc ($cars);

If (isset($_GET['totalRows_cars'])) {}

$totalRows_cars = $_GET ['totalRows_cars'];

} else {}

$all_cars = mysql_query ($query_cars);

$totalRows_cars = mysql_num_rows ($all_cars);

}

$totalPages_cars = ceil($totalRows_cars/$maxRows_cars)-1;

$colname_user = "-1";

If (isset($_SESSION['MM_Username'])) {}

$colname_user = $_SESSION ['MM_Username"];

}

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_user = sprintf ("SELECT * FROM 'user' WHERE Email = %s", GetSQLValueString ($colname_user, "text") ");

$user = mysql_query ($query_user, $MyConnection) or die (mysql_error ());

$row_user = mysql_fetch_assoc ($user);

$totalRows_user = mysql_num_rows ($user);

$colname_user = "-1";

If (isset($_SESSION['MM_Username'])) {}

$colname_user = $_SESSION ['MM_Username"];

}

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_user = sprintf ("SELECT FirstName, LastName FROM 'user' WHERE Email = %s", GetSQLValueString ($colname_user, "text") ");

$user = mysql_query ($query_user, $MyConnection) or die (mysql_error ());

$row_user = mysql_fetch_assoc ($user);

$colname_User = "-1";

If (isset($_SESSION['MM_Username'])) {}

$colname_User = $_SESSION ['MM_Username"];

}

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_User = sprintf ("SELECT * FROM 'user' WHERE Email = %s", GetSQLValueString ($colname_User, "text") ");

$User = mysql_query ($query_User, $MyConnection) or die (mysql_error ());

$row_User = mysql_fetch_assoc ($User);

$colname_User = "-1";

If (isset($_GET['MM_Username'])) {}

$colname_User = $_GET ['MM_Username"];

}

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_User = sprintf ("SELECT * FROM 'user' WHERE Email = %s", GetSQLValueString ($colname_User, "text") ");

$User = mysql_query ($query_User, $MyConnection) or die (mysql_error ());

$row_User = mysql_fetch_assoc ($User);

$colname_User = "-1";

If (isset($_SESSION['MM_Username'])) {}

$colname_User = $_SESSION ['MM_Username"];

}

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_User = sprintf ("SELECT * FROM 'user' WHERE Email = %s", GetSQLValueString ($colname_User, "text") ");

$User = mysql_query ($query_User, $MyConnection) or die (mysql_error ());

$row_User = mysql_fetch_assoc ($User);

$colname_User = "-1";

If (isset($_SESSION['MM_Username'])) {}

$colname_User = $_SESSION ['MM_Username"];

}

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_User = sprintf ("SELECT * FROM 'user' WHERE UserID = %s", GetSQLValueString ($colname_User, "int") ");

$User = mysql_query ($query_User, $MyConnection) or die (mysql_error ());

$row_User = mysql_fetch_assoc ($User);

? >

< ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

" < html xmlns =" http://www.w3.org/1999/xhtml ">

< head >

< link href = "CSS/Layout.css" rel = "stylesheet" type = "text/css" / > "

< link href = "CSS/Menu.css" rel = "stylesheet" type = "text/css" / > "

"< link href="/Cars/CSS/VerticalMenu.css "rel ="stylesheet"type =" text/css"/ >

< meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

< title > Untitled Document < /title >

< / head >

< body >

< div id = 'Holder' >

< div id = "Header" >

< div id = "HeaderContentRight" >

< table width = "0" border = "0" align = "right" >

< b >

< td > logged in as: <? PHP echo $row_user ["FirstName"];? > <? PHP echo $row_user ['name'];? > < table >

< td > < a href = "<?" PHP echo $logoutAction? > "> sign out < /a > < table >"

< /tr >

< /table >

< / div >

< / div >

< div id = "NavBar" >

< nav >

< ul >

"< li > < a href="/Cars/HomeAccount.php "> home < /a > < /li >

< /ul >

< / nav >

< / div >

< div id = "Content" >

< div id = "PageHeading" >

Welcome < h1 >, <? PHP echo $row_user ["FirstName"];? > <? PHP echo $row_user ['name'];? >! < / h1 >

< / div >

< div id = "ContentLeft" >

Control Panel < h6 > < / h6 >

< p > < / p >

< ul id = "MyMainMenu" >

< li > < a href="/Cars/Account.php" > account < /a > < /li > ".

< li > < a href="/Cars/UpdateAccount.php" > update account < /a > < /li > ".

< li > < a href="/Cars/CarManagment.php" > car management < /a > < /li > ".

< /ul >

< / div >

< div id = "ContentRight" >

< table border = "1" align = "center" >

< b >

CarBrand < td > < table >

CarModel < td > < table >

YearOfProduction < td > < table >

< /tr >

<? PHP {? >}

< b >

< td > <? PHP echo $row_cars ["CarBrand'];? > < table >

< td > <? PHP echo $row_cars ["CarModel'];? > < table >

< td > <? PHP echo $row_cars ["YearOfProduction"];? > < table >

< /tr >

<? PHP} while ($row_cars = mysql_fetch_assoc ($cars));? >

< /table >

< / div >

< / div >

< div id = "Footer" > < / div >

< / div >

< / body >

< / html >

<? PHP

mysql_free_result ($CARS);

mysql_free_result ($User);

? >

Thank you for your time!

Nowhere on this page I see that you have found the "UserID" variable that is used to query the database of cars everywhere.

You must get that table "user" when a successful connection occurred.

Go to your login page and find the code which queries the database (it will look something like the below, your request will be slightly different)

$LoginRS__query = sprintf ("SELECT username, password loginUsers WHERE username = %s AND password is %s",

MAKE SURE YOU add to THE QUERY "UserID" (see below.) This is the column of your 'user' table and the foreign key record unique identifier in your table 'cars')

$LoginRS__query = sprintf ("SELECT UserID, username, password AND password loginUsers WHERE username = %s is %s",

Then, find the lines of code below:

$LoginRS = mysql_query ($LoginRS__query, $MyConnection) or die (mysql_error ());

$loginFoundUser = mysql_num_rows ($LoginRS);

Include these two lines of code directly after the above code:

$row = mysql_fetch_assoc ($LoginRS);

$UserID = $row ['UserID']

Can find these lines of code:

If {($loginFoundUser)

$loginStrGroup = "";

Declare two session variables and assign them

$_SESSION ['MM_Username"] = $loginUsername;

$_SESSION ["MM_UserGroup"] = $loginStrGroup;

Add this line of code directly after the above code:

$_SESSION ['username'] = $UserID;

Now, go to the login page of success (whatever you call that)

Find the code at the top of the page below:

If (! isset {})

session_start();

}

Add the line of code below:

If (! isset {})

session_start();

$userID = $_SESSION ['username'];

}

Look for the query:

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_cars = sprintf ("" SELECT * FROM cars WHERE UserID = %s ", GetSQLValueString ($colname_cars,"int")");

$query_limit_cars = sprintf ("%s LIMIT %d, %d", $query_cars, $startRow_cars, $maxRows_cars);

$cars = mysql_query ($query_limit_cars, $MyConnection) or die (mysql_error ());

$row_cars = mysql_fetch_assoc ($cars);

and replace with:

@mysql_select_db ($database_MyConnection, $MyConnection);

$query_query_cars = "SELECT * FROM cars WHERE userID ="$userID "";

$query_cars = mysql_query ($query_query_cars, $MyConnection) or die (mysql_error ());

$row_query_cars = mysql_fetch_assoc ($query_cars);

$totalRows_query_cars = mysql_num_rows ($query_cars);

Now, you can pass the details of the car associated with the user ID in the 'user' table and a foreign key in the table "cars."

You probably want to use a / while loop to get all the information from the database. With a DW repeat region behavior.

Tags: Dreamweaver

Similar Questions

  • CC of Dreamweaver may have a problem with Dreamweaver CS6 compatibility?

    I installed Dreamweaver CC on my laptop (Windows 7 OS).  I am able to build new web pages using the checkerboard to fluid.  But when I try to open previously designed web pages that have been built using Dreamweaver CS6, Dreamweaver CC breaks down.

    I was told today in the cat, by Technical Support, it was a problem of compatibility between Dreamweaver CC and Dreamweaver CS6 (for grid of fluid).  This can be confirmed?  I have no problem to return and rebuild previously designed fluid grid of web pages.  I just want to know that there is no fix/work around available?

    Problem solved.  It lacked the brace "}" involving the Media Queries page .css.  (Please see my response to Arindam_G in the Discussion 'Crash Total (CC) on the attempt of fluid to create checkerboard!').

    Thanks for the help of your group.

  • I have major problems with Photoshop CS6 after the upgrade of Windows 8 to 10 of Windows.

    Just upgraded to Windows 10. I had 0 issues before upgrading my system. When I first opened the program I couldn't use any tool correctly because the jury of art was covered in black and flashing/alternating between black and transparent background. I have close to reopen and try again. Now I can't even open Photoshop at all. I get an error indicating that the program has stopped working. From now on, it seems that it is only of Photoshop with the question and not my other CS programs. How can I fix? He couldn't start comes at the worst time in the middle of a project.

    Hi dropj

    Thanks for the update.

    Here are a few steps you can try

    • In Photoshop, check open Cl must be enabled in preferences > performance > advanced settings. Also check how is the VRAM

     

    Then try to work in Photoshop in there

    • Temporarily disable the use of your card from the Device Manager and try to use Photoshop.

    Concerning

    Assani

  • I have a problem with the cs6 download master collection

    A message appears that says that the following disk images could not be opened MasterCollection_CS6_ of incorrect checksum

    Eitehr download again using anotehr browser or try manualyl mount the image via your disk utility, possibly disable check of control...

    Mylenium

  • I have Photoshop CS6 and Lightroom 5.7. They are currently installed on a PC with Windows 8.1 Professional 32-bit and 4 GB of RAM. I want to move to a PC with Windows 8.1 Professional 64 bit and 32 GB of memory, because I have a problem with the large

    I have Photoshop CS6 and Lightroom 5.7. They are currently installed on a PC with Windows 8.1 Professional 32-bit and 4 GB of RAM. I want to move to a PC with Windows 8.1 Professional 64 bit and 32 GB of memory, because I have a problem with the large RAW from a Canon 5 Ds R. What should I do?

    You install exactly in the same way you did the 1st time... Put your disc in the drive, and enter your serial number when asked

    Download & install instructions https://forums.adobe.com/thread/2003339 can help

    -includes a link to access a page to download the Adobe programs if you do not have a disk or drive

    Also go to https://forums.adobe.com/community/creative_cloud/creative_cloud_faq

  • Hello, I have a problem with nvidia quadro k4200. in AE CS6 is not compatible? Why? Please?

    Hello, I have a problem with nvidia quadro k4200. in AE CS6 is not compatible? Why? Please?

    jasonf18090788 wrote:

    I saw on the Adobe site that the video card is compatible with AE Pr, but not work.

    Where have you seen that? It is not on the list of the AE: system requirements | After Effects

    Keep in mind that After Effects uses only the GPU for one, outdated thing. GPU very little matter for AE. See this: features GPU (CUDA, OpenGL) After Effects CS6 and after effects CC

  • Hello I am a student and I have a problem with the tool Selection (V). When I opened the file AI CC with CS6 selection tool doesn't allow me to change the selection. What can I do? (I have reinstall AI CC and the problem persists)

    Hello I am a student and I have a problem with the tool Selection (V). When I opened the file AI CC with CS6 selection tool doesn't allow me to change the selection. What can I do? (I have reinstall AI CC and the problem persists)

    Ivan,

    If it's on the rectangular objects, you may have encountered the bug Rectangle Live which is limited to the MAC versions from 10.7 and 10.8, but not of 10.9 (Mavericks) or 10.10 (Yosemite). If all goes well, the bug will be fixed soon.

    Thus, a switch for the Mavericks or Yosemite with a reinstall might be the way to solve it here and now.

    To get around it, in each case, it is possible to develop direct Rectangles to get the normal old shaped rectangles or Pathfinder > unit, or use the scale tool or the free transform tool.

    A more permanent way round that is to create normal old shaped rectangles, after running the free script created by Pawel, see this thread with download link:

    https://forums.Adobe.com/thread/1587587

  • I have some problems with the Flash cs6 work

    I have a problem with my game when I created it using adobe flash cs6

    When the duck strikes the screen, from right to left as it shows

    TypeError: Error #1009: cannot access a property or method of a null object reference.

    Duck / ducksmove)

    at flash.utils::Timer/_timerDispatch()

    at flash.utils::Timer/tick()

    This is the code so please help check that does not

    package {}

    import flash.display.MovieClip;

    import flash.utils.Timer;

    import flash.events.TimerEvent;

    import flash.events.MouseEvent;

    Duck/public class extends MovieClip {}

    var moveDuck:Timer = new Timer (10);

    var speedX:Number;

    public void Duck() {}

    this.addEventListener (MouseEvent.CLICK, KillDuck);

    moveDuck.addEventListener (TimerEvent.TIMER, ducksmove);

    moveDuck.start ();

    speedX = 10;

    }

    function ducksmove(evt:TimerEvent):void

    {

    This.x = speedX;

    If (this.x < = 0)

    {

    moveDuck.stop ();

    moveDuck.removeEventListener (TimerEvent.TIMER, ducksmove);

    this.parent.removeChild (this);

    }

    }

    function KillDuck(evt:MouseEvent):void

    {

    var p:MovieClip = this.parent as MovieClip;

    p.setScore ();

    p.UpdateCount ();

    this.removeEventListener (MouseEvent.CLICK, KillDuck);

    this.parent.removeChild (this);

    moveDuck.addEventListener (TimerEvent.TIMER, ducksmove);

    }

    }

    }

    You seem to be trying to delete the same object twice, in the KillDuck function, then in the ducksmove function.  If it is removed already you can not try to remove it again because it is no longer in the display list.

  • I have a problem with the resolution of Photoshop 6.

    I have a problem with the resolution on my laptop my laptop Lenove userface has a resolution of 3200 x 1800, my 2560 external monitor x 1440, and on two monitors of the user, the interface is so low that I can't read anything. What I am doing wrong.

    On my screen, that the same thing is happening with Bridge and Lightroom, on my laptop, these 2 programs are ok. I use on my Lenovo Windows 8, on my second laptop, I am running Windows 7 and here, I have no problems. I would really appreciate the help.

    There is nothing to do. CS6 does not support displays high-resolution.

    Mylenium

  • I have Production Premium with Encore CS6.  I created my first HD project, tested and received no error but when I went to 'Building' my project still on a BluRay disc, I got the error message "ERROR CORE 03".  How do I get this project on a B

    I have Production Premium with Encore CS6.  I created my first HD project, tested and received no error but when I went to 'Building' my project still on a BluRay disc, I got the error message "ERROR CORE 03".  What should I do to get this project on a BluRay disc?

    In response to both Richard & Stan.  I received the error message ""device error", Code '3' notes Create Sequence of STC: cannot write file M25.»  Or something very similar to this, but I think it was exactly that.  It was my first HD project but used several times to make projects sustainable development without problems that were not of my own creation.  So it was a shock and cost me money and the failure to meet a deadline.  What I did: on-screen 'Build '.

    Format: Blu - ray,

    Output: Blu - ray Image,

    Source: Currrent project,

    Destination: I Browse... d a location appropriate.  He managed a Blu - ray image.

    Using reminder once again, step 2 - on-screen 'Build '.

    Format: Blu - ray,

    Released: Blu - ray Disc,

    Source: Disk Image,

    Destination: my disc drive that holds a blank Blu - ray disc.  He managed a Blu - ray disc.

    Then I found a job step 2 autour for the problem.  My question is this: I pay $70.00 / month ca to the people Adobe cloud to keep their software up to date and work as advertised.  I do not think I should spend a few hours and lose money looking for a problem created Adobe not yet keeping cs6, updated and works as promised.  I submit my first bug report.  My suspicion is that adobe considers that Blu - ray is out of style, and they do not care to correct this bug in still cs6.

    I'd love to know the thoughts of others on this.

  • I have a problem with the download of Indesign CS 6 part 1 (Mac), it always stop at 6.8 MB download!

    As the title said, I have a problem with the download of Indesign CS 6 part 1 (Mac), it always stop at 6.8 MB download (about 1.2 GB). I tried to restart my mac, using the different browser but it's always the same result... Any help?

    Try this site

    Download Adobe CS6 Trials: Direct links (without Assistant or Manager) | ProDesignTools

  • I have intermittent problems with iphoto importing from iphone since 0sx 10.11.6. Update

    I have intermittent problems with iphoto importing from iphone since 0sx 10.11.6. -Update

    1 iphoto sees not iphone - restart

    2 iphoto sees iphone but says "no pictures" - restart

    3 Iphoto sees phone and photos and I click Import all or import selected - then I have problem of file format and nothing is imported

    NOTE: I have similar problems with image capture - sometimes you can see the phone and photos, and sometimes is not

    I have an imac 2015 - execution of yosemite

    Help my new iphone because 7 is coming today and I am terrified of the transfer.

    Not sure, but in any case iPhoto is a dead - it would be really smart to learn pictures (a totally new and different program with a learning curve and different workflows)

    With the help of pictures with my new iPhone 7 and iCloud photo library all works well without any problem - nothing different photos with my iPhone except the news and the best quality Photos 5

    LN

  • Sierra Siri, «I have some problems with the connection...» »

    Guys,

    I just installed Sierra on my MacBook Pro (retina, 13 inches, early 2015) version 10.12. I can't get Siri at work, the app tracks, he hears what I'm saying, but after awhile, he returns with two messages, both on the screen and verbally "I have some problems with the internet connection. Please try again in a moment. "&"Sorry, I'm having problems with the connection. Please try again in a moment. »

    Any ideas?

    Thank you

    N

    It's a network problem.

    Check the proxy settings that blocks maybe, or a firewall.

    System Preferences > network > Advanced (for your current connection) > Proxies

    Something there?

  • I have a problem with backing up my iPhone iPad iPod

    I have a problem with the backup of my iDevices! When I tried to backup my iPhone 6 + 128 GB phone iTunes says that I didn't have enough memory. My Macbook has more than a hundred free GBs the phone was not backed up! We need an external option to BU on hard drive. My macbook is limited, and when I go out at sea there is no internet. I have a 128 GB iPhone an ipod 32GB one iPad 64-32 and 256 GB. Not having is not an option for using the disc in iTunes is to limit this I'll have to rethink my support of apple products and recommendations to buy. Quote the file number *.

    < personal information deleted by host >

    One that tells you that you can not keep the iTunes library on an external drive is incorrect.

    iTunes: how to move your music to a new computer (Mac or Windows):

    http://support.Apple.com/kb/HT4527

    The process of moving iTunes from a computer on an external drive is the same.

  • I bought the new iphone 6 s more and I have not configured, I just opened the phone and charged, but after some time it stop by itself, is this normal or I have a problem with my phone?

    I bought the new iphone 6 s more and I have not configured, I just opened the phone and charged, but after some time it stop by itself, is this normal or I have a problem with my phone?

    You need to activate the phone. There is nothing that the phone can not be activated.

Maybe you are looking for

  • disconnected from the macbook, then found

    recently lost my iPod touch so had to put in lost, then clear, then possibly disconnect from my mac, I have now found, but that they don't know how to reconnect

  • APS - c lenses on fs7

    Hello. I have a question on the APS - C sensor Sony lenses (got a bit for my a6000). Taking into account the crop factor of 1.39 x on the Super 35 mm sensor the FS7, what is the advantage of using lenses full frame on FS7? And can I use APS - C lense

  • Unable to get network password so can plug in ipod

    Original title: PASSWORD RECOVERYNetwork network adapter NIC Wireless Ethernet network device We have my computer 3 laptops and my iphone and cant get password to CHEYENNE-PC network so can plug ipod girl forgotten password, we have a router hook up

  • List Mobile Favorites to Windows XP 8.1

    Suggestions on how move Windows 8.1 Windows XP media edition Favorites list?  Is there a particular file to copy into "sneaker net"?

  • Hotmail does not load...

    my hotmail does not load up, just a blank page and its showing its busy. If anyone can help...