Hi all, im obviously very new to this all.the problem i am having is we switched servers recently and the majority of the site is working perfectly. but the part where we accept payments is on a secure license elsewhere and when saves the order it sends it to the old databaseso we cant see it on the new one, i have simply copied and pasted the connection code from the 'working' pages and over-wrote where it would connect to the old database.<!--#include file="adovbs.inc"--><%Dim connProdDim connOrd Dim nVAT,sVATnVAT = 0.15 sVAT = "15"Sub f_setConnProd() If StrComp(TypeName(connProd),"Nothing")=0 Then Set connProd = Server.CreateObject("ADODB.Connection") 'connProd.Open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=79.99.43.20; DATABASE=discountb1; UID=discountb1;PASSWORD=******; OPTION=3" connProd.Open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=CIServer12; DATABASE=BathroomBitsb1; UID=discountb1;PASSWORD=******; OPTION=3" 'connProd.Open "DSN=productsbb4u" ElseIf Not IsObject(connProd) Then Set connProd = Server.CreateObject("ADODB.Connection") 'connProd.Open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=79.99.43.20; DATABASE=discountb1; UID=discountb1;PASSWORD=******; OPTION=3" connProd.Open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=CIServer12; DATABASE=BathroomBitsb1; UID=discountb1;PASSWORD=******; OPTION=3" 'connProd.Open "DSN=productsbb4u" Else End ifEnd SubSub f_setConnOrd() If StrComp(TypeName(connOrd),"Nothing")=0 Then Set connOrd = Server.CreateObject("ADODB.Connection") 'connOrd.Open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=79.99.43.20; DATABASE=discountb1; UID=discountb1;PASSWORD=******; OPTION=3" connOrd.Open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=CIServer12; DATABASE=BathroomBitsb2; UID=discountb2;PASSWORD=******; OPTION=3" 'connOrd.Open "DSN=ordersbb4u" ElseIf Not IsObject(connOrd) Then Set connOrd = Server.CreateObject("ADODB.Connection") 'connOrd.Open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=79.99.43.20; DATABASE=discountb1; UID=discountb1;PASSWORD=******; OPTION=3" connOrd.Open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=CIServer12; DATABASE=BathroomBitsb2; UID=discountb2;PASSWORD=******; OPTION=3" 'connOrd.Open "DSN=ordersbb4u" Else End ifEnd SubThe commented parts are where it would connect to the old database.please if anyone can help please do, the error i receive is Microsoft OLE DB Provider for ODBC Drivers error '80004005'[MySQL][ODBC 3.51 Driver]Unknown MySQL server host 'CIServer12' (11004)/discount-bathroom-suites-uk/assets/includes/includes.asp, line 19 Those files are on one FTP and we have files on another. The one on the other is perfect, those connection work. but the 'secure' side thats the one thats problematic.