MS files converted to .PHP files

I installed CS3 and all of my Microsoft Publisher &
Powerpoint files now have .php file extensions. They will not open
in their original application nor in Dreamweaver. I tried changing
the "open with" file type and that doesn't work. I have searched
the knowledge base and forums, Dreamweaver help, and the internet
and cannot find any info. Any suggestions?

Did the actual extensions change to .php or are you saying
that the original
extensions (*.ppt, etc) are now registered to open with
another application?
I find it hard to believe that CS3 would actually change the
extensions, so
assume that you are dealing with the second case.
In this case, you need to remap what application handles the
original file
extensions. To do this, open My Computer, navigate to where
the affected
files are, and repeat the following for each file type that
was changed.
1. Select "Tools -> Folder Options"
2. Select "File Types"
3. In the "Folder Options" window, scroll through the list in
the
"Registered File Types" pane, and locate the affected
extension (i.e. *.ppt,
etc)
4. In the "Details for 'PPT' Extension" pane, click
"Change..."
5. Select the correct application and click "OK"
6. Click "Close".
At this point, the files should appear in the File windows
with the correct
icon, and should open with the correct application.
In the future, you want to pay particular attention to what
the application
is asking when you install it to avoid this situation. I
don't think that
Adobe would change system-wide settings in such a cavalier
fashion without
asking, but I could be wrong.
Hope this helps,
Steve
"sonoranhawk" <[email protected]> wrote in
message
news:ffg2nm$5sr$[email protected]..
>I installed CS3 and all of my Microsoft Publisher &
Powerpoint files now
>have
> .php file extensions. They will not open in their
original application nor
> in
> Dreamweaver. I tried changing the "open with" file type
and that doesn't
> work.
> I have searched the knowledge base and forums,
Dreamweaver help, and the
> internet and cannot find any info. Any suggestions?
>

Similar Messages

  • Please help me with converting a PHP to Java Servlet

    Hi
    Can any one help me to convert a PHP file to Java Servlet
    <?php
    / yadl_spaceid - Skip Stamping /
    // Yahoo! proxy
    // Hard-code hostname and path:
    // search = http://api.search.yahoo.com/WebSearchService/V1/webSearch
    // api.local
    // api.travel
    define ('PATH', 'http://api.search.yahoo.com/WebSearchService/V1/webSearch');
    $type = "text/xml";
    // Get all query params
    $query = "?";
    foreach ($_GET as $key => $value) {
    if(($key == "output") && ($value == "json")) {
    $type = "application/json";
    $query .= urlencode($key)."=".urlencode($value)."&";
    foreach ($_POST as $key => $value) {
    if(($key == "output") && ($value == "json")) {
    $type = "application/json";
    $query .= $key."=".$value."&";
    $query .= "appid=jennyhan_ac";
    $url = PATH.$query;
    // Open the Curl session
    $session = curl_init($url);
    // Don't return HTTP headers. Do return the contents of the call
    curl_setopt($session, CURLOPT_HEADER, false);
    curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
    // Make the call
    $response = curl_exec($session);
    header("Content-Type: ".$type);
    echo $response;
    curl_close($session);
    ?>

    I'm locking this [double post|http://forums.sun.com/thread.jspa?threadID=5394158&messageID=10749368#10749368].

  • Convert 'chr' php function in jsp

    Hello everybody
    I'll try to convert this php code in jsp but i've got several errors when using the "replaceAll" java function.
    I aim to have an html editor to insert it in my website forum.
    Can somebody help to solve this problem, otherwise, can anyone provide me an example of an html editor written in jsp.
    $conceptRTEvalue = str_replace(chr(92).chr(34),chr(34),$conceptRTEvalue);
    //convert all types of single quotes
       $tmpString = str_replace(chr(145), chr(39), $tmpString);
       $tmpString = str_replace(chr(146), chr(39), $tmpString);
       $tmpString = str_replace("'", "'", $tmpString);
       //convert all types of double quotes
       $tmpString = str_replace(chr(147), chr(34), $tmpString);
       $tmpString = str_replace(chr(148), chr(34), $tmpString);
       //replace carriage returns & line feeds
       $tmpString = str_replace(chr(10), " ", $tmpString);
       $tmpString = str_replace(chr(13), " ", $tmpString);

    What are the errors?

  • Convert from php to java

    Hello all,
    Can someone convert this code from php to java.
    <?php
    function bitbybit_crc32($str,$first_call=false){
    //reflection in 32 bits of crc32 polynomial 0x04C11DB7
    $poly_reflected=0xEDB88320;
    //=0xFFFFFFFF; //keep track of register value after each call
    static $reg=0xFFFFFFFF;
    //initialize register on first call
    if($first_call) $reg=0xFFFFFFFF;
    $n=strlen($str);
    $zeros=$n<4 ? $n : 4;
    //xor first $zeros=min(4,strlen($str)) bytes into the register
    for($i=0;$i<$zeros;$i++)
    $reg^=ord($str{$i})<<$i*8;
    //now for the rest of the string
    for($i=4;$i<$n;$i++){
    $next_char=ord($str{$i});
    for($j=0;$j<8;$j++)
    $reg=(($reg>>1&0x7FFFFFFF)|($next_char>>$j&1)<<0x1F)
    ^($reg&1)*$poly_reflected;
    //put in enough zeros at the end
    for($i=0;$i<$zeros*8;$i++)
    $reg=($reg>>1&0x7FFFFFFF)^($reg&1)*$poly_reflected;
    //xor the register with 0xFFFFFFFF
    return ~$reg;
    $str="123456789"; //whatever
    $blocksize=4; //whatever
    for($i=0;$i<strlen($str);$i+=$blocksize) $crc=bitbybit_crc32(substr($str,$i,$blocksize),!$i);
    ?>

    I am looking someone to help me w/o $.Go away.
    This reminds me of this one time. I had written this dice roller in PHP (still in use, actually) and someone who was using it thought it was nice and wanted a version of it for himself. Only he was running a different game system, some home brewn thing, so it had to be different in certain respects.
    First he just asked me if he could have the dice roller I wrote. I thought about it but eventually agreed. It wasn't much as code. Then he asked me to modify it for him, explaining that he could not do it himself. For some reason I was feeling generous that day, so I did not ask him for his physical address and send him a mail bomb. Instead I said that I would modify it for him if he explained what modifications he needed.
    Then he told me to go read his game system on his web site and figure it out for myself. I must have been in a saintly attitude that day because I actually went and looked at his site - which predictably, was totally disorganized and incomprehensible. I pointed this out and he told me that I would have to read through everything once or twice, and also, it wasn't done yet so I should check back periodically.
    This is a person who I had never met in my life, even online, and with whom my first contact was his request for my dice roller.
    Where do these people COME from?
    Drake

  • Converting dynamic php/mySQL page to Android app using cs5.5

    I have a simple webpage designed in DW5 that used standard php & SQL to query a small (2000 record) table and then self-reload on click to display the results (http://www.aspergillus.org.uk/nac/interactions/patientchoosegeneric.php). I now want to turn it into an android app.
    I have CS5.5 installed & running along with Android sdk - everything works fine. I go into mobile applications and I seem to be able to work in php & access my mySQL databases to develop as normal.
     I preview using live code and get the result I want but PhoneGap/CS5.5 refuses to build. 
    I think I really need a hint or two from someone with a much better overview of how phonegap/cs5.5. work together. I was hoping that the integration of a php editor and phonegap might mean that I could adjust the layout of my page (using the helpful default pages in Mobile Applications ), put in my php/SQL code and then build and PhoneGap/CS5.5 would happily import my database table for me! I have used a website based tool that built an 'App' (crude but it worked) just by pointing it at my webpage so it didn't seem beyond the realms of possibility. I assume that that was naive?
    If I now have to go back and design from the ground up using jQuery & CS5.5 I can do that (I have David Powers excellent book) BUT there are two big questions I need answering that don't seem to be addressed in David's book:
    How do I get all the information in my database table into the App database (I think SQLite is the default RDMS?)
    How do I work with that from within CS5.5?
    Thanks for any help - i am definitely on the steep part of the learning curve on this one and attempting to jump a bit too far into the deep end at the moment
    Graham

    ok so I can't edit my question for some reason and I don't want this being over looked so I'm going to put the code I have in this post.
        <form method="get" action="http://www.urlgoeshere.com/search">
          <input type="text" name="term" autocomplete="off">

  • Convert PHP Site to AIR Application

    I am working in an educational institute. I developed a website for controlling students admission & scheduling. This is only for departmental use. I like to convert this application to a standalone desktop application by using adobe air. In this PHP application form submission and data retrieving except some complex pages done through http request.
    I am really confused, where I can start, what are the steps? is it need to convert all PHP to Ajax? is it need to change all graphics & graphic menus?
    Please help…
    thanks

    Have you installed an Apache Testing Server on your machine yet?  If you're using Windows, you can install Wamp or Xampp server with phpMyAdmin to help you manage the MySql databases on your local machine.
    Setting up a PHP environment in Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    Once your testing server is installed, you'll need to define your testing server in DW.  See screenshots below.  I'm using wamp server.  And my web site folder is in the default web directory -- wamp\www\
    Advanced tab:
    Final screen:
    Nancy O.

  • Need Help importing data using PHP to convert it into a single HTML line

    Hi, My names Chance
    I'm a 2nd year web design student and have been assigned a project by my teacher for a charity website
    i found a tutorial of exactly what i need to do but im stuck on creating a script to import  and convert php data
    to a single html line
    heres the link to the the script, if you scroll down to the bottom
    where it says
    RSS or XML Data Source
    "The scrolling text can be imported from any source: RSS, XML or any other format.
    For example, if you want to import data using PHP to convert it into a single HTML line to be displayed by the ticker, create a php script to import and convert the data, and include it directly in the DIV tag as follow"
    this is what i need help doing
    http://www.mioplanet.com/rsc/newsticker_javascript.htm
    i already have the php code that i want to import
    i just need to know how to import and convert my php script so im able
    to make the the javascript from the link i provided to work
    thank you so much for your time
    if you have any question or answer please email me
    [email protected]
    thanks again hope to here from you soon

    Hi
    The instructions are there on the page you provided a link to!
    What is it you do not understand?
    PZ
    www.pziecina.com

  • PHP converted to CF

    I am trying to convert this php to coldfusion, but I am not sure what some of it is doing... like the ^ operator.  Any help would be super awesome
    PHP:
    <?php
    $account_key = "whoisit28";
    $api_key = "12345";
    $salted = $api_key . $account_key;
    $hash = hash('sha1',$salted,true);
    $saltedHash = substr($hash,0,16);
    $iv = "OpenSSL for Ruby";
    $user_data = array(
      "guid" => "1234",
      "expires" => "2009-05-29 20:02:40",
      "display_name" => "Richard White",
      "email" => "[email protected]",
      "url" => "http://acme.com/users/1234",
      "avatar_url" => "http://acme.com/users/1234/avatar.png"
    $data = json_encode($user_data);
    // double XOR first block
    for ($i = 0; $i < 16; $i++)
    $data[$i] = $data[$i] ^ $iv[$i];
    $pad = 16 - (strlen($data) % 16);
    $data = $data . str_repeat(chr($pad), $pad);
    $cipher = mcrypt_module_open(MCRYPT_RIJNDAEL_128,'','cbc','');
    mcrypt_generic_init($cipher, $saltedHash, $iv);
    $encryptedData = mcrypt_generic($cipher,$data);
    mcrypt_generic_deinit($cipher);
    $encryptedData = urlencode(base64_encode($encryptedData));
    ?>
    My CF so far:
    <cfscript>
                account_key = "whoisit28";
                api_key = "12345";
                salted = api_key & account_key;
                hashed = toBase64(hash(salted,'SHA'));
                saltedHash = left(hashed,16);
                iv = "OpenSSL for Ruby";
                /*iv = arrayNew(1);
                for(i=1; i lte len(iv_list);i++){
                    iv[i] = mid(iv_list,i,1);
                expires = dateadd("h",1,now());
                expires = dateformat(expires,"yyyy-mm-dd") &" "& timeformat(expires,"HH:mm:ss");
            </cfscript>
            <cfquery name="user" datasource="datasource">
                select contactid as guid, '#expires#' as expires, firstname + ' ' + lastname as display_name, email, 'http://www.mastercontrolcustomers.com' as url, '' as avatar_url
                from contacts
                where contactid = #contactid#
            </cfquery>
            <cfset data = serializeJSON(user)>
            <cfscript>
                for(i=1; i lte 16; i++){
                    tmp1 = mid(iv,i,1);
                    tmp2 = mid(data,i,1);
            </cfscript>

    CF function acts on integers so you'll need to get the ascii codes of
    the characters and apply bitXor on that (I think that there's a java
    function in java.lang.Character that gets you the codepoint - or there
    might be a simpler solution, just that I don't have one at the
    moment).
    Mack

  • From PHP to JSP for a search-responder.php

    I have been asked to use the "search-as-you-type" solution offered up by Google at [http://code.google.com/p/search-as-you-type/|http://code.google.com/p/search-as-you-type/]. The documentation offered by Google is pretty much straight forward but of course the actual piece of code that gets the data is built in PHP and my client needs this to be used on a page serving up JSP.
    I am learning JSP and moving from PHP and ASP and learning quickly but not quick enough to finish the project.
    Would anyone be able and willing to help me convert the functions in the following PHP code into JSP?
    Thanks in advance to anyone who takes the time to help me.
    <?php
    * Copyright (C) 2006 Google Inc.
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
    * You may obtain a copy of the License at
    *      http://www.apache.org/licenses/LICENSE-2.0
    * Unless required by applicable law or agreed to in writing, software
    * distributed under the License is distributed on an "AS IS" BASIS,
    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    * See the License for the specific language governing permissions and
    * limitations under the License.
    * Search-as-you-type sample Ajax responder
      // Adding a cache control so that browsers won't cache Ajax requests
      header("Cache-Control: no-cache");
      header("Content-Type: text/html; charset=UTF-8");
       * Get the sample data from the text file.
       * @return array Loaded data
      function GetData() {
        $data = array();
        $file = file("test-data.txt");
        foreach($file as $record) {
          $record = explode("|", trim($record));
          if (count($record) == 4) { // Ignore invalid lines
            $data[] = $record;
        return $data;
       * Get the results based on user's query.
       * @param string $query Query
       * @param array $data Sample data
       * @return array Result array
      function GetResults($query, $data) {
        $results = array();
        $queryLength = strlen($query);
        foreach ($data as $record) {
          if (substr(strtolower($record[0]), 0, $queryLength) == $query) {
            $result = array();
            $result['name'] = $record[0];
            $result['type'] = $record[1];
            $result['content'] = $record[2];
            $result['moreDetailsUrl'] = $record[3];
            $result['style'] =
              ($query == strtolower($record[0])) ? 'expanded' : 'normal';
            $results[] = $result;
        return $results;
      // Get the data and the query
      $data = GetData();
      $query = strtolower(ltrim($_GET['query']));
      // Build response
      $response = array();
      $response['query'] = $query;
      $response['results'] = GetResults($query, $data);
      if (count($response['results']) == 1) {
        $response['autocompletedQuery'] = $response['results'][0]['name'];
      // Output response
      echo "searchAsYouType.handleAjaxResponse(";
      echo json_encode($response);
      echo ");";
    ?>

    Thanks for your comment Gimbal2.
    I have already been thoroughly surprised at how different JSP is from PHP. I am finding quite hard to wrap my head around the whole process to be honest.
    I am beginning to see that JSP and PHP work in a totally different way than each other.
    I am not technically trying to translate or convert the PHP file as much as I am trying to build a file in JSP that does the same functions. The main functions of the PHP script are commented by Google and should be easily enough re-written in JSP in order to produce similar results.
    Since the output needs to be in a JSON format when passed to the .js file you'd think this would be better suited as a .jsp file as well or even a JAVA Applet, Servlet or even a bean. Since the whole site is already built in JSP for a multitude of other functions it seems likely that adding on more to read data from a source file and send it back to the .JS would be straight forward, but I could be wrong. But again I am not familiar enough with JAVA or JSP (yet) to make heads or tails of this.
    1. // Adding a cache control so that browsers won't cache Ajax requests
    2. * Get the sample data from the text file. @return array Loaded data
    3. * Get the results based on user's query.
    * @param string $query Query
    * @param array $data Sample data
    * @return array Result array
    4. // Get the data and the query
    5. // Build response
    6. // Output response

  • PHP forms submitted as an attachment rather than email?

    How do I get my PHP forms submitted as an attachment rather than email?
    Meaning, if I set up a form on my website and someone completes and submits it, how can I get the responses as an attachment rather than in email text?
    Much appreciated.
    G

    Hi Gunter
    I have spent so much time on this now.
    I have tried to convert the php to an attached .txt or .csv file.
    Learnt a lot but still can not seem to get the form data to be submitted as an attached file.
    Here are two of my attempts, please assist:
    <?php
    $email=$_REQUEST['email'];
    $firstName=$_REQUEST['firstName'];
    $lastName=$_REQUEST['lastName'];
    //The Attachment
    $cr = "\n";
    $data = "Email" . ',' . "First Name" . ',' . "Last Name" . $cr;
    $data .= "$email" . ',' . "$firstName" . ',' . "$lastName" . $cr;
    $fp = fopen('reservationTest.csv','a');
    fwrite($fp,$data);
    fclose($fp);
    // Mail to
    $email = "myemailaddress";
    //subject
    $subject = "Test Budget reservation";
    //Header
    $headers("Content-type: application/octet-stream");
    $headers("Content-Disposition: attachment; filename=reservationTest.csv");
    $headers("Pragma: no-cache");
    $headers("Expires: 0");
    //Message
    $message = "".
    "Email: $email" . "\n" .
    "First Name: $firstName" . "\n" .
    "Last Name: $lastName";
    mail($email, $subject, $message, $headers);
    ?>
    <html>
    <body>
    <table width="400" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>
    <div align="center">Guperman Your Test Message Has Been Submitted</div>
    </td>
    </tr>
    </table>
    </body>
    </html>
    EOD;
    echo "$theResults";
    OR
    <?php
    /* subject and email variables */
    $email = $_POST['email'];
    $lastname = $_POST['lastname'];
    $firstname = $_POST['firstname'];
        $to = 'myemailaddress';
        $emailSubject = 'Test Form';
        $headers = "From: $email\n";
    $message = "A new reservation test.\n
    Last Name</b>: $lastname
    Name</b>: $firstname
    Email</b>: $email
        mail($to,$emailSubject,$headers,$message);
    //open the file and choose the mode
    $fh = fopen("reservationTest.txt", "a");
    fwrite($fh, $email);
    //close the file
    fclose($fh);
    ?>
    <html>
    <body>
    <table width="400" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>
    <div align="center">Guperman Your Test Message Has Been Submitted</div>
    </td>
    </tr>
    </table>
    </body>
    </html>
    On both accounts when I test these files I get the following types of messages.
    Warning:  fopen(reservationTest.csv) [function.fopen]: failed to open stream: Permission denied in \\HOSTING\DFS\20\1\9\1\2028751191\user\sites\mywebsite.com\www\reservationTest.php on line 11
    Warning:  fwrite(): supplied argument is not a valid stream resource in \\HOSTING\DFS\20\1\9\1\2028751191\user\sites\mywebsite.com\www\reservationTest.php on line 12
    Warning:  fclose(): supplied argument is not a valid stream resource in \\HOSTING\DFS\20\1\9\1\2028751191\user\sites\mywebsite.com\www\reservationTest.php on line 13
    Fatal error:  Function name must be a string in \\HOSTING\DFS\20\1\9\1\2028751191\user\sites\mywebsite.com\www\reservationTest.php on line 22
    And then to give the .php files permission I left click on the already uploaded files and try and set the permission to 777, but then I get a response like: Setting Access Properties failed for:
    Your assistance is much appreciated. Regards

  • Documents from a forum are renamed to index.php when asked to download

    I am running Firefox 8 on Windows 7 ultimate. When i try to download documents saved in .doc or .pdf, even jpegs etc. from my faculty's forum www.fcrp.ro when asked to "save" or "open with" by Firefox the fie has the correct size but gets renamned to index.php no matter what it's name or extension is.
    Using another PC with firefox works normally. I don't know if it's Windows or Firefox related.

    It did not work. The files get "converted" to php as in the image although they are pdf's or docs ord xls's or jpeg's. Windows sees their extention as php and suggests me to threat them as PHP files but they are not.

  • Php to plsql

    can some one help me in converting this php code to plsql procedure to handle response code from authorize.net' gateway's response so that i can call it like
    http://mysite.com/!my_proc
    < ?php
    // Get the subscription ID if it is available.
    // Otherwise $subscription_id will be set to zero.
    $subscription_id = (int) $_POST['x_subscription_id'];
    // Check to see if we got a valid subscription ID.
    // If so, do something with it.
    if ($subscription_id)
    // Get the response code. 1 is success, 2 is decline, 3 is error
    $response_code = (int) $_POST['x_response_code'];
    // Get the reason code. 8 is expired card.
    $reason_code = (int) $_POST['x_response_reason_code'];
    if ($response_code == 1)
    // Approved!
    // Some useful fields might include:
    // $authorization_code = $_POST['x_auth_code'];
    // $avs_verify_result = $_POST['x_avs_code'];
    // $transaction_id = $_POST['x_trans_id'];
    // $customer_id = $_POST['x_cust_id'];
    else if ($response_code == 2)
    // Declined
    else if ($response_code == 3 && $reason_code == 8)
    // An expired card
    else
    // Other error
    ?>

    this is how i did it
    created a procedure as per [thanks to Ping-Tsai Chung|http://myweb.brooklyn.liu.edu/pchung/dynamicParameters.sql.htm]
    CREATE or REPLACE PROCEDURE processQuery (
    --, num_entries IN NUMBER
    ,name_array IN OWA.vc_arr
    ,value_array IN OWA.vc_arr
    --, reserved IN OWA.vc_arr
    IS
    BEGIN
    htp.htmlopen;
    htp.headopen;
    htp.title('Unmatched query string example');
    htp.headclose;
    htp.bodyopen;
    htp.header(1, 'Unmatched query string example');
    htp.print('Query string has ' || name_array.count ||
    ' name-value pairs.');
    htp.dlistOpen;
    FOR counter IN 1 .. name_array.count
    LOOP
    htp.dlistTerm(name_array(counter));
    htp.dlistDef(value_array(counter));
    insert into my_table.......
    values(value_array(counter)
    END LOOP;
    htp.dlistClose;
    htp.bodyclose;
    htp.htmlclose;
    END;
    then called this procedure in url as
    http://mydomain.com:8081/apex/!processQuery

  • PHP Library Questions

    I know this is super picky, given that you guys are providing all the support libraries and whatnot, but...
    How often do you guys expect to update the server libraries? I'm of half a mind to convert the PHP libraries over to the Zend framework class structure & standards, and submitting them to their library. That would mean I become the maintainer though, and I don't want to be caught in update hell.

    If you do it and send it back to us, than I become the mantainer
    Usually I only update the libraries to fix bugs, but there is a bunch of new stuff coming soon that will require an update (new REST APIs, etc.)

  • PHP - create room for specific application

    Hi!
    I am creating room using PHP library and can not figure how to specify application for this room.
    Now I have a default appliaction and MyFirstApp paid application, how i can specify "MyFirstApp" for new room?

    Hi,
    So, when you create a room, you specify the roomName and the template/application name from which you want to create the room. So, to create a room with MyFirstApp application template, you should do something like
    accountManager.createRoom("roomName","MyFirstApp") ; // this is for java, convert in php
    If you don't specify anything in the second parameter, it will be created from default template, which is empty of any collectionnodes/nodes. Please go through Room Provisioning section in our Developer Guide for more details.
    Hope this helps
    Thanks
    Hironmay Basu

  • The videos I attempt to download from a certain website come in a file named 'gallery.php' which I cannot convert; what's this all about?

    I follow the usual procedure: right-click on the the video I want to download, and then hit 'Save Link As'. The download then proceeds; but I do not know how to convert the so-called 'gallery.php' file into anything viewable. The website has been of no help whatsoever!

    JRP IV wrote:
    I'm just trying to print my online pay stub
    Since my printer isn't working, I'd like to save document to my desktop ("save as" is the only option given to me) and send it as an attachment to a friend's computer and working printer.
    What browser are you using?
    Are you trying to print or to save the doc? Whether you have a working printer or not is really immaterial. If you're trying to print, then File > Print > PDF > Save as PDF…. If the resulting PDF is small enough (<5MB, though my preference is <1MB), e-mail it to your pal. If it's too big, transfer it using a chat programme or a file service (MediaFire, RapidShare, etc).
    Now, I am currently trying to send the document directly (via email, an option given under "file") the pay stub from my employer (who uses ADP online payroll services), to that computer and working printer ....and I'm receiving a window (with apple mail logo on it) that begins with  "To view this page, you must log in to this area on agateway.adp.com:443:"  and asks for "name" and "password".  I've put in both ADP's information, and what I believe (could be very wrong) to be apple mail's information, and either/neither/nothing seems to work!
    I don't understand any of this. You need to explain better—or perhaps just post a screen shot (blank any private or confidential info on it prior to posting).

Maybe you are looking for

  • Mac mini sleeping/waking problems

    Hello everyone, I'm experiencing constant issues with my mac mini. To awake it from sleep I have to push the power button, the screen goes grey with a progress bar display - not unlike on my macbook pro when resuming from low batteries - and all the

  • Solaris 8 install on X86

    Hi all, Each time I run the Solaris installation CD,whatever the CD version(CD1 of 2 or Sol8 installion),I'm getting these following errors,this occurs just after the hardware scan start running: "error : 64 PCI bit len unsupported" and then: "The ro

  • Question for Vikas re. row higlight en click on row

    Hello Vikas, <br>I liked the options I noticed on some of your reports where the rows get a different colour when you mouseover them and also the possibility to click anywhere in a row. <br>Can you please explain me in detail (step by step) how these

  • Settlement rule in production orders

    Hi All, Is there any report by which I can get list of production order numbers & the details of the settlement rule maintained in that order.? Regards, MHP

  • Playlist Help

    Hi, how do I create a smart play list like this: "I have ramdom lists by genre where I select based on starts. Ex. more than 1 star, latin+Pop, not listened in the last 15 days. Then, I have special list for "top" ex. greater than 3 stars, latinpopro