Jump to content

kabucek

Member
  • Posts

    100
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by kabucek

  1. Hello, Our idea here is to migrate NetWare network to windows. We want to setup SBS 2008 on new server that we purchased. I have installed SBS 2008 Standard on HP 350 ML G5. We want to setup this server as Domain Controller. I'm following the steps from Demo that is available on microsoft website. Installation was successful without any errors. Server was not connected to the network during the installation. I connected server to network after installation. Currently this Server is connected to the small switch and switch to network. My problem is when I'm trying to run option "Connect to the Internet" from the SBS Console. I'm getting screen that is attached on the picture. I can't do "postpone" or "continue". If I click on "Manage router" I'm getting login screen to Netware WebAccess from server. I can't setup any other options, because it gives me errors that interface was not found or domain not found, no connection found, etc. Is there a way that I can bypass this Step? Is this really the first step in setting up sbs 2008? Is there better manual than this demo from microsoft? Thanks
  2. hello @LL, is this piece of code correct ? $showTotalShippingPrice=number_format($totalShippingPrice,2); //calc tax if(strtolower($memberDataArray['state'])=='il') { // Patch by someone // Fixes "divide by zero" error. if(!isset($discountedProdPrice) || $discountedProdPrice <= 0) { $discountedProdPrice = 1; } if(!isset($totalProdPrice) || $totalProdPrice <= 0) { $totalProdPrice = 1; } $discountFraction=$discountedProdPrice/$totalProdPrice; $taxExclusionDiscountTotal=$taxExclusionRetailTotal; $taxableAmount=$discountedProdPrice-$taxExclusionDiscountTotal; $taxableAmount=number_format($taxableAmount,2); $taxRate=.085; $taxRate=.09; $tmp=$taxRate*100; $showTaxRate=number_Format($tmp, 2)."%"; $totalTax=number_format(($taxableAmount)*$taxRate, 2); $totalTax=max(0,$totalTax); //with discounts, total tax can go negative $showTotalTax=$totalTax; if ($taxExclusionDiscountTotal>0) { $taxExclusionNotificationString=" - <SPAN style=color:green><SPAN style=font-size:120%>+</SPAN> $dollarSign$taxExclusionDiscountTotal non-taxable</SPAN>, $dollarSign$taxableAmount taxable at $showTaxRate "; } else { $taxExclusionNotificationString=" - $showTaxRate "; } if ($nonTaxableItemFound=='true') { $promotionMsg.=" <DIV class=processMsgSuccess>'+' (plus sign) signifies non-taxable item</DIV> "; } } else { $totalTax=0; $showTotalTax=number_format($totalTax, 2); } thanks
  3. interesting. i'm looking for something lite that I can develop some scripts on the train or on the fly on my bb. Something that will give me some independent shell. For this app I assume I would need to be in network connection all the time. thanks
  4. ok, then is there a way to put linux shell on blackberry device? or some kind of terminal ? thanks
  5. yes i did that also, and I tried to load like 20 other distr's that I was able to find on wiki.. and other sites. but the same RED site result.
  6. v5 i think this is the crappy router that you can't upgrade.
  7. hello i want to upgrade firmware on linksys router from this instructions: http://www.dd-wrt.com/wiki/index.php/Suppo...Devices#Linksys but when I browse for the file and click Upgrade in linksys interface(browser) i got UPGRADE FAILED(RED COLOR) everytime. any suggestions how to solve this? thanks
  8. hello all, i'm looking for software that will send incremental backup files to ftp or nas device and send email reports to admins. i didn't found good software that will be capable of that. ntbackup and syncback are excluded thanks,
  9. hi all, how to make mail.domain.com point the OWA on MAILserver? thanks
  10. hello all, is there a way that we can open/explore .bkf files? maybe altnernate software for ntbackup that will open this extension? thanks
  11. line: 8 error: variable is undefined: 'strFiles' do i need to do change the strFiles ? thanks
  12. i've tried this: Dim N, NewName, objFolder, objFSO, strFolder, strNewDest, V1 N=Now strFolder="L:\" strNewDest = "Q:\" Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFolder = objFSO.GetFolder(strFolder) For Each strFiles In objFolder.Files If InStr(strFiles.Path,".log") Or InStr(strFiles.Path,".Log") Or InStr(strFiles.Path,".LOG") Then If DateDiff("d",N, strFiles.DateLastModified) = -1 Then '-> Split The Name To Get 2 Parts NewName= Split(strFiles.Name,".") '-> Replace The First NewName V1 = Replace(NewName(0),"bobo") '-> Copy The File To It New Name objFSO.CopyFile strFiles , strNewDest & "\" & V1 & "." NewName(1), True End If End If Next then i got this : Line: 15 char: 62 Expected end of statement not sure what next.. thanks
  13. I want to search for latest file with .log extension and then copy that file to new destination with new filename i have couple scripts and i'm trying to do in many ways but maybe you will find better one. this will find newest file, that is ok but how to copy that file instead of echo it ? thanks Set objFSO = CreateObject("Scripting.FileSystemObject") Set oFolder = objFSO.GetFolder("L:\") seedDate = CDate("1/1/1970") For Each oFile In oFolder.Files If Right(oFile.Name,3) = "log" Then If oFile.DateLastModified > seedDate Then NewestFile = oFile.Name seedDate = oFile.DateLastModified End If End If Next Sub CreateReportFile 'Creates or overwrites the report file in the directory of this script Set objReportFile = objFSO.CreateTextFile("report.TXT", True) Call WriteReportLine("Report created: " & Date & " at " & Time, 0) Call WriteReportLine("*Turn off word-wrap to view cleanly" & vbCrLf, 0) Call WriteReportLine("Starting Left Directory - " & objLeftDir, 0) Call WriteReportLine("Starting Right Directory - " & objRightDir, 0) End Sub WScript.Echo NewestFile
  14. hi all, i have the following script, and I want to change the name of destination file to something.txt, how to do it? N=Now Set objFSO = CreateObject("Scripting.FileSystemObject") strFolder="L:\" strNewDest = "Q:\" Set objFolder = objFSO.GetFolder(strFolder) For Each strFiles In objFolder.Files If DateDiff("d",N, strFiles.DateLastModified) = -1 Then objFSO.CopyFile strFiles , strNewDest & "\" & strFiles.Name End If Next thanks
  15. hi all, i have setup ntbackup for daily jobs, it's working ok, reports/backups, but there is one thing that is weird to me. NTbackup is running in the background and I can't see it on my screen. i can see it on the task manager but not on screen. how to bring it back to desktop ?? thanks
  16. hi all, when i select some text in excel , copy and go to outlook and open new message the excel kill itself without saying any word. Any ideas why this is happening? i'm using office 2003 thanks
  17. so is there any way to get around that ?
  18. hi all, i have Techwell TW6800 cctv card and i want to use it for security cameras on my ubuntu system with ZoneMinder, but i don't have drivers for that card. I've done already many searches on the web but without any success. anyone has ideas where can i get the drivers ? thanks
  19. hi all, i'm using frontpage 2003 for my websites and i have problem with css, because the website looks ok in IE 6 but looks different in IE7 and in mozilla. anyone know how to solve this ? thanks
  20. hi all, is there a way to install linux on blackberry? thanks
  21. Hi all, I want to create a dropdownbox with 4 selections, and I want to create hyperlink to each of those selections. I know I can do this with this code: ------------------------------------------------------- <form name="AutoListBox"> <p><select name="ListBoxURL" size="1" language="javascript" onchange="gotoLink(this.form);"> <option value="URL#1.htm">Place 1 </option> <option value="URL #2.htm">Place 2 </option> <option value="URL#3.htm">Place 3 </option> <option selected> -- Select to Jump -- </option> </select></p> <script language="JavaScript"> <!-- function gotoLink(form) { var OptionIndex=form.ListBoxURL.selectedIndex; parent.location = form.ListBoxURL.options[OptionIndex].value;} //--> </script> </form> ---------------------------------------------------------- But this will give the down arrow next to each selection. Is there a way to create the same thing but without that small arrow? Thanks.
  22. Hi all Is there a way to secure your attachment (pdf file) that, when you send it to others they will not be able to forward that file to other people? Thanks
  23. Hi all Does anyone know how to create rankings in frontpage? similar to : http://shopping.yahoo.com/merchrating/user...hant_id=1000027 or to something like amazon.com have? http://www.amazon.com/New-Kind-Science-Ste...m/dp/1579550088 thanks
  24. Hi all, I have setup 2 account on my device. First one is from exchange- which is my work email. Second one from gmail account. It is working fine, but when I go to folder with work emails it shows also emails received from gmail account. I don't want that!! Any ideas how to fix it ?? thanks.
  25. kabucek

    smtp on xp

    Hi all, I want to setup form inside the FrontPage. I have the website created and setup. I have installed smtp service in xp, but I don't know how to setup this that it will work with Frontpage 2003 when I want to put my email address in the form options that it will send out the email from feedback form to my email. Thanks.
×
×
  • Create New...