Os9 connection scripts usable in os x?

Hello,
I was having problems with my powerbook making connections over a phone line. I discovered that the modem setting went to v92 if I checked 'notify me if phone rings' or incoming call. My setting on my imac g3 (internal modem) only had options up to v90, and selecting v90 on my powerbook allows more internet connections. There is still a problem, however. When I try to make internet connections from my imac using various different modem script settings, the modem connects almost all the time very quickly. When I try to make connections using my powerbook fairly often it won't connect. Is this a connection script problem (same phone line) and can I use connection scripts used in mac os 9?
thanks,
charles

I finally solved the problem by going to the Apple Web site and downloading and reinstalling ARD client on the problem computers. By the way, both the admin and client computers are Intel iMacs running 10.5.3.
The URL is http://support.apple.com/kb/index?page=search&src=support_site.kbase&fac=Downloa ds&q=ARD%20client

Similar Messages

  • [solved] Making stuff run during boot (wifi connect script)

    In Ubuntu, I used some commands to add a script to init.d for a wireless connect script, but Arch is differnet. How would I go about putting a script to connect to wireless during startup? (GUI network managers don't like me, and if they don't connect quick enough, then Kopete complains )
    Last edited by doorknob60 (2008-09-30 01:11:18)

    Nice, it worked perfectly, and I didn't even notice it boot slower I was getting tired of manually connecting after logging in.

  • Connection scripts ?

    Trying to find the connection scripts in the System Folder of Mac OS 9.2

    In Mac OS 9.2, the modem scripts are stored in the folder "System Folder:Extensions:Modem Scripts."
    (9414)

  • File count alternating in folder when OS9 connects to Mac OS X server

    Greeting All,
    I have a few Macs running Mac Os 9.2.2 and they connect to a Mac Pro running OS X Server 10.4.7. The problem I am having is that if there are more that say 75 files in a folder that I open to view, the files in that folder keeps jumping and the file count keeps alternating. In other words, selecting a files from the folder is nearly impossible as the files keep moving in the folder. If I connect from a mac running OS X to the said Server running 10.4.7, I don't get this problem. Nor do i get the problem if I Connect the macs running OS 9 to a server running Appleshare Ip Server software I don't get the problem. Anyone knows how I can get around this problem?

    Just out of interest, what happens if you view the folder by List View ?
    I suspect with OS9 that you're trying to read the Desktop file to see how the folder icons are laid out, but there isn't one. So maybe you're trying to create one automatically. But OSX server on Intel goes "oh no you don't, create a resource fork ? what's that ?" or OSX server doesn't know how to create a desktop file for OS9 computers. Or you don't have file permissions to create a Desktop file on the OSX Server (then OS9 usually creates a temporary file on the OS9 System Folder Preferences folder).
    Your OSX Server license will come with support to help you answer this. I suspect a quick delve into the manual will show that it may just not be possible. My company is still on OSX 10.3.9 Server, but I've spent between 2 and 3 years getting everything off OS9 so I can't help you by trying things myself (the only OS9 bootable computer we have left is the one Server runs on).

  • Help with php mysql connect script

    Ok guys im new to php mysql and i'm trying to insert some
    form information in my database. Im using a script from sitepoint
    in which i went through the tutorial did some experiments of my own
    and it worked....
    but now i'm getting this error which i cant figure out....
    Error placing order: You have an error in your SQL syntax;
    check the manual that corresponds to your MySQL server version for
    the right syntax to use near 'order SET product ='1',
    size='medium', color='', quantity = '1' at line 1
    here is the page
    http://vaughntucker.com/imagecon/hats.php
    and this is the script
    <?php
    //default page display
    //connect to database
    $dbcnx = @mysql_connect('p3nl41mysql7.secureserver.net',
    'imagecon', 'Dub*boss_1');
    if (!$dbcnx) {
    echo '<p> Unable to connect to the '. 'database server
    at this time.</p>';
    exit();
    //select database
    if (!@mysql_select_db('imagecon')) {
    exit('<p>Unable to locate the ' .
    'database at this time.</p>');
    //Mysql query add joke
    if (isset($_POST['submit'])) {
    $product = 1;
    $size = $_POST['size'];
    $color = $_POST['color'];
    $quan = $_POST['quantity'];
    $sql = "INSERT INTO order SET
    product ='$product',
    size='$size',
    color='$color',
    quantity = '$quan',
    date = CURDATE()";
    }else{
    echo 'No data submited';
    if (@mysql_query($sql)) {
    echo '<p>Your order has been submited.</p>';
    } else {
    echo '<p>Error placing order: ' .
    mysql_error() . '</p>';
    ?>
    thanks in advance

    $sql = "INSERT INTO order SET
    product ='" . $product . "',
    size='" . $size . "',
    color='" . $color . "',
    quantity = '" . $quan . "',
    I believe there are other more elegant ways to do this, as
    well.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "beatzMalone" <[email protected]> wrote in
    message
    news:[email protected]...
    > Ok guys im new to php mysql and i'm trying to insert
    some form information
    > in
    > my database. Im using a script from sitepoint in which i
    went through the
    > tutorial did some experiments of my own and it
    worked....
    >
    > but now i'm getting this error which i cant figure
    out....
    >
    > Error placing order: You have an error in your SQL
    syntax; check the
    > manual
    > that corresponds to your MySQL server version for the
    right syntax to use
    > near
    > 'order SET product ='1', size='medium', color='',
    quantity = '1' at line 1
    >
    > here is the page
    >
    http://vaughntucker.com/imagecon/hats.php
    >
    > and this is the script
    > <?php
    > //default page display
    > //connect to database
    > $dbcnx = @mysql_connect('p3nl41mysql7.secureserver.net',
    'imagecon',
    > 'Dub*boss_1');
    > if (!$dbcnx) {
    > echo '<p> Unable to connect to the '. 'database
    server at this
    > time.</p>';
    > exit();
    >
    > }
    >
    > //select database
    > if (!@mysql_select_db('imagecon')) {
    > exit('<p>Unable to locate the ' .
    > 'database at this time.</p>');
    > }
    >
    > //Mysql query add joke
    > if (isset($_POST['submit'])) {
    > $product = 1;
    > $size = $_POST['size'];
    > $color = $_POST['color'];
    > $quan = $_POST['quantity'];
    > $sql = "INSERT INTO order SET
    > product ='$product',
    > size='$size',
    > color='$color',
    > quantity = '$quan',
    > date = CURDATE()";
    > }else{
    > echo 'No data submited';
    >
    > }
    > if (@mysql_query($sql)) {
    > echo '<p>Your order has been submited.</p>';
    > } else {
    > echo '<p>Error placing order: ' .
    > mysql_error() . '</p>';
    > }
    >
    >
    >
    > ?>
    >
    > thanks in advance
    >

  • Detect Internet Connection Script

    I've been building a parent script 'component' for a trial version app I'm creating for Director developers. The internet connection parent script gives developers a true status of the internet connection using netlingo and setting up a callback handler to handle the asynchronous netlingo calls. If anyone would like to test it out, it can be downloaded here:
    http://www.easy-share.com/1905325182/detect_internet_connection2.zip
    Sorry about the free file upload link - I let my domain lapse and one of these days I have purchase it back again.
    Anyways, let me know if anything is unclear; I  heavily commented the parent script to help explain things... as well, if there are any suggestions for additions of methods, etc. then I would be happy to hear from you.
    Thanks,
    Josh

    Judd.Travers wrote:
    Joshua Chunick wrote:
    I've been building a parent script 'component' for a trial version app I'm creating for Director developers. The internet connection parent script gives developers a true status of the internet connection using netlingo and setting up a callback handler to handle the asynchronous netlingo calls. If anyone would like to test it out, it can be downloaded here:
    http://www.easy-share.com/1905325182/detect_internet_connection2.zip
    Sorry about the free file upload link - I let my domain lapse and one of these days I have purchase it back again.
    Anyways, let me know if anything is unclear; I  heavily commented th parent script to help explain things... as well, if there are any suggestions for additions of methods, etc. then I would be happy to hear from you.
    Thanks,
    Josh
    Have you got the answer? Would you pls post it here? I have the issue which is similar to what you have faced, It's long.
    Your response to my post makes very little sense. Please explain exactly what your issue is. Thanks.

  • Need a shell script file in snow leopard to start and stop VPN connection

    As the Question says, I need a shell script file to do this, and since I don't know anything about creating a script file I wanted to ask the Groups help.  I need it because I need to run a backup program, and need the backup program to run the Connect script to connect to the VPN before it starts the backup, and then when it completes the backup to run the disconnect script.  Your help is greatly appreciated.  Thanks.

    Hi, thanks for your prompt reply. However my real problem is not starting
    it but stopping it cleanly. I am forced to restart the display from time to time (once/per hour) because it is getting 'stuck' for some reason and the web page is out of my control.
    I tried simply killing the firefox process using kill command and then starting a new one but it works one or two times and then the next firefox process demands mouse communication. And that is not available. Also this has to work without any expert present as the display is in a public area.

  • Connecting 9.2.2 iBook G3 to iMac with 10.4.9

    I've finally determined (tech support docs on 10.3.9 and online help do NOT make this simple to determine) that AFP ain't supported on 10.4.
    Here is my current problem:
    Open Public folder on iMac (10.4.9, Personal File Sharing enabled) using Chooser and the network icon on the iBook’s Desktop. File Sharing (or is it AppleTalk) Control Panel on the iBook has the "Applehare over TCP/IP" option enabled).
    1. Open finder window to OS X drop box
    2. Click and drag file to open window
    3. Copying starts and progress dialog comes up
    4. First error alert: The File Service's Connection Has Unexpectedly Closed Down
    5. Dismiss that dialog and
    6. "The Selected Files Could Not Be Copied Because the Server Is No Longer Connected."
    I then installed Shareway IP Personal, latest version.
    Restart iBook. I get the same error and error messages.
    During all this time, a connection from iBook to a Blue and White running 10.3.9 remains connected and usable, as does the file sharing connection to an OS 9.2.2 Blue and White.
    I'm a very savvy pre-OS X Mac user and a reasonably savvy OS X user, though simple file sharing in the house with OS X has become an exercise in bafflement.
    The iBook is using an AirPort card through an Asante Wireless VPN Security Router, which is connected to my IP provider. All other Macs are wired.

    Yeah, 10.4.9 broke Appletalk even further than 10.4.0 did!
    I've been able, (using the old Shareway), to download either way, but not upload either way over a few KB.
    10.4.9 copies from my OS9.2.2 machine to itself fine. OS9.2.2 copies from the 10.4.9 machine fine, but trying to put it either way will get that "no longer connected", and most of the time then freeze one or both machines until I reboot the OS9.2.2 machine.

  • Cannot open pages while connected with AEBS ?

    I only have a dialup connection through AOL. Finally bought old style AEBS with modem so i could connect with my iBook at home. Seem to have it configured to network with my G5 ok. Got it to connect to AOL, i'm online. My problem is i can't open any pages. I usually use Firefox and it opens fine but after that i can't access any websites, same thing with Safari. Every thing works fine as long as i'm not connected through Airport. Where should i look to remedy this?
    Power Mac Dual 2GHZ & iBook 1GHZ Mac OS X (10.4.8) PM 2.2 RAM
    Power Mac Dual 2GHZ & iBook 1GHZ Mac OS X (10.4.8) PM 2.2 RAM AEBS w/modem
    Power Mac Dual 2GHZ & iBook 1GHZ   Mac OS X (10.4.8)   PM 2.2 RAM

    Hi Robert!
    See if this AOL Internet access requires an update when
    using AirPort helps.
    If you are seeing an asterisk * when trying to
    navigate to webpages, try this;
    A fix for this is to change the modem scripts AOL is
    using.
    Sign Off, but don't quit AOL.
    When signed OFF of AOL, but with the Sign-On screen
    open, click: SET UP > Expert Set UP.
    Click : Add TCP Connection to bring up new
    dialog box.
    Pull down the menu in Advanced Options - Connection
    Scripts:
    Change the connection script to TCP (DO NOT
    use Airport)
    Click Okay and close all windows.
    Good Luck!
    ali b
    Thanks for your help, tried everything you suggested. Unfortunately nothing changed.
    Power Mac Dual 2GHZ & iBook 1GHZ Mac OS X (10.4.8) PM 2.2 RAM

  • Can't connect PHP/MySQL 404 error

    Wow, the learning curve is killing me. Yet another challenge. I'm using Dreamweaver CC and this tutorial http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    I'm at this step:
    Open comments.php. You must have a PHP page open in the Document window to create a MySQL connection.
    In the Databases panel (choose Window > Databases), click the Plus button on the panel and select MySQL Connection.The MySQL Connection dialog box appears.
    Type connTest as the connection name.
    For the MySQL Server, type localhost.If you are using the MAMP default ports on a Mac, use localhost:8889.
    For the User Name, type phptestuser.
    Type the password you chose for the phptestuser account in the Password field.
    For the Database, type php_test.Note: You don't need to precede the underscore with a backslash here. It was inserted by phpMyAdmin in the previous section (see Figure 20) only because phpMyAdmin uses a query that permits wildcard characters.
    Click Test.Dreamweaver attempts to connect to the database. If the connection fails, do the following:
    Double-check the server name, user name, and password.
    Check the settings for the folder Dreamweaver uses to process dynamic pages (see Specifying a Testing Server for Dreamweaver).
    Verify that the web and MySQL servers are both running.
    Temporarily disable any firewall or security program. If the connection works, you need to configure the security program to permit communication between Dreamweaver and MySQL.
    Click OK. The new connection appears in the Databases panel.
    Expand the connTest connection, and then expand the Tables branch. You'll see the comments table in the database, which you can expand to reveal the details of the table columns (see Figure 23).
    As far as I can tell I have followed this tutorial to the letter.
    As far as I can tell, XAMPP/php mySQL are all running fine, the files are in the correct place and everything should be working. However when I hit test I get a 404 error. (Same error when I hit the select button.)
    The suggested problems on the 404 message are:
    1. There is no testing server running on the server machine.
    Pretty sure the testing server is running. Is there any way to test this, other than to note that xampp is definitely running right now and that I can log into phpMYadmin no problem?
    2. The testing server specified for this site does not map to the http://localhost/php_test/_MMServerScripts/MMHTTPDB.php URL Verify that the URL Prefix maps to the root of the site.
    Ummm...I'm pretty sure I put things where I was told to put them in the tutorial, but I'm lost at this point where I should verify what. A clue here? The files are where they are supposed to be, but maybe I entered something wrong? Except...I'm not sure what that could be or where to find it. Whatever IT is.
    Everything in local files is looking good.
    Thanks for your help!
    PS: Extra points to anyone who figures out how to make copy/pasteable error messages! These buggers are the bane of my life!

    Bgupta, you rock!
    I hope you have copied the "mysql.php" and "MMHTTPDB.php" files from "C:\Users\username\AppData\Roaming\Adobe\Dreamweaver CC\locale\Configuration\Connections\Scripts\PHP_MySQL\_mmDBScripts" to "C:\xampp\htdocs\phptest\_mmServerScripts"
    This was EXACTLY the problem. I checked the tutorial and I couldn't even find where the tutorial said to do this. (If I missed it, let me know where in the tutorial it was, please.)
    Fixed!

  • How to bind data from script created variable to embed element of XML schema (xsd) in "Data View"

    Hi, i have got another problem with livecycle designer scripting.
    I have got script line which is defining of string variable:
    var aaa = "this is my string";
    and i have got embed XML schema like this (it`s only short part of whole file):
    ... xs:element name="bbb" type="xs:string"/ ...
    After saving data to XML i would like to get "this is my string" as a value of my "bbb" XML element.
    To save this data i`m using submit button which is connect with submit.php file on my server.
    How to connect script created variable and embed XML schema element which is present on my "Data View" tab.
    Please help me a bit becouse i don`t know even where to search answer of it...
    Of course i know possibilities to create fake unvisible text field object and bind it with 'bbb' and than put "this.rawValue = aaa" to connect those two variables but i think that is not a good idea to solve it in that way. It`s too primitive

    i solve it, i should write this:
    xfa.datasets.data.bbb.value = aaa;

  • Error connecting to a table in a database

    I am trying to insert user login script and have an error.
    Can anyone tell me why Dreamweaver MX 2004 cannot connect to
    the tables in my databases? I am using MS Access 2002 and there are
    tables in the databses.
    I can supply a jpeg of the error if needed

    Hello,
    Are you using Windows XP SP2?
    If so, it's a known issue.
    Here's the fix:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19515&sliceId=2
    Click on "connectivity fails with local ASP.NET and ASP
    servers..."
    There's a link to download the extension fix in "Workaround"
    ASP: When using a local ASP test server running on XP SP2
    with Dreamweaver
    (i.e. the Testing Server URL prefix is set to "
    http://localhost"), and you
    specify "Using driver on testing server" or "Using DSN on
    testing server,"
    database connectivity fails. If you click the Test button in
    the Custom
    Connection String or Data Source Name (DSN) dialog box, it
    says the
    connection was made successfully. However, if you then try to
    browse the
    tables in the Databases panel or create a recordset, the
    database tables do
    not display or you get the following error message: "Unable
    to retrieve
    tables from this connection, click on the 'Define...' button
    to test this
    connection."
    Workaround: Download and install the Dreamweaver extension
    fix by Macromedia
    that resolves this issue (Ref. 179021). To use this
    extension, follow the
    steps below. The steps below apply to both ASP.NET and ASP
    sites:
    1.. In Dreamweaver, go to the Files panel and choose one of
    your ASP.NET
    site definitions.
    2.. Select Site > Advanced > Remove Connection
    Scripts.
    Note: If this option is grayed out, open an ASP.NET page in
    Dreamweaver.
    Removing the connection scripts will delete the contents of
    the
    _mmServerScripts folder, which is located in the testing
    server folder. The
    _mmServerScripts folder is hidden in Dreamweaver's Files
    panel, but will be
    visible if viewed with a different file browser. The
    _mmServerScripts folder
    consists of these three files: adojavas.inc, MMHTTPDB.asp and
    MMHTTPDB.js.
    The connection scripts are used by Dreamweaver to perform
    remote database
    connectivity when developing pages within Dreamweaver. These
    script files
    have no affect on your web pages during run-time (i.e. when a
    visitor views
    your ASP.NET pages via a web browser).
    3.. Repeat steps 1-2 for each of your ASP.NET site
    definitions.
    4.. Quit Dreamweaver.
    5.. Install the extension.
    6.. Restart Dreamweaver.
    7.. Go into the Files panel, select one of your ASP.NET
    sites, and open an
    .aspx file.
    8.. Go into the Databases panel and delete your existing
    database
    connections. Before deleting them, make sure to open up each
    connection and
    write down the settings. You can open a connection by either
    double-clicking
    the connection name, or right-clicking the connection name
    and selecting
    Edit.
    9.. Create a new database connection. Use the same
    connection names you
    had before, so any existing pages with DataSets and Server
    Behaviors still
    work correctly.
    10.. Click the Test button in the database connection dialog
    box. This
    will upload the new connection scripts to the testing server.
    11.. Repeat steps 7-10 for each of your Dreamweaver ASP.NET
    site
    definitions.
    Note: This extension is compatible with Dreamweaver MX 2004
    and Dreamweaver
    MX. The current version of the extension is 1.0.2. Version
    1.0.1 resolved a
    database connectivity problem with the ASP VBScript server
    model. Version
    1.0.2 includes the fixes in version 1.0.1 and also resolves
    compatibility
    issues with Dreamweaver MX (version 6). You can see which
    version of the
    extension you have by opening the Extension Manager.
    "ducati1" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am trying to insert user login script and have an
    error.
    > Can anyone tell me why Dreamweaver MX 2004 cannot
    connect to the tables in
    > my
    > databases? I am using MS Access 2002 and there are
    tables in the databses.
    > I can supply a jpeg of the error if needed
    >
    >

  • Ios 5.0.1 + Iphone 4 bluetooth connection issue with car stereo

    My Iphone 4 will not connect with my new JVC car stereo I have spoken to JVC customer support and they say its an Apple issue that they need to fix (changed something with the bluetooth connection scripts in the latest update update, as they have done before).
    The phone finds the stereo and then tries to pair with it, however half way through the pairing process the phone losses connection with the stereo and the pairing is then deleted.
    I have deleted all the existing pairing in the phone memory and ensured that the stereo has been rebooted to ensure no conflict of previous installs would effect the process
    Does anyone know if Apple are going to fix this glitch in a new softwre update (and if so when is it being released) as at the minute i have an expensive stereo which is cant use to its full ability?

    Similar problems occured when Apple released iOS 4 last year. It was NOT fixed with an update from Apple. It was fixed by the system vendors and automakers releasing updates for their equipment. There are ongoing complaints from people with some Toyota built cars (Toyota and Lexus) with some systems as well as some BMW drivers.
    I'm willing to bet money that the head unit you have is not fully standards compliant. Unfortunately, getting JVC to admit that is going to be nearly impossible. I suspect they will just quietly issue an update sometime in the next few months. Assuming the head unit can be updated by the end user at all.  You may have to resort to an inexpensive visor mount speaker phone in the mean-time.

  • AnyConnect 2.4 scripting onConnect, can't get to work

    I can't get onConnect or onDisconnect scripts to activate.
    They download from ASA, will work if launched manually from command line (win-xp), and preferences "enable connection scripts" is checked.
    Any suggestion would be appreciated.

    It sounds like your AnyConnect might not be able to find or is unabled to parse the correct profile to load that has scripting enabled. Check the event viewer logs to see if the AnyConnect found and is using the xml profile with scripting enabled. If you are getting parse errors, try to use our profile editor tool that automatically creates the XML content for you. The tool should be on cisco.com under Security > Cisco VPN Client Tools > VPN Client Tools and Utilities > Profile Editor.
    Once you have the new profile uploaded and applied on your ASA, go to your client PC and remove the old/bad XML profiles.
    -heather

  • Please help with database connection issue

    Hi,
    I've created a few connections and pages with a few recodsets on my local computer and am connecting fine with the database. I've uploaded the database via phpmyadmin onto a remote server and uploaded all my pages to the website and have changed the database info, user name and password in the connections folder but when I try to load the file I get a message "no database selected". I've tried various things but no luck. I'm selecting the database name but something is missing. Any help would be appreciated.
    Derek

    A bit more info: Here is the connection script as its defined in Dreamweaver: <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_karen_product = "localhost";
    $database_karen_product = "karen";
    $username_karen_product = "root";
    $password_karen_product = "root";
    $karen_product = mysql_pconnect($hostname_karen_product, $username_karen_product, $password_karen_product) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    Where is says mysql_pconnect, I changed the $hostname_karen_product etc to 'localhost', 'username', 'the password for the database')
    Do i need to do something different at $database_karen_product?
    I'm basically new at this and confused as to how to alter this connection script.
    Thanks
    Derek

Maybe you are looking for

  • What to set pause button to when using invisiblepause swf

    Hi Folks- I am using the invisiblepauseplay swf in my project in Captivate 4.  I have it set to rest of project.  What should I set the pause button that sits underneath it to for best functionality? Continue? No action? Thanks for your help? Rita

  • Where is define Templates in Profit Center Report - Selection Criteria

    Hello Experts, where is define Templates in Profit Center Report - Selection Criteria Window ? Dixit Patel

  • Crw32.exe Application Error - Help!

    <p>Hi there, i keep getting errors (and crystal then shutsdown) when i try and run certain reports or drag fields onto my report............i at first thought my machine was faulty and have recently since got new motherboard. have format and re-insta

  • Automatic Refresh of Data Visualization Component

    Hi, I saw Duncan Mills do a really neat demo at ODTUG where he setup a graph to automatically refresh upon data changes in a database. I'm trying to replicate this behavior but am failing. Does anybody have any suggestions / instructions on how to do

  • ABAP Query Need to Convert ABAP Report

    Dear All, We have 3 queries which are linked to service management, now, user wants to consolidated one ABAP report with feilds of 3 queries, which consist of total 100 feilds. he want provision of downloading each single query (in ABAP report). Is t