Off track but php on cf server

i wanted to do some php on my platform
winXP-pro sp3
cf server
msSQL2000 server
msSQL2005 server
so added as per instructions
,net framework
fastCGI
mySQL 5.2
php 5.3
i used the install software from microsoft or that came with the program and all looks nice. cf still runs ok but calling a php doc via localhost does nothing or at most a pop-up window asking if i would like to save.
.php is showing in extensions
any ideas would be appreciated.
tnx

Heya,
Look into setting up your virtual host so that you do not need to copy files from Dreamweaver site location to XAMPP's htdoc folder as you've mentioned in step 2.
With virtual hosts setup you can leave the site files in the original location that you've setup in Dreamweaver and enter site1, site2, etc. in browser to preview without copying the files to XAMPP's htdoc folder. Your Live View should also function correctly in Dreamweaver after you have properly setup virtual hosts to point to location of files in Dreamweaver.
Your current problem is that local testing server is looking for site files in XAMPP's htdoc folder whereas Dreamweaver is looking for them in a different location (which is not setup for local testing server via virtual host). As a result you can not view dynamic pages in Dreamweaver site location. Setup virtual host to point to Dreamweaver site location in order to view dynamic pages via Live View. Remember to restart Apache after making changes to virtual hosts in order for the changes to take effect.
Hope that helps.

Similar Messages

  • I have downloaded MAMP for Mac and want to use it for working with Wordpress. I had mysql installed before this and would like to uninstall it and use MAMP. It was easy to turn off Apache and PHP but don't know how to uninstall mysql. Please help!!

    I have downloaded MAMP for Mac and want to use it for working with Wordpress. I'm on an Imac with Maverick OS 10.9. I had mysql installed before this and would like to uninstall it and use MAMP. It was easy to turn off Apache and PHP but don't know how to uninstall mysql. Please help!!

    It depends on how you installed it. You have to shutdown the MySQL service first. If you used the standard, but obsolete Startup Item, you can do that with the Startup Item. If you created a launchd script, you can do it with launchctl. Once MySQL is no longer running, you can delete the Startup Item or launchd script and the rest of MySQL.

  • WebAssist Cart help? I know it's off topic but... Could really use some help...

    I've got a shopping cart that is working and I'm trying to update the
    quantities in inventory by subtracting the quantity ordered from the total
    inventory in a table called ITEMS.
    I can update a record after a sale in the cart, but right now it is
    updating by completely replacing the value of the items in inventory with
    the quantity in the checkout cart. So, if there are 800 items, after the
    update, there are -1 total in inventory, not 799.
    The problem is that I don't know how to coordinate the item(s) in the stored
    shopping cart with a call to their ID and quantity in the online database.
    Here's what I have so far:

    Ahhhhhhhh Jeff...<br />If I can get this going...<br /><br />I spent days looking for this solution.<br />Thank you very much.<br />Just bought Dreamweaver CS3 and am battling through the bells and whistles.<br /><br />Liz<br /><br />----- Original Message ----- <br />From: "jefferis" <[email protected]><br />To: <[email protected]><br />Sent: Tuesday, June 19, 2007 9:50 AM<br />Subject: Re: WebAssist Cart help? I know it's off topic but... Could really <br />use some help...<br /><br />>A new message was posted by jefferis in<br />><br />> ADDT - PHP Application Development --<br />>  WebAssist Cart help? I know it's off topic but... Could really use some <br />> help...<br />><br />> On 6/16/07 3:06 PM, in article [email protected],<br />> "[email protected]" <[email protected]> wrote:<br />><br />>> Hi jefferis....<br />>><br />>> How did you solve the problem?<br />>> I am having the same problem trying to incorporate an inventory code into <br />>> a<br />>> shopping cart that will deduct the number of items purchased from my <br />>> total<br />>> inventory to let me and my customers know how many items I have remaining <br />>> in<br />>> stock.<br />>><br />>> Ex:<br />>> inventory: 500 plants<br />>> purchased: 20 plants<br />>> remaining inventory: 480 plants<br />><br />> Yes I did.<br />><br />> I've been struggling with this piece of pie for about 5 days and<br />> thought it might benefit others, so here's a way to update your quantities<br />> in INVENTORY after a checkout success.  I read another thread but found it<br />> way too complex and depended on holding inventory in the session:<br />> http://www.webassist.com/professional/support/kbcompletethread.asp?DiscID=33<br />> 046<br />> But you may lose the info when you go offsite to Paypal, e.g., to complete<br />> the transaction.<br />><br />> Here's my approach using the "checkout_success.php" page.  Using this page<br />> works because user arrives here ONLY after a successful purchase.<br />> First of all, I used the BSM php sample store as a starting point.  I <br />> added<br />> an ItemQuantity field to the items DB to track the stock or items in<br />> inventory in the store.<br />><br />> In order for this automatic deduction of sold items to work, it must be<br />> placed within the do while {  area of the  display page for the cart's<br />> items. } The code is commented below:<br />><br />> <?php<br />> //WA eCart Show If Start<br />> if (!$eCart->IsEmpty())     {    // IF CART NOT EMPTY...<br />> ?><br />>    <h2>Order Receipt </h2>  // STANDARD STUFF TILL NEXT COMMENT<br />>    <br /><br />>    <h3 class="eCart_OrderHeaderInfo">Order number: <?php echo <br />> session_id();<br />> ?></h3><br />><br />>    <p class="eCart_OrderHeaderInfo">This is your order receipt. Please <br />> make<br />> a copy for your records. An email will also be sent to you. </p><br />>    <table class="eC_ShoppingCart" border="0" cellspacing="0"<br />> cellpadding="0"><br />>            <tr><br />><br />>                    <th>Name</th><br />><br />><br />>                    <th>Price</th><br />><br />><br />>                    <th  class="eC_FormItem" >Quantity</th><br />><br />><br />>                    <th>Total</th><br />>            </tr><br />>        <?php<br />> while (!$eCart->EOF())      {  // DO WHILE FOR EACH ITEM IN CART<br />> ?><br />>            <tr><br />><br />>                    <td><img src="/images/thumbs/<?php echo<br />> $eCart->DisplayInfo("Thumbnail"); ?>" alt="" width="100" height="100"<br />> class="eC_ProductThumb" /><br />>                        <p class="eC_ItemLabel"><?php echo<br />> $eCart->DisplayInfo("Name"); ?></p><br />>                  <p class="eC_ItemDescription"><?php echo<br />> $eCart->DisplayInfo("Description"); ?></p>  <p<br />> class="eC_ItemDescription"><?php echo $eCart->DisplayInfo("ID");<br />> $idCall = $eCart->DisplayInfo("ID");?>>  // CREATE A VARIABLE FOR<br />> //THE ITEM's ID NUMBER in the DB<br />> //USE DISPLAY ID TO GET ID # and make it = $idCall<br />> </p></td<br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("Price")); ?></td><br />><br />><br />>                    <td  class="eC_FormItem" ><?php echo<br />> $eCart->DisplayInfo("Quantity");<br />> $solditems = $eCart->DisplayInfo("Quantity");?>  //DO THE SAME FOR <br />> QUANTITY<br />> //SOLD, MAKE QUANTITY SOLD  = $solditems<br />> </td><br />><br />> // NOW UPDATE THE DATABASE. SUBTRACT $solditems from ItemQuantity ( YOUR<br />> //INVENTORY OR STOCK)<br />> //FOR EACH ITEM IN CART. SELECT the item's ID  by $idCall:<br />> <?php<br />> mysql_select_db($database_connBSM, $connBSM);<br />> $query_itemQ = "Update items SET  items.ItemQuantity = <br />> items.ItemQuantity -<br />> $solditems WHERE items.ItemID = $idCall";<br />> $itemQ = mysql_query($query_itemQ, $connBSM) or die(mysql_error());<br />><br />> ?><br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("TotalPrice")); ?> </td><br />>            </tr><br />>        <?php<br />>  $eCart->MoveNext();    //// REPEATS BEHAVIOR FOR EACH ITEM IN CART<br />> }<br />> $eCart->MoveFirst();<br />> ?><br />> BTW, once the items in inventory = 0, the items do not appear in the<br />> catalog.  That is set in the catalog page's recordset.<br />> Jeff<br />> ~~~~~~~~~~~~<br />> Jefferis Peterson, Pres.<br />> Web Design and Marketing<br />> http://www.PetersonSales.com<br />><br />><br />><br />><br />> ------------------------------------------------------<br />> View/reply at <<a href="/cgi-bin/webx?13@@.3bc3e9d6/5">jefferis, "WebAssist Cart help? I know it's off topic but... Could really use some help..." #6, 19 Jun 2007 6:50 am</a>><br />> You must visit the conference to reply. Email replies are not allowed and <br />> will be returned.<br />> Use the unsubscribe form at <br />> <a href=http://www.adobeforums.com/cgi-bin/webx?280@@.3bc3e9d6!folder=.3bc3909c> <br />> to cancel your email subscription.

  • PHP Local Testing Server Not Working!

    Hi Guys,
    I've just set up my PHP local testing server, although its not working properly! If you could help that would be so wonderful!
    Here is my current settings:
    Local Site Folder: C:\XAMPP\htdocs\valsoo\
    Web URL: http://localhost/valsoo/
    Server Folder: C:\XAMPP\htdocs\valsoo\
    Local/Network
    Server Model: PHP MySQL
    I'm testing the 'local testing server' with a file called site_check.php which works in the Local Site Folder root (C:\XAMPP\htdocs\valsoo\site_check.php) but fails to work when the file is within folders (C:\XAMPP\htdocs\valsoo\lesson01). Not all files work in the root either. ANY SUGGESTIONS?
    Thanks so much!

    Brentis wrote:
    I'm testing the 'local testing server' with a file called site_check.php which works in the Local Site Folder root (C:\XAMPP\htdocs\valsoo\site_check.php) but fails to work when the file is within folders (C:\XAMPP\htdocs\valsoo\lesson01). Not all files work in the root either.
    If site_check.php works, your local testing server is working.
    What do you mean when you say that it fails to work when the file is in a folder, such as lesson01? What actually happens? What sort of files don't work in the root? Without more details, it's impossible to help.
    If site_check.php is in C:\XAMPP\htdocs\valsoo\lesson01, you should be able to access the file through http://localhost/valsoo/lesson01/site_check.php.

  • ANN: Video tutorial for defining a PHP local testing server on Windows

    I have created a video tutorial to show how to define a PHP
    local
    testing server on Windows. It's just under 8 and a half
    minutes, and can
    be found here:
    http://experts.na3.acrobat.com/phplocalsitewin/
    I made it for Windows only to avoid confusing viewers with
    too many
    bewildering choices. I'll try to make a Mac version in the
    not too
    distant future, but don't yet have video capture software for
    a Mac.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

    "David Powers" <[email protected]> wrote in message
    news:gfc9vd$2qt$[email protected]..
    >I have created a video tutorial to show how to define a
    PHP local testing
    >server on Windows. It's just under 8 and a half minutes,
    and can be found
    >here:
    >
    >
    http://experts.na3.acrobat.com/phplocalsitewin/
    >
    > I made it for Windows only to avoid confusing viewers
    with too many
    > bewildering choices. I'll try to make a Mac version in
    the not too distant
    > future, but don't yet have video capture software for a
    Mac.
    Great tutorial David, thanks for sharing
    Thierry
    http://www.TJKDesign.com/go/?0
    | Articles and Tutorials
    http://divahtml.com/products/scripts_dreamweaver_extensions.php
    | Extensions
    that keep your markup clean
    http://www.fourlevel.com/ |
    CSS Menus, Gallery, Tab Panels, etc

  • Want to delete mails from Thunderbird but not from the server?

    Hi,
    Please tell me how to configure the settings of Thunderbird so that if i delete any mail from Thunderbird that mail would be delete only from Thunderbird not from server. I'm using IMAP configuration for all my mail accounts and I'm using Thunderbird in my laptop and tablet both.
    Currently i'm using Thunderbird 24.4.0 and i just want to delete my useless mails from Thunderbird but not from the server without using pop-3 settings.
    Actually the reason for this Question arises because whenever i use to uninstall and reinstatement Thunderbird, i use to take "profiles" as a back up and its size is increasing day by day that is making a big issue to me as i cant take a back up of such a big size file.

    Imap mail accounts keep the emails on the server and you see a remote view of those emails and folders.
    When you subscribe to see a folder, the headers are downloaded, when you select an email to read, the entire folder is downloaded to a temp cache facilitating quicker access. If you synchronize folders, then a copy of that folder is downloaded to an mbox file in your profile, so that you have a copy of the server folder. When you make any changes to a synchronized folder, read an email, delete or move etc, then Thunderbird will resynchronize with the server to update the server. A synchronized folder allows you to work in 'offline' mode and this is the best time to perform a backup as you know there is a temporary stop on synchronizing as you are offline. They will resynchronize when you go back into 'online' mode.
    So, with IMAP mail accounts, the folders you see in Thunderbird are the same folders on the webmail server. If you make any changes via Thunderbird or webmail then you are changing the same folder. You cannot delete an email without deleting it from the server, they are one and the same.
    What you can do is move/copy an email into Local Folders and delete the one on the server. The Local Folders emails are kept in your Profile on your computer, these folders/emails are not on the server, unless you chose to keep a copy of them on the server.
    Pop mail accounts cannot see the folders on the server. They only access the server Inbox folder and download emails not previously downloaded to the mail account Inbox in Thunderbird. These emails are kept on your computer in your profile folder. You can select to keep a copy on the server or not. You can choose to delete emails off your computer and off the server or not.
    If the mail account is gmail , have you subscribed or even synchronized to see the 'All Mail' folder ? Gmail's all Mail folder is their Archive folder, it keeps a copy of all of your non-deleted emails. So, you do not need to subscribe to see this folder as it only shows you what you can already see in other folders. It doubles the disc space.
    Please read section on 'All Mail' at this link.
    * http://kb.mozillazine.org/Using_Gmail_with_Thunderbird_and_Mozilla_Suite
    You do not have to download/synchronize the entire folder. You could select to only synchronize the most recent xx days of emails.
    see info here:
    * https://support.mozilla.org/en-US/kb/imap-synchronization#w_configuring-synchronization-and-disk-space-usage

  • HT4914 I often record songs at a particular tempo, iTunes Match will then match it and send it back to me at the original tempo, is there anyway I can stop some songs from being matched. At the moment I have turned match off. But I would like to sync play

    I often record songs at a particular tempo, iTunes Match will then match it and send it back to me at the original tempo, is there anyway I can stop some songs from being matched. At the moment I have turned match off. But I would like to sync playlists.

    How old was this backup? It sounds like it was at least several weeks old.
    You can look directly in the TM backup for the music.
    1. Connect to the external HDD the backup is kept on.
    2. Open a Finder window and select the backup drive in the left hand panel. Double click into the folders until you see a list of folders with dates.
    These are the incremental backups. You can start at the top or the bottom of the list but I suggest you double Latest/<HDD Name>/Users/<Account Name>/Music/iTunes/iTunes Media/Music. From this location you can start looking for the "missing" music. When/if you find it you can simply drag-n-drop to ~/Music/iTunes/iTunes Media/Music on the internal HDD.
    If the music is actually not in the backups (for whatever reason) then you've got a problem.
    You can download the uploaded files from the cloud by deleting the affected tracks from the iTunes library (but not the cloud!), highlighting multiple tracks at once, right-clicking and choosing "download."

  • PHP and SQL Server with DW

    Hi,
    I have a problem with DW. I´d like to develop a site
    using PHP and SQL Server. Anyone knows if is there a extension to
    do this kind connection inside DW?
    I´ve tried to use the string that DW generates to
    connect with MySql and change it to connect with SQL Server,
    however it doesn´t work.
    I´ve already found a extension that do this, but it
    doesn´t work with DW CS3.
    Anyone can help me?
    Thank you,
    Luciano Fernandes
    PS: I have a original DW CS3

    "lucianopopo" <[email protected]> wrote in
    message
    news:ff7k9h$euc$[email protected]..
    > Hi,
    >
    > I have a problem with DW. I?d like to develop a site
    using PHP and SQL
    > Server.
    > Anyone knows if is there a extension to do this kind
    connection inside DW?
    >
    > I?ve tried to use the string that DW generates to
    connect with MySql and
    > change it to connect with SQL Server, however it doesn?t
    work.
    > I?ve already found a extension that do this, but it
    doesn?t work with DW
    > CS3.
    >
    > Anyone can help me?
    >
    > Thank you,
    > Luciano Fernandes
    >
    >
    > PS: I have a original DW CS3
    There used to be the PHAkt servermodel supporting multiple
    databases in PHP
    with Dreamweaver,
    unfortunately Adobe dropped the product after acquiring the
    company that
    produced it before the release of CS3, so
    it's not compatible with Dreamweaver CS3.
    Previous versions are available at
    http://openphakt.sourceforge.net,
    you can
    help development of a CS3 compatible version by posting bug
    reports for the
    error messages you encounter.
    Joris van Lier

  • [svn] 939: Bug: BLZ-67 - Should turn off session persistence in the Tomcat server we ship.

    Revision: 939
    Author: [email protected]
    Date: 2008-03-26 13:35:44 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Bug: BLZ-67 - Should turn off session persistence in the Tomcat server we ship.
    QA: No
    Doc: No
    Checkintests: Pass
    Details - Turning off session persistence in the version of Tomcat that ships with BlazeDS. We don't store much in the session so session persistence doesn't make much sense for us. Users should feel free to turn this back on if they feel they need it.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-67
    Modified Paths:
    blazeds/branches/3.0.x/servers/apache-tomcat-6.0.14/conf/context.xml

    Hi, thank you for your replies, I found out few things about my servlet, and its portability
    and i have few questions, although i marked this topic as answered i guess its ok to post
    I am using javax.servlet.context.tempdir to store my files in that servletcontext temporary directory. But i dont know how to give hyperlink
    of the modified files to the user for them to download the modified files.
    What i am using to get the tempdir i will paste
    File baseurl = (File)this.getServletContext().getAttribute("javax.servlet.context.tempdir");
    System.out.println(baseurl);
    baseurl = new File(baseurl.getAbsolutePath()+File.separator+"temp"+File.separator+"files");
    baseurl.mkdirs();so i am storing my files in that temp/files folder and the servlet processes them and modifies them, then how to present them as
    links to the user for download ?
    and as the servlet is multithreaded by nature, if my servlet gets 2 different requests with same file names, i guess one of them will be overwritten
    And i want to create unique directory for each request made to the servlet , so file names dont clash.
    one another thing is that i want my servlet to be executed by my <form action> only, I dont want the user to simply type url and trigger the servlet
    Reply A.S.A.P. please..
    Thanks and regards,
    Mihir Pandya

  • After editing i can hear effects over tracks but not the tracks themselves?

    after editing and saving as a garage band file i can hear the first two tracks in their entirety, but not the other 8 (except for the reverb over them). if i kill the reverb over these tracks then only silence remains. input, output and monitoring options are identical for all ten tracks. all my edits are still there, including automated volume and pan. please help

    Hello, I am having the same problem. With some exceptions (and this is what's throwing me off) I can hear reverb and echo on tracks but not tracks themselves. I have tried adding echo/reverb to some of the muted tracks and I can hear these effects fine. Yet I have 2 tracks without any effects at all and I can hear those ones fine (there are 12 tracks in all). Any help would be greatly appreciated as this is my senior project and I am due to present on Thursday, June 5.

  • Sort of off topic, but same old question looking for a new answer

    Ok I'm ready to start a new site. I'm going cheap as it's all coming out of my pocket including hosting. I want to put a video chat room on my site. Is there anyway to capture a webcam in this fashion in director. I've done tons of searching but I can't really find anything. I'm trying to avoid using the flash communication server for three reasons. 1) I already have the director multiuser server that will host up to 1000 users (the room will never be anything close to that big 50 peeps tops) and my web host will support it and install it for me. 2) I can't find anything at a really cheap price. I'm looking at 25 cam users at once... 3) Actionscript is nothing I've every really worked with before, but I could do the lingo programming.
    I have a few questions First of all I read something about putting a flash element on the stage, and that the flash player is what captures the webcam. But I assume that it still needs flash communication sever to upload the video. Is this correct?
    Is there an xtra that will do what I  want?
    I read something about encoding the video to realvideo, but I have no clue how as I've never done anything like that before. Will this work and do you know of a tutorial for this?
    Do you know of a really really cheap flash comm host?
    Really off topic but, I could write the text chat end of it in cold fusion. Is there a known way to easily add the video in this way?
    Does anyone know of a cheap off the shelf video chat room that I can put up on my site and just pay for the bandwidth overage that it uses?
    Thanks for any help any of you could give me.
    Cane

    There are several 2.4 GHz MacBook pros shipped over several years.
    If this is your Mac (2007 model) scroll down to the memory section and read:
    http://www.everymac.com/systems/apple/macbook_pro/stats/macbook-pro-core-2-duo-2 .4-15-santa-rosa-specs.html
    Standard RAM:
    2 GB
    Maximum RAM:
    6 GB*
    Details:
    2 GB installed as two 1 GB modules. No slots free.
    *Apple officially supports a maximum of 4 GB of RAM but third-parties have been able to upgrade the system to 6 GB of RAM using one 2 GB and one 4 GB memory module.
    Site sponsor Other World Computing sells MacBook Pro memory, as well as hard drives, batteries, carrying cases, and accessories.
    ... and that sponsor is not a bad place to get RAM at all. They are experts, and back it up with a "money back if it does not work in your Mac" guarantee.

  • I'd like to preorder a cd off iTunes, but the only options for payment are credit cards. I'd like to pay with an iTunes gift card, can I do that? How do I do that?

    I'd like to preorder a cd off iTunes but I don't want to use a credit card, I have a gift card that I'd like to use. Do I have to preorder with a credit card, or can I use the gift card?

    I've seen nothing to indicate that you can't use an iTunes gift card to make a pre-order. If you redeem the card, you should be able to make the pre-order. For general information about pre-orders, see:
    http://support.apple.com/kb/HT5714
    Note, however, that it will be your responsibility to keep track of the charge that will go against your credit balance when the CD becomes available and ensure that you have sufficient balance or a credit card entered to cover the charge. If you don't have sufficient balance at the time the CD is available, the iTunes Store will probably go ahead and make the sale but you will then not be able to download anything further, even things you've already purchased, until you either provide a credit card or redeem another gift card sufficient to cover the amount you owe.
    Regards.

  • Permanent capture only 4 audio tracks but not 16?

    everytime i capture ...the log n capture audio tracks will automatically make all 16 tracks on....i have to manually shift off rest 12 tracks...any solution to permanent capture only 4 audio tracks but not 16?

    this is my picture showing...icant find the audio button...>.<....plz correct me if im wrong..
    [URL=http://imageshack.us][IMG]http://img137.imageshack.us/img137/5505/picture1ye5.png[/IMG][/URL]

  • I have purchased "Adobe Production Studio Premium" (2005) off Amazon, but it will not activate.

    Good day,
    I have purchased a full retail version of "Adobe Production Studio Premium" (2005) (1 user licence) off Amazon, but there are problems  to activate it.
    Tried to activate the software by internet and by phone. Both times equally unsuccessful. Eventually I have located the following link "https://www.adobe.com/cfusion/entitlement/index.cfm?e=cs2_downloads" to resolve the activation process however I could not find the exact package to correspond to my purchase "Production Studio Premium" - instead everything is splintered into different parts. Am I legally allowed to download and install the software from individual parts provided within "the link" I have mentioned or I should consider going for a refund and sending back the "Adobe Production Studio Premium" for a full refund. Bear in mind, I have no other but commercial and business intentions. Help and advise appreciated.
    Thank you.

    If you purchased the CS2 suite then you are allowed to download and install whatever you can of the software thru the Adobe site. 
    You can get more information regarding the situation with the CS2 applications/activations thru the following page:
    Activation Server Unavailable | CS2, Acrobat 7, Audition 3 -
    http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

  • PHP with Web Server 6.0SP2

    I've tried in vain to get PHP 4.1.2 to work with iPlanet Web Server 6.0SP2. Installation on Solaris 8 works fine but with iPlanet Web Server it just will not work.
    I have consulted all relevant documents from php3.de as well as phpbuilder.com with no luck.
    The "solution" posted on php3.de for Web server 6 - modifying the magnus.conf, obj.conf and mime.types simply does not work.
    I need to get this working otherwise I will have no choice but to move to Apache/JBoss rather than iPlanet Web and App server which I dont want to do!
    Thanks
    Arv

    To build PHP with NES or iPlanet web servers, enter the proper install directory for the --with-nsapi = DIR option. The default directory is usually /opt/netscape/suitespot/. Please also read /php-xxx-version/sapi/nsapi/nsapi-readme.txt.
    Hope the following site will certainly help you in getting PHP to work with iPlanet Web Server.... (sure on 4.1x version, have no idea for 6.x vresion... Hope it also work since its a upgraded version :) )
    here is the site....
    http://www.php.net/manual/en/install.netscape-enterprise.php

Maybe you are looking for

  • How to build a Table of Contents from a Sitemap

    I have a large 250+ page website for which I need to build a Table of Contents so that visitors can see the site as a whole based on the Title information. Is this possible in DW CS4?  Or can it be built through a Sitemap?

  • Error with date conversion

    Hi, I receive a date from an IDOC in the format 20061005160300. This date must be converted to insert it in an Oracle database. I wrote a little UDF which cuts the string to 8 characters and puts a TO_DATE(' before and a ','YYYY-MM-DDD') after it. No

  • CS5.5 crashes when connecting to an external drive

    I'm using the blackmagic preset and Premiere Pro CS5.5 for the MAC and it is crashing. It was working at first but when ever I try to import any file from my external drive it crashes. I just have to click on the drive to search and it crashes. Now i

  • Will third party software called "Bug me" and "YAPS" work on the Centro?

    I am currently a Tungsten E2 user. I am considering buying a Palm Centro and want to know if the third party programs "Bugme" and "YAPS" work on the new Centro that is offered by Verizon? Secondly does the Centro have the ability to "tap" in letters

  • Adobe form error ADS: #com.adobe.ProcessingError: Invalid usage right:

    Hi Experts, I 'm trying to create my first adobe form and when i have run this without passing the fillable value and english language is displays fine but i cannot enter the values at run time.Its a print format. but when i'm trying to pass the valu