Jump to content

jamaicarocks

Members
  • Posts

    294
  • Joined

  • Last visited

    Never
  • Speed Test

    My Results

Posts posted by jamaicarocks

  1. Good day,

                  I downloaded a file an it comes with the extension .DAA, I use Daemon tools to try and open it but with no luck, any suggestions please.

    Thanks alot

  2. Wuz up,

              I have a clients computer to convert from Win Vista to WinXp, but installing via autorun in Windows doesnt work, and when boot from XP cd an try to format, it cant see the drive.Any reasons why please. I need to delete Vista an install xp.

    Model Laptop:

    IBM T60p

    Thanks !

  3. yes it's an internal mail server, I'm not behind a DMZ, but I made some changes to ma ISA server , not sure if that is causing it,.....so I just allowed all traffic from the mail server an that didnt solve it either, and I dont suspect that it's the ISA causing this error

  4.   There was a SMTP communication problem with the recipient's email server.  Please contact your system administrator.

                <server.domain.com #5.5.0 smtp;550-5.7.1 [72.26.170.000] The IP you're using to send email is not authorized >

  5. well it all just happened out of the blue.......well not sure when it started but I noticed it after I configed SSL for the OWA users.

    yes they are in Active Directory

    And no, I dont see any problem with exchange connections

  6. wuz up,

            This is what my Mirosoft exchange server 2003 is sying when I try to send mail, I can receive mail but not send

            [my ip address]  The IP you're using to send email is not authorized .....

    help please!

    Bless up

  7. Wuz up,

    can anyone recommend where, i can get some smiles for my website to buy or otherwise?,"testmy's"smiles are good too. 

    Thank you       

  8. well that aint the prob becuz ,I config GP to disconnect session when idle and to end sessions when their inactive for 2 min.

    For the second part ,dont know what your saying so...

  9. hail wad up,

                        I vpn to a remote loccation an then try to remote desktop,but i get this error:

    1 Remote Dekstop Might not be enable ont the remote computer..(which it is).

    2)Maximum number of connections were exceeded for the remote computer

    (kinda immpossible becuz I'm the only one trying to do it at the time)

    3)A network error has occured at the time.

    Anyone can give assistance with this please it's urgent.

    Thank you..

  10. Wuz up,

    I built a SQL database with Godaddy,and also a end user interface using visual basic for new users to enter their name an info and it goes str88 to the Sql Database.......I created a string for it to be linked,I'm however getting a runtime error.Could anyone take a look at the code and also the web.config to see what could be the problem..

    Thank you

    The web.config file

    <!-- Web.Config Configuration File -->

    <configuration>

        <system.web>

            <customErrors mode="Off"/>

        </system.web>

    <appSettings>

    <add key="conString" value="Server=whsql-v09;UID=etech;PWD=server;Database=DB_136130">

    </appSettings>

    </configuration>

    The end-user interface I built in VB:

    <%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" Debug="true" %>

    <%@ import Namespace="System.Data" %>

    <%@ import Namespace="System.Data.SqlClient" %>

    <script runat="server">

        dim username as string

        dim password as string

        Dim dr As SqlDataReader

        Dim dr1 As SqlDataReader

        dim dbcon as new sqlconnection("Data Source=whsql-v09;Initial Catalog=DB_136130;User Id=etech;Password=server;")

        dim dt as new DataTable

        dim dr2 as DataRow

        dim CallTotal as double

       

        Sub btnLogin_Click(sender As Object, e As EventArgs)

        dim cmd as new SqlCommand

              dim param as sqlparameter

              username = txtusername.Text

              password = txtpassword.Text

       

       

              cmd.CommandText = "spSelectWebMember"

              cmd.CommandType = CommandType.StoredProcedure

              cmd.connection = dbcon

              cmd.Connection.Open()

       

              param = New SqlParameter

                param.ParameterName = "@username"

                param.SqlDbType = SqlDbType.VarChar

                param.Value = username

                cmd.Parameters.Add(param)

       

       

        param = new SqlParameter

              param.ParameterName = "@password"

                param.SqlDbType = SqlDbType.VarChar

                param.size = 50

                param.Value = password

       

                cmd.Parameters.Add(param)

       

              dr = cmd.executereader()

       

       

       

                if dr.read() then

                if username = dr.item("username") and password= dr.item("password1") then

                  Session("fname") = dr.item("firstname")

                  Session("lname") = dr.item("lastname")

                  Session("email") = dr.item("email")

                  Session("lphone") = dr.item("username")

                  Session("time") = dr.item("timezone")

                  Session("cust") = dr.item("custID")

                  Session("countryt") = dr.item("country1")

                  Session("user") = dr.item("username")

                  Session("statea") = dr.item("state")

                  Session("pass") = dr.item("password1")

                'create session variables

        cmd.Connection.Close()

       

        dim temp as string

        temp = Session("cust")

       

        load2(temp)

              Response.Redirect("viewhistory1.aspx")

       

       

        end if

                end if

       

       

       

       

       

       

        End Sub

        sub load2(key as string)

        dim cmd1 as new SqlCommand

       

              ' username = txtusername.Text

              'password = txtpassword.Text

              dim sql1 as string

              sql1 = "select * from customerActivation where custId='"+key+"'"

       

              cmd1.CommandText = sql1

              cmd1.CommandType = CommandType.Text

              cmd1.connection = dbcon

              cmd1.Connection.Open()

       

              dr1 = cmd1.executereader()

       

              if dr1.read() then

       

       

              Session("jnum")= dr1.item("jamaicaNumbers")

              Session("pin") = dr1.item("pinNumber")

              Session("madd") = dr1.item("macAddress")

              Session("snum") = dr1.item("serialNumber")

       

              'msgbox("d")

       

                end if

       

        end sub

    </script>

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

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

    <head>

        <title>Digital Office Solutions Ltd</title>

        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

        <style type="text/css">.mainborder {

    BORDER-RIGHT: #666666 thin solid; BORDER-TOP: #666666 thin solid; BORDER-LEFT: #666666 thin solid; BORDER-BOTTOM: #666666 thin solid

    }

    .style10 {

    FONT-SIZE: 12px; FONT-FAMILY: Arial, Helvetica, sans-serif

    }

    .style33 {

    COLOR: #000000

    }

    .style9 {

    FONT-WEIGHT: bold; FONT-SIZE: 14px; FONT-FAMILY: Arial, Helvetica, sans-serif

    }

    .style23 {

    COLOR: #ff7300

    }

    BODY {

    BACKGROUND-COLOR: #ffffff

    }

    .style28 {

    FONT-WEIGHT: bold; FONT-SIZE: 36px; COLOR: #ffffff; FONT-FAMILY: Arial, Helvetica, sans-serif

    }

    .style37 {

    FONT-SIZE: smaller; COLOR: #ffffff; FONT-FAMILY: Arial, Helvetica, sans-serif

    }

    .style40 {

    FONT-SIZE: smaller; FONT-FAMILY: Arial, Helvetica, sans-serif

    }

    .style41 {

    FONT-WEIGHT: bold; COLOR: #5db9de

    }

    .style42 {

    COLOR: #5db9de

    }

    </style>

        <script type="text/JavaScript">

    <!--

    function MM_preloadImages() { //v3.0

      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();

        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)

        if (a.indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a;}}

    }

    //-->

    </script>

    </head>

    <body>

        <form runat="server">

            <table width="70%" align="center" border="0">

                <tbody>

                    <tr>

                        <td>

                            <table bordercolor="#60bade" width="100%" align="center" border="1">

                                <tbody>

                                    <tr>

                                        <td width="90%">

                                            <img height="75" src="images/slogan2.gif" /></td>

                                        <td width="30%">

                                            <img height="57" src="images/logo_cw.gif" width="112" /></td>

                                    </tr>

                                    <tr>

                                        <td bgcolor="#5db9de" colspan="2">

                                            <table width="75%" align="center" border="0">

                                                <tbody>

                                                    <tr>

                                                        <td width="11%">

                                                            <a href="index.html"><img height="24" alt="h" src="images/home.gif" width="100" border="0" /></a></td>

                                                        <td width="11%">

                                                            <a href="product.html"><img height="24" alt="Plans" src="images/plans.gif" width="100" border="0" /></a></td>

                                                        <td width="11%">

                                                            <a href="morefeatures.html"><img height="24" alt="features" src="images/features.gif" width="100" border="0" /></a></td>

                                                        <td width="11%">

                                                            <a href="account.aspx"><img height="24" alt="account" src="images/account.gif" width="100" border="0" /></a></td>

                                                        <td width="11%">

                                                            <a href="comparison.html"><img height="24" alt="compare" src="images/compare.gif" width="100" border="0" /></a></td>

                                                        <td width="11%">

                                                            <img height="24" alt="about" src="images/about.gif" width="100" border="0" /></td>

                                                        <td width="11%">

                                                            <a href="support.html"><img height="24" alt="help" src="images/support.gif" width="122" border="0" /></a></td>

                                                        <td width="23%">

                                                            <a href="mailto:[email protected]"><img height="24" alt="contact" src="images/contact.gif" width="100" border="0" /></a></td>

                                                    </tr>

                                                </tbody>

                                            </table>

                                        </td>

                                    </tr>

                                    <tr>

                                        <td width="90%">

                                            <img height="117" alt="S" src="images/welcome.jpg" width="100%" align="right" /></td>

                                        <td width="30%">

                                            <img height="120" src="images/about.jpg" width="100%" /></td>

                                    </tr>

                                    <tr>

                                        <td>

                                            <p class="style41">

                                                Phone Number Format: 555-555-5555

                                            </p>

                                            <table width="60%" align="center" border="1">

                                                <tbody>

                                                    <tr>

                                                        <td colspan="2">

                                                            <div class="style41" align="center">Please Enter Login Information

                                                            </div>

                                                        </td>

                                                    </tr>

                                                    <tr>

                                                        <td>

                                                            <span class="style42">Phone Number </span></td>

                                                        <td>

                                                            &nbsp;<asp:TextBox id="txtusername" runat="server"></asp:TextBox>

                                                        </td>

                                                    </tr>

                                                    <tr>

                                                        <td>

                                                            <span class="style42">Password</span></td>

                                                        <td>

                                                            &nbsp;<asp:TextBox id="txtpassword" runat="server"></asp:TextBox>

                                                        </td>

                                                    </tr>

                                                    <tr>

                                                        <td colspan="2">

                                                            &nbsp;

                                                            <div align="center">

                                                                <asp:Button id="btnLogin" onclick="btnLogin_Click" runat="server" Text="Login"></asp:Button>

                                                            </div>

                                                        </td>

                                                    </tr>

                                                    <tr>

                                                        <td colspan="2">

                                                            &nbsp;

                                                            <div align="center"><a href="../../Voip/forgotpw.aspx">Forgot your password? </a>

                                                            </div>

                                                            <div class="style4 style6" align="center"><span class="style42">Not Registered?</span> (<a href="signupa.aspx">Register</a>)

                                                            </div>

                                                        </td>

                                                    </tr>

                                                </tbody>

                                            </table>

                                            <p>

                                            </p>

                                            <p>

                                            </p>

                                        </td>

                                        <td bgcolor="#5db9de">

                                            <table class="mainborder" width="166" align="center" border="0">

                                                <tbody>

                                                    <tr>

                                                        <td>

                                                            <p class="style9" align="center">

                                                                Quick Navigate

                                                            </p>

                                                            <p class="style10">

                                                                <span class="style33">&gt;&gt; <a href="signupa.aspx">SignUp !</a>&nbsp;<br />

                                                                &gt;&gt; <a href="troubleshoot.html">Troubleshooting Guide</a>

                                                                <br />

                                                                &gt;&gt; Installation Guide</span>

                                                            </p>

                                                        </td>

                                                    </tr>

                                                </tbody>

                                            </table>

                                            <p>

                                            </p>

                                            <table class="mainborder" width="166" align="center" border="0">

                                                <tbody>

                                                    <tr>

                                                        <td>

                                                            <p class="style28" align="center">

                                                                <span class="style23"></span><a href="signupa.aspx"><img height="100" src="images/SIGN-1.gif" width="174" border="0" /></a>

                                                            </p>

                                                        </td>

                                                    </tr>

                                                </tbody>

                                            </table>

                                            <p>

                                            </p>

                                            <p>

                                            </p>

                                        </td>

                                    </tr>

                                    <tr>

                                        <td bgcolor="#5db9de" colspan="2">

                                            <div align="center"><span class="style37">Copyright 2007 D.O.S Ltd. Powered by sardonyxABS</span>

                                            </div>

                                        </td>

                                    </tr>

                                    <tr>

                                        <td bgcolor="#ffffff" colspan="2">

                                            <div class="style40" align="center"><a href="index.html">Home</a> | <a href="international.html">International

                                                Rates</a> | <a href="addon.html">Add-ons</a> | <a href="morefeatures.html">Features</a> | <a href="terms.html">Terms

                                                of Use</a> | <a href="help.html">Help</a> | <a href="product.html">Products</a> | <a href="comparison.html">Compare

                                                NetSpeak</a>

                                            </div>

                                        </td>

                                    </tr>

                                </tbody>

                            </table>

                        </td>

                    </tr>

                </tbody>

            </table>

            <p>

            </p>

        </form>

    </body>

    </html>

  11. Wuz up,

                  My client has this site that she streams daily videos from and they play in Windows Media player, she wants to record them and play them back later.....Anyone knows any software that can do this?

    Bless up!!

  12. Hey wuz up,

                      I recently got a new IBM T60 laptop,and everything cris,but my sound is extremely low, an mi do everythin related to sound to turn it up,but same ting.Anybody know anything can help

    Bless up

  13. Yea I checked it out@ Dlewis but cant find any installation text in english,but I presume it's also the same process as the "flashchat" and the "123 chat server" I want to implement.......So I guess were back to sqaure 1,or if you know of any other chat room programs I could try ...

×
×
  • Create New...