Site redirecting to homepage with no CSS

Hello,
I am having a major problem and I don't know where to start to fix it. I have just installed wordpress onto my site under /blog/  and it seems every page I click on leads to the homepage without a css file.
I have looked at the source code for this page and it seems it is because of a mixtur of reletive and non-reletive linking. But I can't figure out why it is going to said page in the first place and how I can fix it. The Wordpress install should be fine as far as I can tell to it leads me to believe it something in the main section of the site. i.e. the part created on Dreamwever.
http://bit.ly/11NuBoC   - This is the link for the /blog/ page. You will notice that when you click on any link it goes to the page mentioned above.
And here is the homepage http://bit.ly/18hr4BP
Any help is much appreciated. Thanks

Make any broken links into absolute links, for example change your base.css
<link media="all" type="text/css" rel="stylesheet" href="http://gummet.com/css/base.css">

Similar Messages

  • DWCS6: homepage with Log in box that changes

    Hello everyone, sorry if my questions are stupid, but i'm sort of new about PHP/mysql, i've just learnt how to use databases and so.
    I've checked on google and i couldn't find an answer. I checked on the forum here and i couldn't find what i needed. I'm talking about this:
    I'd like to create a Homepage with the usual "Log in" box. And no problems here. Now, after a user logs in,that login box has to "disappear" and be replaced by another box, with "Welcome, UserName!" without the fields of the log in box. To explain better:
    Before --> box with " Username field, Password field, Log in button | Register button | Forgot your password?"
    After the log in --> box with "Welcome username! | Your control panel | Log out button"
    1) How can i change that box to show something before the login and something else after? I have to redirect the user to an equal page but with a different box (like page1 with login box and page2 with the logged in user box)?
    2) How can i keep the name of the user in the other pages too? something like "xxx.php?IDuser=<etc etc>" in the links with the recordset of the pages on the IDUser filter (when IDUser is = to the parameter from the URL)?
    3) And about the control panel, i have to use IDUser so that user can see his/her data (to check, modify, change, etc)?
    Thanks all for the attention.

    This is the code of the page. I remade it and removed all the extra things. There are the DW automatic codes for:
    - 1 connection, called "amontech"
    - recordset, called rsLogin with IDUser, nome, cognome, email, username and password
    - 1 server behavior, for the user log in
    - the standard html from a model (2 columns + header and footer)
    - 1 external CSS file called styles.css
    <?php require_once('Connections/amontech.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_rsLogin = "-1";
    if (isset($_SESSION['IDUser'])) {
      $colname_rsLogin = $_SESSION['IDUser'];
    mysql_select_db($database_amontech, $amontech);
    $query_rsLogin = sprintf("SELECT * FROM utenti WHERE IDUser = %s", GetSQLValueString($colname_rsLogin, "int"));
    $rsLogin = mysql_query($query_rsLogin, $amontech) or die(mysql_error());
    $row_rsLogin = mysql_fetch_assoc($rsLogin);
    $totalRows_rsLogin = mysql_num_rows($rsLogin);
    ?>
    <?php
    // *** Validate request to login to this site.
    if (!isset($_SESSION)) {
      session_start();
    $loginFormAction = $_SERVER['PHP_SELF'];
    if (isset($_GET['accesscheck'])) {
      $_SESSION['PrevUrl'] = $_GET['accesscheck'];
    if (isset($_POST['username'])) {
      $loginUsername=$_POST['username'];
      $password=$_POST['password'];
      $MM_fldUserAuthorization = "";
      $MM_redirectLoginSuccess = "index.php";
      $MM_redirectLoginFailed = "error.php";
      $MM_redirecttoReferrer = false;
      mysql_select_db($database_amontech, $amontech);
      $LoginRS__query=sprintf("SELECT username, password FROM utenti WHERE username=%s AND password=%s",
        GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
      $LoginRS = mysql_query($LoginRS__query, $amontech) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      if ($loginFoundUser) {
         $loginStrGroup = "";
      if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
        //declare two session variables and assign them
        $_SESSION['MM_Username'] = $loginUsername;
        $_SESSION['MM_UserGroup'] = $loginStrGroup;     
        if (isset($_SESSION['PrevUrl']) && false) {
          $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
        header("Location: " . $MM_redirectLoginSuccess );
      else {
        header("Location: ". $MM_redirectLoginFailed );
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>AmonTech |</title>
    <link href="style.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="container">
      <div class="header"><a href="#"><img src="" alt="Inserite qui il logo" name="Insert_logo" width="220" height="90" id="Insert_logo" style="background-color: #C6D580; display:block;" /></a>
        <!-- end .header --></div>
      <div class="sidebar1">
        <ul class="nav">
          <li><a href="#">Link1</a></li>
          <li><a href="#">Link2</a></li>
          <li><a href="#">Link3</a></li>
          <li><a href="#">Link4</a></li>
        </ul>
        <div id="login_box">
          <p> </p>
          <form id="form1" name="form1" method="POST" action="<?php echo $loginFormAction; ?>">
            <p>User Log Ini</p>
            <p>Username:
              <label for="username"></label>
              <input type="text" name="username" id="username" />
            </p>
            <p>Password:
              <label for="password2"></label>
              <input type="text" name="password" id="password2" />
            </p>
            <p>
              <input type="submit" name="pulsantedati" id="pulsantedati" value="Log In" />
            </p>
          </form>
          <p>  </p>
          <p>Welcome,  !     
          </p>
          </div>
        <p> </p>
        <!-- end .sidebar1 --></div>
      <div class="content">
        <h1> </h1>
        <!-- end .content --></div>
      <div class="footer">
        <p>-----</p>
        <!-- end .footer --></div>
    <!-- end .container --></div>
    </body>
    </html>
    <?php
    mysql_free_result($rsLogin);
    ?>

  • How can I redirect a URL with aliases or redirect?

    Hi all,
    I have this partially working on my servers, but am not 100% sure I am doing this corerectly.
    Basically I have a Web site domain, let's call it product.com
    In server admin I have a site set up called www.product.com under port 80 and another under port 443 for my SSL pages.
    Here is my problem: If a customer types "product.com" in their favorite Web browser address bar, I would very much like the server to automatically redirect them (if that's the correct term) to "www.product.com"   Currently they would end up on http://product.com/index.html when they key in the URL without the "www"  I am concerned this is hurting my SEO and Google analytics as well as being an issue internally for PHP pages that are coded to the "www" addresses.
    I also have a sign-in page for my clients at the address: http://www.product.com/lib/app/auth/authenticate.php.  When a client types "signin.product.com" I want them to go to that long URL for the sign-in page.  I have gotten this to work by setting up a new Site in Server Admin > Web > Sites named "signin.product.com" which then has a single entry on the redirect tab with the URL of the signin page above.  Not sure if that could have been done on the core Web site (www.product.com) or if that was the way I should do it under Server Admin or if there is an easier way to do it.
    Primarily I want to be able to handle redirecting any type of subdomain "xxx.product.com" to another address.  The primary one I want to deal with now is the "product.com" redirecting to "www.product.com".....  Should I just set up another Web site in Server Admin with a redirect like I did for "signin.product.com"?
    Any advice on doing proper redirection appreciated.
    -- Jon

    There are so many ways you could do this. You need to pick what's right for you.
    Some of the options are available through the GUI. Many more are available once you get under the hood and drive Apache directly. Your skill and comfort level will undoubtedly influence which path you take.
    At the first level, Apache groups sites together by the hostname used to access the site.
    If you want 'www.product.com' to go to the same place as product.com you could create one site with an alias, so that Apache uses the same 'site' configuration for both hostnames.
    If you want the two hostnames to do different things then you could create two sites - in this case 'www.product.com' has the full, normal site and 'product.com' has a redirect to the equivalent page on 'www.product.com'.
    Within www.product.com you can also setup selective redirects to the HTTPS site. This will ensure that things like the login form are accessed securely. In this way your HTTPS site is another 'site' in Apache with the SSL configuration.
    One caveat in your post is the use of 'signin.company.com'. You don't describe your network, but if you have only 1 public IP address then this is going to be an issue since you cannot easily run multiple SSL sites on a single IP address - you'll need a different public IP address for each SSL site. This is because the SSL negotiation occurs before Apache knows what site the request is for, and therefore it doesn't know which SSL certificate to use for the connection.
    So, in general, you'll create one site for each variation in your web setup - one for 'www.product.com/port 80', one for 'www.product.com/port 443', one for 'product.com/80' (which redirects to 'www.product.com'), and so on.

  • I was using Internet Explorer but now have disabled it in preference to Firefox. But my Press Reader program by Newspaper Direct will not access the internet and display the paper. Their web site says it works with Firefox

    Under connection options in Press Reader I have three options. Use IE proxy settings; don't use proxy; Use custom proxy settings. I have tried all three and still cannot get a direct internet connection with Press Reader. The Press Reader site says it works with Firefox 2 and above. I am using Firefox 5.0. I can still go to my newspaper site and read the paper but I just can do it via Press Reader and therefore I can not download it for later reading.

    I notice that the home page redirects to a secure (HTTPS) address. I wonder whether there is a setting blocking this? What if you go directly to a secure page -- will it load?
    https://www.itvsn.com.au/include/sweb.dll/product?product=155602&category=92010&site_id=ITVSN
    Your add-ons list shows AVG, ZoneAlarm, and McAfee products. Could one of them be blocking this site? See whether you can add exceptions or just disable them temporarily and test whether that helps.

  • Site redirects to Adobe Site on iPhone and iPad

    The Site that I made with Edge Animate redirects to Adobe's Site (adobeDotCom) on the iPhone and iPad
    Is Edge Animate trying to tell me something?

    Thanks, but it was my mistake. I inadvertently pasted this line of code into my browser-detect:
    window.open("http://www.adobe.com", "_self");

  • 2 Homepages with Iweb ??

    Hi, I am really in trouble...I created 2 homepages with iweb. Homepage 1 is already online. Everything fine so far. The problem is the second homepage as it is apparently using the same index file as homepage number 1 - can this be? I do publish through Strato and not Mac. I export the homepage number 2 to a separate file. But homepage number 1 is always registered together with number 2. i cannot separate the 2 homepages.
    And if I open the folder of homepage number 2 and copy the index file on the same level as folder homepage 1 and hompeage 2 mac askes me whether I would like to replace the existing index file . This is the index file from homepage number 1. If I do this, it is not getting better. My homepage number 2 is not working...urgently need your help - thanks!!

    Yes, I understand perfectly that you are not using MobileMe to publish to, which is why I asked how many domain names you had.
    I know you said that you have separated the folders, but did you separate the domain files? If not you need to do this so that the sites can be published to a folder separately. To find the domain files, go to User/Library/Application Support/iWeb and then domain.sites file.
    Have you given both your sites different names within iWeb at the top? If not, you should do this, or publishing your sites might get confusing.
    When you publish to a folder from iWeb, what you get is a site folder that has the same name as your site within iWeb, plus a separate index.html file. You need to upload both of these. What I suggest you do is go to your second site within iWeb and publish this to a folder again and you should get the site folder and the index file published. Then upload to your server again and if you upload both, then it should work. You do need to place the items in the Public_html folder on your server for your site to be seen.
    If I were you, I would use a good ftp program such as Cyberduck to upload - it is totally free to download and easy to use.

  • Redirect to Homepage upon logout

    Please tell me how to redirect to homepage(example: my homepage is www.oracle.com) when I logged out from my application.

    Hello
    You could try the following
    Set the Logout URL as
    wwv_flow_custom_auth_std.logout?p_this_flow=&APP_ID.&p_next_flow_page_sess=&APP_ID.:999
    Create page 999 with no regions
    In the Security section set Authentication to 'Page is Public'
    In the HTML Header section of this page add the following javascript<script>
    if (window.home) {
    window.home();
    } else {
    location = "about:home";
    </script>varad

  • I cannot remember the name of a certain feature that use to be available. This feature would allow you to set up your homepage with different websites. It kind of resembles the look Cooliris has.

    Where is the feature that would allow you to set up your homepage with different websites.

    Before you do anything, go to Help | Check For Updates and install v3.6.16. There was a security breach at Comodo which is an SSL certificate provider whereby a number of fraudulent certificates were inadvertently issued. This allows a hacker to impersonate any site including online banking and your browser will not display a warning. The latest update in the 3.6.x series blacklists those certificates.
    On the subject of the homepage you asked about, it's probably this add-on: https://addons.mozilla.org/en-US/firefox/addon/homepage-randomizer/

  • I have a site I do business with. They do not authorize passwords unless a dealer. I do no have on an auto save function, as I want to type my passwords in ea

    I have a site I do business with. They do not authorize passwords unless you are a dealer. I do not have passwords on an auto save function, as I want to type my passwords in each time for security. My password for this site will only work a short WHILE, AND THEN it will not be recognized by the site and I cannot get in.
    Then I must contact the company to reset or clear it manually on their end so it can be reset. They always give me the SAME SETUP PASSWORD to use. I use it, then I RESET PASSWORD on my end. The computer seems to remember my user NAME AT least on my computer as it comes up once I start typing the username in. They SAY IT is a settings issue on my end. I do not have this problem on any other site even THOSE WITH higher SECURITY. I need to FIX the issue OR may LOSE ACCESS To the site as is very aggravating for them and they say other have had the problem but usually with chrome but never constantly.I am not that computer literate ,but my husband is an IT Security professor and textbook writer but says doesn't really know Firefox. I do not really want to store passwords on computer as have been hacked several times. He and I do not understand some of the terms mentioned. since it is not a problem with other sites it should be fixable. Please me help using terms I or my husband can understand without having to give Firefox all my passwords. I would be happy to set up something different just for this one site if I need to but need easy instructions. Have cleared the cookies before but it still happens. What setting do I need to change or set to fix this? the other questions that come up seem very different and do not apply. FF 22 now but happened w other FF versions.

    I'm having a little trouble understanding the part about your password having to be reset. Why is that happening??
    Let's start with Firefox's settings:
    (1) You can configure the password manager feature on this tab:
    orange Firefox button (or Tools menu) > Options > Security
    There is a checkbox to enable/disable the feature.
    There also is a "Saved Passwords" button to review and remove any passwords you do not want Firefox to keep.
    That tab also has a feature to set a Master Password so that no one can use your saved passwords without knowing the Master Password. You may need to exit Firefox in order for Firefox to ask for that again.
    Related articles:
    * [[Password manager - Remember, delete and change saved passwords in Firefox]]
    * [[Use a Master Password to protect stored logins and passwords]]
    (2) Site-specific permissions
    If you want to use the password manager for other sites but NOT a particular site, you can configure that in the Permissions Manager.
    In a new tab, type or paste '''about:permissions''' in the address bar and press Enter.
    After the page loads, use the search box in the upper left corner to narrow down the list to the site you want to configure. Highlight the site on the left side, and on the right side, choose Block under Store Passwords.
    (3) Form autocomplete suggestions
    Separate from passwords, Firefox remembers entries you've made into forms (in most cases) and lists the matching ones below the form field in a drop-down.
    To clear a suggestion, press the down arrow key to highlight it and press the Delete key.
    To turn off this feature, see this article: [[Control whether Firefox automatically fills in forms with your information]].
    To review and selectively edit or delete form history entries, you need an add-on. For example, you could try this one: https://addons.mozilla.org/firefox/addon/form-history-control/

  • Looking for a site that shows problems with windows patches or updates.

    Looking for a site that shows problems with windows patches or updates...so I know what not to install.
    Plenty of sites list and summarize individual patches, I want one that consolidates problems and complaints so I can better assess the risk. Currently I'm waiting to install patches several days and doing google searches. That works, but I'd rather find a place
    that does it with expertise.
    Which forums would be best to look for such problems.
    Thanks in and advance for suggestions

    Hi,
    I agreed with Cyber and Rick.
    Windows update helps to keep your PC safer—and your software current—by fetching the latest security and feature updates from Microsoft via the Internet.
    Although there might be some problems when installing it, Windows update is not the one to blame.
    For troubleshooting Windows updates, if needed:
    Fix Microsoft Windows Update Issues
    http://support2.microsoft.com/gp/windows-update-issues
    Best regards
    Michael Shao
    TechNet Community Support

  • My phone was sitting on the table, with nothing turned on, and all of a sudden it sounds like there is air coming out of my speakers.

    My phone was sitting on the table, with nothing turned on, and all of a sudden it sounds like there is air coming out of my speakers.  It does this for 1 minute straight, then will stop. When I pick it up, then set it back down, it does it again.
    HELP!!!

    No nothing will show up on the screen.. If I push the 'home' center button it continues doing it, same with the sleep/wake button.
    I thinking it may be static out of my speakers --but I don't understand why all of a sudden it is dong this. I have had no problems with this phone, until now.

  • Have published iweb site for five years with no problems and just opened a new site and get - 404: Page not found  This error is generated when there was no web page with the name you specified at the web site.-is the problem with iweb or with hosting?  T

    I am sorry if thie is republished-My first time doing this and I am not sure what goes where and where to hear feedback.
    Have published iweb site for five years with no problems and just opened a new site and get -
    404: Page not found 
    This error is generated when there was no web page with the name you specified at the web site.-
    Troubleshooting suggestions:
    Ensure the page you are linking to exists in the correct folder.
    Check your file name for case sensitivity . Index.htm is not the same as index.htm!
    Temporarily disable any rewrite rules by renaming your .htaccess file if it exists
    is the problem with
    iweb or with hosting?
    One Apple tech started to fix Iweb and had to end session and the next said problem with hosting at Network Solutions as it published
    to local folder. NWS has checked sttting a few times-
    Any help would be extremely appreciated as trying to fix this for about five weeks
    Thanks VG
    <Email Edited by Host>

    It's a really bad idea to post your email address - it's an invitation to spam - and I've asked the Hosts to remove it. (Even though I've now noticed you mis-spelled it! - anyway, never post your address in a forum.)
    You have a site here: http://virginiagordon.com/www.virginiagordon.com/WELCOME.html
    If that's not the page you are having trouble with, what is that page's URL?

  • How to migrate sites and blogs made with iWeb 1.1.2 into MobileMe?

    How to republish or migrate sites and blogs made with iWeb 1.1.2 into MobileMe?
    I can not find instructions for that, and when trying to publish into .Mac, I consistently get an error message. The sites would look better as they are, but ...

    tortuga wrote:
    How to republish or migrate sites and blogs made with iWeb 1.1.2 into MobileMe?
    If you're referring to last year's transition from .Mac to MobileMe, your iWeb websites are still available at the same URLs and have also been given a new URL at (www.me.com). For example, (web.mac.com/emily_parker/) will work as will (web.me.com/emily_parker)
    tortuga wrote:
    I can not find instructions for that...
    I don't think there's anything special you need to do, but anyway, this Apple doc may be of interest:
    _dotMac to MobileMe transition FAQ_
    tortuga wrote:
    ...and when trying to publish into .Mac, I consistently get an error message.
    What's the exact text of the error msg? This Apple doc may help:
    MobileMe: Troubleshooting iWeb publishing issues
    Also, MobileMe live chat support is now 24/7 — see this announcement.
    By the way, your Public Profile indicates you're running Mac OS X (10.5.4) — if that's true, you should upgrade to 10.5.8 via  menu > Software Update...

  • After installing 2014.3 my site had multiple issues with Google Chrome

    After installing 2014.3 my site had multiple issues with Google Chrome. After I rebuilt the home page in 2014.3 the site is still not well. With the old software the site worked well with all the browsers and loaded incredibly. Despite Adobe's claim of a faster load with the new software it is much slower and in Chrome at times it won't load up at all.
    The home page had two "Video-Animation light box galleries" by Visual pictures company. One had 12 videos, the other 3 videos. All the videos were streamed from Vimeo. There was also an Edge Animate animation in the middle of the page imported as a .oam file. the rest of the page was nothing special except using some web fonts. Again, these elements worked together well before the update.
    After the update everything loads slower in all browsers and in Chrome all types of weirdness happened. Videos would play randomly, all of the audio from all the videos played as the site loaded. Videos would play in the wrong place. Instead of my animation playing a video from the galleries played in it's place instead.
    I rebuilt most of the home page using a new video gallery and that helped some what but when I placed the animation.oam file in the page had new issues. To survive, I've taken the Animation out which helped but the functionality is still far from being acceptable. My boss is un my backside, other work is not getting done the stress level is through the roof because I was the one who encouraged using all these new Adobe tools (which I'm paying for personally). Now you broke it with a new update. This is not the first time I've been caught out with problems with updates. I couldn't use SpeedGrade for months following an update. ADOBE MUST VET THEIR       

    Sorry,
    It was slated to go to the Creative Cloud - Muse area. How it got to Photoshop is beyond me.
    Bob

  • Some Flash Sites are not displayed with Flash Player 9

    Hello everyone,
    After having upgraded to Flash Player 9 I cannot view some
    flash sites on either FF or IE.
    I have checked around with other users also and they cannot
    see them either.
    Although the page seems to be loading with title etc. it
    remains blank or it shows a blank block where it is supposed to be
    the flash movie.
    The problem is that it only happens to dynamic flash sites
    that load text and images from external documents.
    With Flash Player 8 they worked just fine.
    The problem is that it is our company's page so we want to
    have it up and running for everybody.
    You can check the page here:
    http://www.ideaspot.gr
    Any help would be appreciated.
    Thank you in advance

    "Jeckyl" <[email protected]> wrote in message
    news:e975l6$94n$[email protected]..
    >> I had this kind of problem with Flash sites that
    were made with Swish Max. Swish had to release a patch to fix old
    swfs made with
    >> Swish so that they would work again with the Flash 9
    player. It was still not 100% working right so I had to convert
    files to
    >> Adobe Flash. Took a lot of work and was a real pain
    in the arse.
    >
    > What do you mean "still not 100% working right" .. the
    patch from SWiSHzone fixes SWF files correctly to work with FP9 ..
    there
    > was only one issue involved and it corrects thar ..
    there should be no need to do anything with converting to Adobe
    Flash to fix
    > the problem. Perhpas you simply uploaded the wrong files
    ( a lot of people who fixed their swf files then loaded the old swf
    > files back to their server .. or didn't clear their
    internet caceh and so did not see the fixed files anyway).
    When a customer's business website goes down after installing
    Flash Player 9 he just wants the site back up. First I had to
    figure
    out that they installed the Flash 9 player and then I had to
    go to the Swish site to find out that Swish files won't run right
    on
    the Flash 9 player unless they get patched first. After
    running the downloaded patch on all the swfs on the site (yes
    uploaded
    correct files and cleared the cache) there were still odd
    things happening. I didn't have time to analyze why this was so, I
    just
    had to put the site back up and fast. Now that I have that
    site back up (I have others that will need fixing too, no doubt), I
    will go back and test everything again with Swish.
    There are a whole lot of hours being lost over this
    Swish/Flash9 player issue. Regardless of who's fault it is, there
    are many
    Flash sites down now.
    tralfaz

Maybe you are looking for

  • How do I open and close VIs from within a VI?

    Ladies and gentlemen, I would like to use a VI to open and close other VIs based on user input.  Example:  The first VI will have text that reads:  "Does the car have heated mirrors?"  There will be two buttons: one for "YES" and the other for "NO."

  • Error 1003 when building exe

    Hi all, I saw a couple of thread of other people here having the same "1003 error" when trying to build an exe with LV 7.1.1 The exact text error is : Error 1003 occurred at Open VI Reference in Dist Copy Non-VI Files.vi->Dist Build LLB Image.vi->Dis

  • FCP Crashing?

    FCP crashes when XL1 is fw connected. I have enclosed part of the report. I have been working on a project for months now and everything has been working smoothly. Now, when I try to fw my project to my canon xl1, FCP crashes. ( I have been doing it

  • Library Management: External Hard Drive

    I am running aperture 3 off of my laptop and, due to my hard drive filling up, hoping to house my library on an external hard drive. Ideally I would be able to set up a smart album for each project that housed photos rated 3 stars and up. The entire

  • External application input/output

    Hi. I'm trying to communicate with an external shell program - this takes input, goes away and does stuff which includes generating a lot of output, and then requires more input. I need to know when the process is ready for input again, before I send