PHP, MSSQL 2000, SERVER 2003 and FLEX 2

Hi everyone,
I tried to connect to MSSQL using PHP. I did not get any
error message but the only problem is when I try to test the
problem, I get this error message. Everything works fine on my
local computer "developer", but when I try to program and test on
my Windows Server 2003, I get this error message:
ReferenceError: Error #1069: Property loginsuccess not found
on String and there is no default value.
at index/::checkLogin()
at index/__login_user_result()
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at mx.rpc.http.mxml::HTTPService/
http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
at mx.rpc::AbstractInvoker/
http://www.adobe.com/2006/flex/mx/internal::resultHandler()
at mx.rpc::Responder/result()
at mx.rpc::AsyncRequest/acknowledge()
at ::DirectHTTPMessageResponder/completeHandler()
at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
PHP:
<?php
$dbhost='localhost';
$dbuser='sa';
$dbpass='S@ue0925';
$mydb='test';
$dbconn=mssql_connect($dbhost,$dbuser,$dbpass);
mssql_select_db($mydb, $dbconn);
$sql = "SELECT id " .
"FROM tblusers " .
"WHERE username = '" . $_POST['username'] . "' " .
" AND password = '" . $_POST['password'] . "' "
$result = mssql_query($sql, $dbconn);
$numRows = mssql_num_rows($result);
//start outputting the XML
$output = "<loginsuccess>";
//if the query returned true, the output
<loginsuccess>yes</loginsuccess> else output
<loginsuccess>no</loginsuccess>
if(!$result)
$output .= "no";
}else{
$output .= "yes";
$output .= "</loginsuccess>";
//output all the XML
print ($output);
?>
Can someone please help me?
Thank you.
Cliffy

my code
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
layout="absolute">
<mx:states>
<mx:State name="Logged In">
<mx:SetProperty target="{panel1}" name="width"
value="95%"/>
<mx:SetProperty target="{panel1}" name="height"
value="95%"/>
<mx:RemoveChild target="{password}"/>
<mx:RemoveChild target="{username}"/>
<mx:RemoveChild target="{label1}"/>
<mx:RemoveChild target="{Submit}"/>
<mx:RemoveChild target="{label2}"/>
<mx:SetProperty target="{panel1}" name="title"
value="Members Section"/>
<mx:AddChild relativeTo="{panel1}"
position="lastChild">
<mx:Label x="10" y="10" text="Welcome to the Members
Section!"/>
</mx:AddChild>
<mx:AddChild relativeTo="{panel1}"
position="lastChild">
<mx:Label x="10" y="36" text="Here you can do great
things, like join the forums @ Viper Creations!"/>
</mx:AddChild>
<mx:AddChild relativeTo="{panel1}"
position="lastChild">
<mx:Label x="10" y="62" text="Label"/>
</mx:AddChild>
</mx:State>
</mx:states>
<mx:Script>
<![CDATA[
import mx.rpc.events.ResultEvent;
import mx.controls.Alert;
]]>
</mx:Script>
<mx:Script>
<![CDATA[
private function checkLogin(evt:ResultEvent):void
if(evt.result.loginsuccess == "yes")
currentState = "Logged In";
if(evt.result.loginsuccess == "no")
mx.controls.Alert.show('Invalid username/password');
]]>
</mx:Script>
<mx:HTTPService id="login_user" result="checkLogin(event)"
showBusyCursor="true" method="POST" url="
http://www.phobos-machines.com/login/bin/request.php"
useProxy="false">
<mx:request xmlns="">
<username>
{username.text}
</username>
<password>
{password.text}
</password>
</mx:request>
</mx:HTTPService>
<mx:Panel resizeEffect="Resize" width="250" height="200"
layout="absolute" title="Login System" horizontalCenter="0"
verticalCenter="-2" id="panel1">
<mx:Label x="10" y="10" text="Username:" id="label1"/>
<mx:TextInput x="10" y="36" id="username"/>
<mx:Label x="10" y="66" text="Password:" id="label2"/>
<mx:TextInput x="10" y="92" id="password"
displayAsPassword="true"/>
<mx:Button x="10" y="122" label="Submit" id="Submit"
click="login_user.send();"/>
</mx:Panel>
<!--registraion -->
<mx:HTTPService id="login" showBusyCursor="true"
method="POST" url="
http://www.phobos-machines.com/login/bin/request.php"
useProxy="false">
<mx:request xmlns="">
<username>
{username2.text}
</username>
<password>
{password2.text}
</password>
</mx:request>
</mx:HTTPService>
<mx:Panel x="30" y="10" width="380" height="270"
layout="absolute">
<mx:Form x="10" y="19" width="328" height="187">
<mx:FormItem label="username">
<mx:TextInput id="username2" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Password">
<mx:TextInput id="password2" width="100%"
displayAsPassword="true"/>
</mx:FormItem>
<mx:FormItem>
<mx:Button label="Submit"
click="login.send(),Alert.show('User Registered',
'Registration',mx.controls.Alert.OK);"/>
</mx:FormItem>
</mx:Form>
<mx:FormHeading x="0" y="0" label="Registration"/>
</mx:Panel>
</mx:Application>

Similar Messages

  • Crystal 8 Web Component Server ond Windows Server 2003 and IIS 6

    I am trying to get Crystal 8 Web Component and Page Server to run on Windows 2003 Server with IIS 6. I have done the following:
    Added the .cri and .rpt ISAPI extension mappings
    Have Cache ISAPI extentions selected
    Deselected "verify that file exists"
    Aded the .cri and .rpt MIME types
    Added wcsinsapi.dll as a IIS 6.0 extension
    The above resolved all HTTP 40x.x errors but when trying to access a report from IE I receive the following error:
    Error: Could not connect to the Web Component Server.
    The page server and web component server services are running and I do see the listen ports (6401, 6403) active.
    I know this is old software but it works quite well under a Windows 2000 Server and other web postings indicate that it is possible to run Crystal 8 under WS2003 and IIS 6.
    Does any one know of a white paper/support document that details how to run Crystal 8 under Windows Server 2003 and IIS 6?
    Has any one done this successfully?
    Any tips as to cause of the "Could Not Connect" problem would be greatly appreciated.

    Well as it turns out it looks like it was just this server.
    We tried everything, and I added those user accounts to full
    permission for the Coldfusion folders and we just could not get it
    to work. We tried it on another couple servers running 2003, and it
    installed perfectly right out of the box with no other permissions
    needed. And those servers were all running default configs with no
    other permissions done.
    We still have no idea what was the problem, but at least for
    now it seems to be this server. But I will tell you what, that II6
    stuff seems to be a bit of a pain, we had major problems installing
    new version of PHP with it too. Oh well, good luck to you
    too!

  • Terminal server 2003 and window7 printer

    we have a terminal server 2003 and now added a windows 7 workstation running rdp. all printers except the new hp2025n show in session by loading the printdriver 2020 on the server. How ever on the windows 7 desktop I had to load the 2020 driver for windows 7.  The win7 driver will not load on the server, error this platform not supported. I understand that the 2 drivers have to match for the printer to be used in rdp.  The other printer that come across is a black dell printer with no problems. so the driver is what I suspect is the issue.

    gprater,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Microsoft Exchange Server 2003 and Windows 8 Compatibility

    Is there a fix or workaround for accessing email via Outlook 2013 (Windows 8) when your company uses Microsoft exchange server 2003 and has not plans on upgrading it any time soon. I am a remote employee so I am the only one that has this problem in the
    company. I can access email through an owa account but it's a pain. I tried to set up a rule to have all incoming mail forwarded to my gmail account in Outlook 2013, but that did not work. Any other ideas?

    If server has enabled ActiveSync you can use Windows 8 Mail Client - works almost like Outlook.
    AFAIR Outlook 2013 can't work with Exchange 2003.
    Regards, Konrad Sagala, MCT, MCSE+M, MCITP: Exchange 2007/2010, Lync 2010, Office365, Windows 2008, Virtualization

  • Out of memory using Windows Server 2003 and Oracle 9.2.0.3

    Hi,
    I just installed both Windows Server 2003 and Oracle 9.2.0.3. The server I am using has 4 gigabytes of memory installed, and windows shows that to be the actual physical memory on the server. The paging file is 8 gigabytes for a total of 12 gigabytes of virtual memory.
    Using the Oracle Database Configuration Assistant, I create a new database using default values. After verifying the installation worked OK (database started, queries ran), I attempted to change some of the memory parameters and was able to start the database using about 1.4 gigabytes of total SGA, with the O/S using about .3 gigabytes for a total of 1.7 gigabytes. I then attempted to change the buffer cache + 1 gigabyte for a total of 2 gigabytes. Now the database will not start and I get an out of memory error ora-27102 with an additional O/S memory error of "O/S Error: (OS 8) Not enough storage is available to process this command".
    So, I have two problems:
    1) With 4 gigabytes installed, and the O/S using only about 300 megabytes, why isn't Oracle able to take advantage of the memory on this machine past the 1.7 gigabytes (as reported by Windows task manager).
    2) How do I change the spfile memory parameters so the database will start using spfile? I can start the database pointing to a pfile with lesser memory parameters, but I don't know how to effect change on the spfile, since I cannot start with the spfile.
    Both these technologies (9.2.0.3 and Server 2003) are new to me, so any insight would be appreciated!
    HERE ARE THE SPFILE PARAMETERS THAT WORKED:
    SGA (M)
    Shared Pool=104
    Buffer Cache=960 ***
    Large Pool=0
    Java Pool=64
    Total SGA=1128
    SGA Max Size=1321
    Aggregate PGA Target=1500
    Current PGA Allocated=22868KB
    WINDOWS MEMORY INFO FROM TASK MANAGER SHOW:
    PF Usage=1.66GB
    Physical Memory (K)
    Total=4062704
    Available=3203460
    System Cache=2499096
    Commit Charge (K)
    Total=1748184
    Limit=12288628
    Peak=1925276
    *** When I change this to 2048 the database did not start.
    Thank you.

    CREATE SPFILE
    Purpose
    Use the CREATE SPFILE statement to create a server parameter file from a client-side initialization parameter file. Server parameter files are binary files that exist only on the server and are called from client locations to start up the database.
    Server parameter files let you make persistent changes to individual parameters. When you use a server parameter file, you can specify in an ALTER SYSTEM SET parameter statement that the new parameter value should be persistent. This means that the new value applies not only in the current instance, but also to any instances that are started up subsequently. Traditional client-side parameter files do not let you make persistent changes to parameter values. Because they are located on the server, these files allow for automatic database tuning by Oracle and for backup by Recovery Manager (RMAN).
    To use a server parameter file when starting up the database, you must create it from a traditional text initialization parameter file using the CREATE SPFILE statement.
    All instances in an Real Application Clusters environment must use the same server parameter file. However, when otherwise permitted, individual instances can have different settings of the same parameter within this one file. Instance-specific parameter definitions are specified as SID.parameter = value, where SID is the instance identifier.
    The method of starting up the database with a server parameter file depends on whether you create a default or nondefault server parameter file. Please refer to "Creating a Server Parameter File: Examples" for examples of how to use server parameter files.
    See Also:
    CREATE PFILE for information on creating a regular text parameter file from a binary server parameter file
    Oracle9i Database Administrator's Guide for information on pre-Oracle9i initialization parameter files and Oracle9i server parameter files
    Oracle9i Real Application Clusters Administration for information on using server parameter files in a Real Application Clusters environment
    Prerequisites
    You must have the SYSDBA or the SYSOPER system privilege to execute this statement. You can execute this statement before or after instance startup. However, if you have already started an instance using spfile_name, you cannot specify the same spfile_name in this statement.
    Syntax
    create_spfile::=
    Text description of create_spfile
    Semantics
    spfile_name
    This clause lets you specify a name for the server parameter file you are creating.
    If you do not specify spfile_name, Oracle uses the platform-specific default server parameter filename. If spfile_name already exists on the server, this statement will overwrite it. When using a default server parameter file, you start up the database without referring to the file by name.
    If you do specify spfile_name, you are creating a nondefault server parameter file. In this case, to start up the database, you must first create a single-line traditional parameter file that points to the server parameter file, and then name the single-line file in your STARTUP command.
    See Also:
    "Creating a Server Parameter File: Examples" for information on starting up the database with default and nondefault server parameter files
    Oracle9i Database Administrator's Guide for Windows (or other appropriate operating system specific documentation) for default parameter file names
    pfile_name
    Specify the traditional initialization parameter file from which you want to create a server parameter file.
    If you specify pfile_name, the parameter file must reside on the server. If it does not reside in the default directory for parameter files on your operating system, you must specify the full path.
    If you do not specify pfile_name, Oracle looks in the default directory for parameter files on your operating system for the default parameter filename, and uses that file. If that file does not exist in the expected directory, Oracle returns an error.
    Note:
    In a Real Application Clusters environment, you must first combine all instance parameter files into one file before specifying it in this statement to create a server parameter file. For information on accomplishing this step, see Oracle9i Real Application Clusters Setup and Configuration.
    Examples
    Creating a Server Parameter File: Examples
    The following example creates a default server parameter file from a client initialization parameter file named t_init1.ora:
    CREATE SPFILE
    FROM PFILE = '$ORACLE_HOME/work/t_init1.ora';
    Note:
    Typically you will need to specify the full path and filename for parameter files on your operating system. Please refer to your Oracle operating system documentation for path information.
    When you create a default server parameter file, you subsequently start up the database using that server parameter file by using the SQL*Plus command STARTUP without the PFILE parameter, as follows:
    STARTUP
    The following example creates a nondefault server parameter file s_params.ora from a client initialization file named t_init1.ora:
    CREATE SPFILE = 's_params.ora'
    FROM PFILE = '$ORACLE_HOME/work/t_init1.ora';
    When you create a nondefault server parameter file, you subsequently start up the database by first creating a traditional parameter file containing the following single line:
    spfile = 's_params.ora'
    The name of this parameter file must comply with the naming conventions of your operating system. You then use the single-line parameter file in the STARTUP command. The following example shows how to start up the database, assuming that the single-line parameter file is named new_param.ora:
    STARTUP PFILE=new_param.ora
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_616a.htm#SQLRF01315
    Joel P�rez

  • Small business server 2003 and database 2008 r2

    Hello,
    I already use at work small business server 2003 and I would like to install sql serwer 2008 r2 express. And my questions is. Is there any possibility to install sql server 2008 express on small business server 2003 ? My database has a limitation of size
    to 4 gb. When i trying to add a new business contact in BCM i get a massage: could not allocate space for object in database because the 'primary' filegroup is full. i am very much appreciate for  help.

    You can install SQL express on SBS 2003.
    Maybe you can use het comments in
    this link.

  • Mapping issues with Server 2003 and windows 8.1 machine

    We are running Windows Server 2003 and trying to map network drives through a GPO script on a Windows 8.1 machine.  The drives don't get mapped and if they do, it takes them 10minutes or more to show up.  The Folder Redirection is not working
    as well.  Any suggestions?

    Hi,
    This is because
    by default, on client computers, Group
    Policy processing is not synchronous, that is client computers typically do
    not wait for the network for GPO settings to be fully initialized at startup and logon. 
    Solution:
    Enable the
    policy setting Always
    wait for the network at computer startup and logon to set the client computers wait
    for the network for GPO settings to be fully initialized during computer startup and user logon.
    Steps to enable the Policy Setting
    - Open Group Policy Management Console (start -> Run -> Type GPMC.MSC).
    - Edit the required GPO and navigate to
    Computer Configuration/Administrative Templates/System/Logon and enable the option Always
    wait for the network at computer startup and logon 
    Checkout the below thread on similar problem and solution,
    http://social.technet.microsoft.com/Forums/en-US/285e5a93-a5c8-4725-9067-af48bcde5c78/user-home-folder-problem?forum=winserverfiles
    Regards,
    Gopi
    JiJi
    Technologies

  • Server 2003 and IE10 proxy settings

    We are (still) running Server 2003 with a mixed Win7/Win8 desktop environment. We can control Win7 IE9 settings but all of the Win8 systems are running IE10. We also have an internal web proxy appliance. Is there any way to force the proxy settings to the
    Win8/IE10 systems or will I have to wait until we migrate to Server 2012? The IE 10 .adm does not have any proxy settings, IEAK10 won't run on Server 2003 and GPP is not available on Server 2003.
    Thanks
    Matt

    > GPP is not available on Server 2003.
     Really not? :)
    http://www.microsoft.com/en-us/download/details.aspx?id=6955
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Sharepoint Kerberos Server 2003 and 2008R2

    Hello,
    I have a Domain Controller on Server 2003 and a SP 2010 WFE on Server 2008R2. The Content DB is an instance on a SQL Server 2012.
    Are there any additional configurations needed for kerberos to work?
    Thanks in advance

    Make sure the domain is in 2003 native mode. You do need to configure SPNs and Delegation, are you aware of that?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Flex and Windows Server 2003 and MSSQL

    Hi everyone,
    I tried to connect to MSSQL using PHP. I did not get any
    error message but the only problem is when I try to test the
    problem, I get this error message. Everything works fine on my
    local computer "developer", but when I try to program and test on
    my Windows Server 2003, I get this error message:
    ReferenceError: Error #1069: Property loginsuccess not found
    on String and there is no default value.
    at index/::checkLogin()
    at index/__login_user_result()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.rpc.http.mxml::HTTPService/
    http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::resultHandler()
    at mx.rpc::Responder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    at ::DirectHTTPMessageResponder/completeHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    Can someone please help me, I really need to figure this out
    for my company.

    a string value is being read checkLogin() when its expecting
    an object with property loginsuccess.
    maybe its a typo or something in your code.
    for example you may have place:
    var.loginsuccess == "loginsuccess";
    in which it should be:
    var == "loginsuccess";

  • WIN server 2003 and CF Administrator

    I just upgraded my server. The new one is running WIN Server
    2003 instead of the old Server 2000. I have upgraded to 8.0 with
    all the hotfixes. I am running Sun Java 6 (update 3). When I click
    the any of the "Browse" buttons in the Administrator cgi the
    browser closes. Any one know the fix for this?

    The problem turned out to be the Java JRE version. I
    uninstalled Java 6 and installed 1.4.05 and the problem
    resolved.

  • Adobe Flash Encoder on Windows Server 2003 and SDI inputs

    Has anyone out there successfully installed and run the Adobe
    Flash Encoder on a Windows Server 2003 system?
    Also, will the Flash Encoder accept audio and video sourced
    from an Osprey 2000 capture card using an SDI input?

    Does anyone have any alternate I/O solutions for inputting
    Composite, Component, SDI, XLR? I've beel looking for a rack
    mounted box (preferably) that inputs accepts analog and digital
    formats and outputs a firewire feed that can be input into my Flash
    Media Encoder box (I thought Motu's V4HD fit the bill, but after
    talking to them apparently it will not work...).

  • /3 Gb switch, Windows Server 2003 and no imagecfg.exe!

    The Imagecfg tool is not provided in the support toolkit for Windows Server 2003. How do I then implement the /3 Gb switch for oracle.exe and tnslsnr.exe as has been recommended in Metalink notes 116076.1 and 46001.1?
    Also does this not appear a bit confusing:
    Note 1036312.6 states:
    On Windows NT Server, Enterprise Edition 4.0, Microsoft provides the 4GT (4GB
    RAM Tuning) support so an application can utilize up to 3GB virtual memory
    instead of the 2GB limit as it used to be.
    The Windows NT service pack 3 provides the same feature but is not officially
    claimed in the SP3 readme.txt.
    The Oracle 8.0.3 release and higher have already been enabled to take
    advantage of the new feature.
    However a more recently updated note (46001.1) states:
    d) Configuring the Oracle process to make allocations greater than 2GB
    The Oracle database supports the 4GT tuning feature of Windows NT Server,
    Enterprise Edition from release 7.3 onwards, allowing it to access up to 3GB
    of virtual address space per instance. It may be the case that certain
    releases / patch sets do not have the 4GT flag set even though the release
    does support the feature. To check the executable has been correctly enabled
    run :
    imagecfg oracle.exe
    oracle.exe contains the following configuration information:
    Subsystem Version of 4.0
    Image can handle large (>2GB) addresses
    Stack Reserve Size: 0x100000
    Stack Commit Size: 0x1000
    For executables that do not have the flag set, run :
    imagecfg -l oracle.exe
    The above settings will only take affect if the boot.ini has been set up as
    described in Note 46053.1.
    So, do we really require to run the imagecfg utility (which is no longer provided in 2003 server support tool package) for versions higher than 8.1.7? Which tool should I then use instead of imagecfg for Windows Server 2003?

    I think one of the reasons behind those Notes is that in older releases support for the feature existed and despite 7.3.4 or 8.0.3 and onwards had the capabilities, some patch sets or patches "forgot" this. The first Note you references says
    "There may be a case where you are running 8.0.4.3.7 on NT and the 3gig address issue required the use of imagecfg to access the larger address space. One major reason might be the fact that patch sets may have brought in an executeable without the flag being set."
    Sometimes it can be really hard to get notes on metalink to add upp, maybe mostly because there is so much info to maintain and cope with...
    I dont think you should worry much about it. In any case, the developer/vendor who controls the code need to make sure the program is in reality large address aware and set flags accordingly.
    If you want to check, to report something back to Oracle Support, there is dumpbin.exe to verify image header available in Visual Studio. Dont know of a public alternative.
    http://msdn2.microsoft.com/en-us/library/c1h23y6c.aspx

  • Windows CAL server 2003 and Domain Server with a 2008 server as domain member

    We have a Windows Server 2003 as domain controller with 70 user CALs, and we have added a Windows 2008 R2 OEM with 5 users licences.
    I have no plans to migrate my domain controller 2003 to 2008 but the 2008 is a member of the domain and I need to know if we are fine with the licences.
    Thanks for your help,
    Alejandro Sueldo

    Hi
    You need CAL for anything that would access the 2008. If a server that is accessed by only 5 user you are ok, but if like a Exchange for your 70 users, then you have to buy more CAL. (that link explain it good;
    http://blogs.msdn.com/b/mssmallbiz/archive/2007/11/06/5942350.aspx)
    Contact the VLSC to be sure at 100% before buying; (866) 230-0560
    Regards, Philippe
    Don't forget to mark as answer or vote as helpful to help identify good information. ( linkedin endorsement never hurt too :o) )
    Answer an interesting question ? Create a
    wiki article about it!

  • Windows Server 2003 and CS3

    I'm looking to purchase either Photoshop CS3 or the Creative Suite CS3, but the only operating system I have available is an in-house development server running Windows Server 2003.
    I used to run Photoshop 5.5 on Windows Server 2003 without an issue, I wanted to make sure version CS3 will also run on this OS. I know the system requirements say otherwise, but as I said I had it installed on a server OS before with out any issues.
    Thanks.
    K Wilder

    Search here and the Creative Suite forum for Windows 2003. It's been
    discussed.
    You'll have to hack the installer and then you'll be in completely
    unsupported territory.
    Bob

Maybe you are looking for

  • VERIZON REPORTING NEGATIVE INFORMATION ON CREDIT

    I am in the process of buying a house with a closing date of 12-15-14 atleast it was until verizon got involved. On friday the 28th of november 2014 I was sent an email from my lender saying that verizon had reported a delenquent account for $161.00

  • ITunes Wifi and iPhone 6

    Here I am with NEW OX Yosemite NEW iPhone 6 plus and the SAME issue of the phone and iTunes not connecting via WIFI.  WHY does this issue persist?  What can be don about this????  If I have my NEW phone NEXT to my computer and iTunes is running it SH

  • Areca Link Width seems low

    I have an Areca 1231ML in my Early 2008 MacPro under 10.6.7. The card is supposedly PCIe 8x. I have the card in Slot-2 and System Profiler reports the card is running at 2x. Any ideas how I could get this running at the specified 8x? Model Name:    

  • Spry:repeat vs. Internet Explore 7.0

    Hi, I've made a very simple example with the Spry Framework - using the Spry.repeat The example works fine in Fixefox, but IE 7.0 won't display the data (no error message) HTML-file http://www.mg04.dk/clausreiss/test_xml.html XML-file http://www.mg04

  • 10g is very slow.

    i was able run 1000 reports created with VB, with in 4 hours in 9.2.0.3 release. but after i did upgrade to 10gR2 it was taking more than 12 hours . What can be the issue ?is it 10g itself ? Thanks.