Getting No input file specified. in php with index.php

I just installed on a server (soalris10/u6 sparc) Web Server 7.0u4 (upgraded from u3), and I am now getting "No input file specified." for any php doc root, I now have to type the full path to get the main page.
I am using the php part of the Sun coolstack 1.3.1 and it used to work fine with web server 7.0 u3, but now after the upgrade its not loading index.php
for example I am going to http://server.domain.com/wiki used to work by loading index.php, but now I have to type the full index... http://server.domain.com/wiki/index.php?title=Main_Page
Any help is appreciated.

If you're not currently using a php.ini, you can pass the parameter to PHP via your FastCGI configuration. Something like:
Service fn=responder-fastcgi
        app-path="/export/WS7/third-party/php/php_fcgi"
        bind-path="$(lc($urlhost))"
        req-retry=5
        type="*magnus-internal/fastcgi*"
        app-env="PHPRC=/export/WS7/fooBaz/config"Now place a file called php.ini in /export/WS7/fooBaz/config and make sure that the UID Web Server is running as has permission to read it.
Common syntax is KEY = Value. An example would be:
cgi.fix_pathinfo = Off
session.bug_compat_42 = Off
session.bug_compat_warn = Off
magic_quotes_gpc = Off
memory_limit = 128M
post_max_size = 128M
upload_max_filesize = 128M
fastcgi.logging = true

Similar Messages

  • Convertor - No Input File Specified

    Post OS3.0 everything appears to work but the Convertor app tries to load but fails with the error message "No input file specified.
    It starts to launch the browser but then fails afer a few seconds with the above error message ?

    Osgood wrote:
    > Osgood wrote:
    >> E Michael Brandt wrote:
    >>>
    http://jenseng.com/archives/000035.html
    >>>
    >>
    >>
    >> Right, thanks. I'm gonna have to have a look and see
    what's missing.
    >
    >
    > Nothing was missing....just a poxy case sensitive issue
    on a file name.
    > This stuff really f--ks with my brain sometimes.
    >
    > Thanks for the heads-up.
    >
    > A bad day has just got a little better :)
    >
    happy to have been of some help with your day.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • [half way] LEMP No input file specified. loading php

    Okay so I am new to Nginx and I seem to have borked the install.
    My localhost works initially when I start but put when I refresh it says unable to connect. I think I have done some bad tinkering. I've been following this guide : https://wiki.archlinux.org/index.php/nginx
    but from :
    Step 2: Nginx configuration
    Step 2a: Adding to main configuration
    Inside each server block serving a PHP web application should appear a location block similar to:
    I seem to screw everything up.
    Any advice welcome.
    I know I should post my config files but I really don't know which bits I should post so if would be so kind as to point me in the right direct else this would be a really long topic
    Last edited by Arch-Hoochie (2014-09-24 11:51:40)

    That text is indeed not very clear.
    Look at the example config shown at the end of section Step_2a:_Adding_to_main_configuration
    Notice that in the example, the root path in specified directly under server, and not inside location
    That line indicates you can put 'root path/to/folder' in several places in the config file :
    - the 'server { ' block   (before any location blocks)
    - 'location / {' block
    - 'location ~ {' block
    I THINK what "2. Another occasion ....." tries to say is that if you do have 'root /path/to/folder' in several locations this can cause problems if the paths are different.

  • Hoe to get the input file componets value

    hi ,
    i have a input file component and a command button in my jspx.
    i wrote a method for the command button which needs the value in the input file component.
    both the methods inputFile1.getValue() and inputFile1.getSubmittedValue() is returning null for me.
    when i browse some file and i click on the button the field is getting reset. i mean i am losing the browsed file.

    That isn't an input file. An input file is one that the user is uploading to the application server. What you seem to be asking is how to get an audio file that is already on the application server to play.
    On the other hand, you might be asking how to combine the two operations - upload the file, then play it. So in the solutions you've been given so far, the UploadedFile object has methods to tell you what is in the file and a getInputStream method to get the data in the file as an input stream. Now what you need is a correct value for the objectMedia's source property. This needs to be a URI for a file on the application server - a filename, but in relation to your application's base directory. Take the inputStream and write it as a file on your application server, and then set the objectMedia's source to that file's name.
    You may also need to consider a clean-up operation to delete the file when the user is done with it, unless you WANT it saved permanently on the application server. The other alternative is to play the file directly from it's input stream, but you won't be able to use an objectMedia component to do this.

  • Do I not get the "open file after publishing" checkbox with the trial version?

    I owned the Adobe Acrobat 8 Professional version on my pc, and recently bought a Mac. Do I not have the option to "Open file after publishing" checkbox with the trial version? Do I have to repurchase the whole program to get that?

    uninstall.
    download from prodesigntools.com.
    if you follow all 7 steps you can directly download a trial here:  New Adobe Lightroom 6 (CC) Direct Download Links – Free Trials | ProDesignTools
    and activate with your serial number.
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

  • Getting a flv file to start playing with no sound

    Hello,
    I am trying to get my flv file to start playing when the page is loaded with no sound, but I am have no luck. The flv file starts playing fine with the sound on, and I can turn the sound off with my volume controller, but I need it to start playing with no sound. Please help.
    var restartTimer:Timer = new Timer(19000,1);
    restartTimer.addEventListener(TimerEvent.TIMER, startTimer)
    var myImage:mcImage = new mcImage;
    var myReplayBtn:mcReplayBtn = new mcReplayBtn;
    //--------------------Video Controls---------------------
    var videoConnection:NetConnection = new NetConnection();
    videoConnection.connect(null);
    var videoStream:NetStream = new NetStream(videoConnection);
    videoStream.play("sebring09.flv")
    var metaListener:Object = new Object();
    metaListener.onMetaData = onMetaData;
    videoStream.client = metaListener;
    var video:Video = new Video(195,132);
    video.attachNetStream(videoStream);
    addChild(video)
    swapChildren(whiteOutline, video)
    video.mask = myMask
    video.x = 7.5;
    video.y = 3;
    function onMetaData(data:Object):void
    //------------------------Timer---------------------
    function startTimer(event:TimerEvent):void
    addChild(myImage)
    myImage.x = 9;
    myImage.y = 20;
    addChild(myReplayBtn)
    myReplayBtn.x = stage.stageWidth/2;
    myReplayBtn.y = stage.stageHeight/2 - 12;
    myReplayBtn.addEventListener(MouseEvent.CLICK, replayMovie)
    myReplayBtn.buttonMode = true;
    function replayMovie(event:MouseEvent):void
    videoStream.play("09_Sebring_incar_Cut.flv");
    removeChild(myImage)
    removeChild(myReplayBtn)
    restartTimer.start();
    restartTimer.start();
    //-------------------------Audio Controls---------------------------------
    var soundVol:SoundTransform = new SoundTransform();
    var soundVolume:Number = 1;
    // Code that handles the volume slider
    var trackBounds:Rectangle = track_mc.getBounds(track_mc);
    var xPos:Number = trackBounds.x;
    var yPos:Number = trackBounds.y;
    var widthPos:Number = trackBounds.width-track_mc.slider_mc.width;
    var heightPos:Number = 0;
    var bounds:Rectangle = new Rectangle(xPos,yPos,widthPos,heightPos);
    track_mc.slider_mc.x = widthPos;
    track_mc.mouseEnabled = false;
    track_mc.slider_mc.buttonMode = true;
    track_mc.slider_mc.addEventListener(MouseEvent.MOUSE_DOWN,dragSlider);
    stage.addEventListener(MouseEvent.MOUSE_UP,stopSlider);
    function dragSlider(event:MouseEvent):void {
    event.target.startDrag(false,bounds);
    addEventListener(Event.ENTER_FRAME,setVolume);
    function stopSlider(event:MouseEvent):void {
    track_mc.slider_mc.stopDrag();
    removeEventListener(Event.ENTER_FRAME, setVolume);
    function setVolume(event:Event):void {
    soundVolume = track_mc.slider_mc.x/widthPos;
    soundVol.volume = soundVolume;
    SoundMixer.soundTransform = soundVol;

    you can use the soundmixer's soundtransform to control all volume but, unless you have multiple sounds, you should probably use the netstream's soundtransform.
    in either case, to start your video with no sound, assign the volume property in you onMetaData function:
    function onMetaData(data:Object):void {
    var st:SoundTransform = videoStream.soundTransform;
    st.volume = 0;
    videoStream.soundTransform = st;

  • How can i get a photoshop file that is compatible with my mac help needed....... imac G5 power mac 8,2

    photoshop file that is compatible with my imac g5 help needed much..............

    If you go to the Apple menu and then click on About This Mac, that should tell the Mac OS X Version
    and type of Processor
    Chances are for a PowerPc processor, photoshop cs4 is the newest version you can use
    What about your laptop?
    Is it a mac as well?

  • How to get the original file name in chinese with upload component?

    It is inconvenience for user to upload file with name only in english. When upload a file with chinese file name, the file name gotten from "fileUpload1.getUploadedFile().getOriginalName()" is just like "缃戠粶鍥�.jpg". Do somebody have a good idea?

    I spoke to the component engineers regarding this issue
    First please check if the s page encoding is set correctly, as browsers tend to default to use the encoding that was used for the page when submitting the request.
    (Because of how the JSF response writer is written, multibyte characters can be written correctly even if the encoding is not set correctly so the fact that form correctly rendered chinese characters is not proof that the encoding was set correctly).
    If you established that the page encoding is correct, then there is a
    bug in the FileUpload. The method that gets the name is a straight
    shot through to an Apache FileUpload library method. Technically this
    ought to be resolved by that method checking the request body
    character set before parsing the parameters.
    - Winston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • Problem with getting Drupal "related files" to be discovered

    Why do I get this message when I try to see the related files in a drupal site?
    "Dynamically related files could not be resolved because your credentials don’t allow file activity on the server"
    I have set-up the site correctly for Dreamweaver and specified a testing server.
    Thanks in advance.
    Rob

    Hi David,
    Thanks for your reply!
    Yes I can see my site in Live View and I can actually see the related files but only for the index.php file.  For all other attemps I get the error message posted above.
    Unfortunately my trial version has just today expired so this will be a mute point.  During the trial period I contacted Adobe support several times but was told that there was no support for a trial version.  I was surprised and mentioned that unless I could get this to work I saw no point in upgrading from Web Premium CS4 to CS5.  All I was given was the programmed answer that no support was available unless I bought the upgrade.  Catch 22 apparently.
    I am interested in Drupal and other CMS frameworks because of my vision of the future and this was my primary reason for looking at the upgrade.  However I see little reason to upgrade if the actual CSM functioning is still in beta stability.
    I guess that, like Microsoft, Adobe is so successful that the company dosen't really care about present customers upgrading to the latest version.  My business must be very different since for some reason I value present long-time customers very highly and will actually try to help them use my new products so that they will want to buy them.  Oh well.
    Again, thank you for your response.
    Robert

  • What is an input file

    trying to access peace fm manchester and keep getting message no input file specified can anyone tell me how i do this

    Hi @mariejoe ,
    Thank you for visiting the HP Support Forums and Welcome. I have read about your HP Notebook displaying No input file specified while trying to get to Peace Fm Radio. Here is a link that might work.
    Looks like there is a plugin that is needed.
    Are you able to play a CD?
    I would be happy to assist if needed as there are many models of HP Notebooks, I would need the model number.
    How Do I Find My Model Number or Product Number?
    Please respond with which Operating System you are running:
    Which Windows Operating System am I running?
    Please let me know.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • To read the data given in inbound lagacy input file

    Hi Experts,
    My requirement is that i have got a input inbound lagacy file that has around 31 fields that are separted by space now i have to read those values using open data set and read data set in a internal table.
    each field in legacy input file is being mapped with sap technical field and the internal table has to be populated by taking the data given in the input file.
    Please provide with sample code or useful link to get the internal table populated using dataset method.
    satisfactory answers would be rewarded.
    thanks,
    Naveen

    Hi Naveen,
    Declare ur File name.
    pa_file  LIKE rlgrap-filename OBLIGATORY.
    ATA : BEGIN OF t_file OCCURS 0,
           data(1000) TYPE c,
           END   OF t_file.
    From Application Server
      OPEN DATASET pa_file FOR INPUT IN TEXT MODE.
      IF sy-subrc = 0.
    Reading the flat file from the application server.
    perform read operation.
        DO.
        READ DATASET pa_file INTO t_file.
       split t_file by spaces and move to ur internal table.
        IF sy-subrc EQ 0.
          APPEND to internal table (ur structure).
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
        CLOSE DATASET pa_file.
    Regards,
    Manoj.

  • How to use spry in the dreamweaver with the php/mysql

    hello,
    Iam new to the spry framework
    and i want to know can we use the spry in the dreamweaver
    along with php / mysql code
    if so please tell how to do this
    thanks in advance

    swetha123 wrote:
    > but when i complie this page it is not showing the
    preiew or any thing in the
    > browser i saved this page with the extension .php if i
    run the same page with
    > .html then i can see the design but it is not being
    executed
    The reason you get nothing when you save the page with a .php
    extension
    is because you have display_errors turned off, so you can't
    see the
    error message telling you there's a syntax error. The
    semicolon is
    missing at the end of this line:
    > echo "<font color='white'>Hello
    Swetha</font>"
    The reason it doesn't work with an .html extension is
    probably because
    you haven't uploaded SpryAssets/SpryTabbedPanels.js. I have
    copied your
    page and tested it locally with the correct JavaScript file,
    and the
    tabbed panels work as expected.
    There are lots of other mistakes in your page. You can't use
    float and
    position:absolute on the same element. In at least one place,
    you have
    used </br> instead of <br />. You have also got
    an closing paragraph tag
    after the paragraph that contains abc.jpg.
    Getting Spry or any other JavaScript library to work
    correctly relies on
    good, clean code. Your mixture of inline styles and font tags
    is going
    to make it difficult to incorporate Spry into your pages. I
    suggest you
    improve your HTML and CSS before bringing Spry into the mix.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • 'unable to connect' and  index.php

    Hi. 
    I am developing a Web Site and index.php is my point of entry.
    Document Root     Library/WebServer/Documents
    so my path is:       Library/WebServer/Documents/dwwdSite
    httpd.conf file is modified to add index.php  and have it listed first.
    <IfModule dir_module>
    DirectoryIndex   index.php   index.html
    <IfModule>
    Troubleshooting:
    I was using Netbeans IDE and when I ran index.php it opened in the browser.
    When I launched 'any' of my index.php files from Netbeans IDE, they opened correctly in the brower
    I am NOW using DreamweaverCC and when I run the index.php Error Message ' Unable to Connect'.
    For the last 2 days I have been working on this and I am completely stuck.
    This morning I thought of another way to test the 'unable to connect' error.
    I decided to copy this same file into Netbeans IDE and I NOW get the same Error Message ' Unable to Connect'
    when running index.php from Netbeans.
    Somehow, my settings are not correctly configured anymore.
    Here are my screenshots from Dreamweaver > manage sites.
    I believe that this is a rather simple fix that I am somehow not seeing.
    Maybe some can spot some mistake.
    I appreciate your help and explanation.

    Hi Sudarshan.
    You have been very kind and very clear in your explanation.
    One of the very best that I have ever communicated with on this forum !
    I have checked many, many things.
    I wanted to make certain that I killed apache and restarted it.
    I do not think it is RUNNING at all.
    1.
    myNameMacBookPro:~ myName$ pwd
    /Users/myName
    2.
    myNameMacBookPro:~ myName$ ps -ax | grep http
    1892 ttys000    0:00.00 grep http
    3.
    myNameMacBookPro:  myName$ hostname
    local
    4.
    myNameMacBookPro:etc myName$ cd apache2
    reginaMacBookPro:apache2 myName$ ls
    extra            httpd.conf.pre-update    mime.types        other
    httpd.conf        magic            original        users
    5.
    myNameMacBookPro:apache2 myName$ sudo nano httpd.conf
    myNameMacBookPro:apache2 myName$ sudo apachectl -k restart
    Syntax error on line 1 of /private/etc/apache2/users/myNameBU.conf:
    Invalid command '{\\rtf1\\ansi\\ansicpg1252\\cocoartf1187\\cocoasubrtf370', perhaps misspelled or defined by a module not included in the server configuration
    httpd not running, trying to start
    myNameMacBookPro:apache2 myName$
    6.
    The above code may be a hint at part of the problem.
    I created myNameBU.conf   as a backup when I was editing the file.
    QUESTION.  Why is /private/etc/apache2/users/myNameBU.conf:
    being referenced above ?
    7.
    I scanned my ports from preferences and found these two which I believe are what you stated they should be.
    port 80 is html
    port 8080 is html-alt
    8.
    I have modified this line and tried it both ways restarting apachectl each time.
    AllowOverride None
    AllowOverride All
    9.
    And here is a part of my httpd.conf.
    excerpts.
    httpd.conf
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User _www
    Group _www
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/Library/WebServer/Documents"
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # features.
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    </Directory>
    10.
    I took a look at this too.
    usr/bin
    #path to httpd binary including options if necessary
    HTTPD = "usr/sgin/httpd"
    # pick up any environmental variables if test - f /usr/sbin/envvars; then ./usr/sbin/envvars
    fi
    STATUSURL = "http://localhost:80/server-status
    11.
    Just a reminder.
    I started writing .php scripts with Netbeans IDE.
    The programs ran:  I got output in the brower.  Things worked just fine !
    I started writing .php scripts with DreamweaverCC.
    The programs NEVER ran.
    I have always gotten 'Unable to Connect"
    Firefox/Safari can't establish a connection to the server at localhost.'
    12.
    QUESTION.
    At one point I was on the phone with a member of the Adobe Technical Support Team.
    They connect to my desktop (only) remotely.  I am very cautious about this.
    Could something have been inadvertently changed when they did this ?
    They do need to connect through a PORT - yes ?
    This is very frustrating and I am loosing days of work.
    I want to get back to Web Development
    I love Adobe products but this should not be such a huge obstacle.
    When I called Technical support (after much troubleshooting individually and on this forum)
    the fellow told me that the ONLY support FTP - not LOCALHOST.
    This makes no sense.  People develop 'locally' then put it ftp it in the production stage.
    Again, I appreciate your assistance.

  • 'unable to connect' and 'localhost' and index.php and dreamweaverCC

    Hi. 
    I am developing a Web Site and index.php is my point of entry.
    Document Root Library/WebServer/Documents
    so my path is: Library/WebServer/Documents/dwwdSite
    httpd.conf file is modified to add index.php  and have it listed first.
    <IfModule dir_module>
    DirectoryIndex   index.php   index.html
    <IfModule>
    Troubleshooting:
    I was using Netbeans IDE and when I ran index.php it opened in the browser.
    When I launched 'any' of my index.php files from Netbeans IDE, they opened correctly in the brower
    I am now using DreamweaverCC and when I run the index.php Error Message ' Unable to Connect'.
    For the last 2 days I have been working on this and I am completely stuck.
    This morning I thought of another way to test the 'unable to connect' error.
    I decided to copy this same file into Netbeans IDE and I NOW get the same Error Message ' Unable to Connect'
    when running index.php from Netbeans.
    Somehow, my settings are not correctly configured anymore.
    Here are my screenshots from Dreamweaver > manage sites.
    I believe that this is a rather simple fix that I am somehow not seeing.
    Maybe some can spot some mistake.
    I appreciate your help and explanation.

    Site window settings.
    Site Name: dwwdSite
    Local site folder: /Library/WebServer/Documents/dwwdSite
    Server window settings.
    Server Name: testing Server
    Address: Macintosh HD/Library/WebServer/Documents/dwwdSite
    Connect using: Local/network
    Testing: yes (checked)
    Server folder: /Library/WebServer/Documents/dwwdSite
    (I also tried this: Server folder: /Library/WebServer/Documents)
    Web URL: http://www.localhost/dwwdSite
    Server Advanced tab: (within server window settings)
    Testing server: PHP MySQL
    Advanced Settings window.
    Local info: Web URL: http://www.localhost/dwwdSite
    Enable cache: yes (checked)

  • Apache is ignoring index.php

    I am using the distributed version of Apache in Lion and apparently have it working! However, though it serves index.html files it does not recognise index.php files. It just displays the content of the file. If I try to open a directory containing index.php it displays the contents of the directory. In httpd.conf I have the following:
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
        DirectoryIndex index.php index.htm index.html
    </IfModule>
    I thought that this should be sufficient for the server to be forced (persuaded!) to serve the index.php file.
    What am I doing wrong? I never had this trouble with SnowLeopard!

    Thanks Camelot.
    Yes, it is in httpd.conf and all the modules were being loaded!
    I've since added:
     <IfModule mod_php5.c> # If php is turned on, we respect .php and .phps files. AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps  </IfModule>
    because I found that it wasn't really serving normal php files - let alone index.php!
    And it's now sprung into life - thank goodness 

Maybe you are looking for