Iweb links won't work for some people

Hi! I have recently made a website using iweb and most people have no troubles viewing all my pages (even if they appear slightly different than I designed them). I have gotten emails from a few people, however, saying they can't get to some of my pages.
My website is www.ccforkids.com and the links that are causing troubles are the ones at the bottom of the slings page (sizing, instructions, etc.) there might be others, but these are the ones I have recieved emails about.
Thanks for any help!
iMac G5   Mac OS X (10.3.9)  

If other people are willing to try a different browser, that seems to be the best solution, yes. Without knowing exactly what isn't working for them, I wouldn't like to say there's nothing else you can do.
For example I find that IE for Mac (no longer supported by MS) doesn't show Apple's comments on blogs, so at the moment I'm using both those comments and iComment. I've also turned off the local iDisk, since that was making the running of both systems unworkable.
Richard
iMac G5 iSight   Mac OS X (10.4.7)   Power Mac G5 (10.3.9) at work, + Beige G3 (OS 9.2, 10.1.5) at home

Similar Messages

  • Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do

    Can't create new pdfs from powerpoint; either form within Adobe or within powerpoint.  I could do this yesterday and today it won't work for some reason.  The error says "an unexpected error occurred.  PDFMaker was unable to produce the Adobe PDF.  How do I fix this?

    Is there a log file in the document folder indicating what the problem was. There are a number of reasons that PDF creation may fail. You can try to print to the Adobe PDF printer to see if there is any indication in that process. The processing is different, but the same problems may show up with both processes.

  • My iWeb site doesn't work for some PC Windows users.

    My daughter and afew other users are having trouble getting to my iWeb site. I haven't yet narrowed it any particular release of Windows or Web Browser but it only fails for someone on a PC systems. Do they need IE6 or >. XP Professional? If the contents have jpegs and a movie. What applications are needed on the viewers computer i.e. Quicktime or CS2 Photo.
    Many Thanks!

    Movies dragged into iWeb require the QuickTime browser plugin to play them and a lot of PC users don't have it.
    Flash is a more universal format but these won't work on portable devices like the iPhone/iPad.
    This player will work in all browsers and devices.....
    http://www.iwebformusicians.com/Website-Music-Movies/JW-Video-Player.html
    You need to use a web-safe font.....
    http://www.iwebformusicians.com/WebMusic/FontsandColors.html
    More stuff here...
    http://www.iwebformusicians.com/WebMusic/iWebandInternetExplorer.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • This program won't work for some reason

    I'm having trouble with getting this program to do what I want. It reads in a file and identifies certain parts that follow the rules I've given. The first version below is one that works. It simply prints out the string if it meets the conditions in the if statements. The second one will compile but shows no data. I know it stores the values in the arrays sortstem and sortdg becuase I put the println statement directly after the code for storing them and it worked. However, when I put it where it is now, it will not work. Any suggestions? Also, I get an error after the program runs for both versions: It says exception in thread "main" Java.lang.NullPointerException at tokens.main(tokens.java.69) (this was for the first program).
    import java.io.*;
    import java.util.*;
    class tokens {
         public static void main(String args[]) throws IOException {
              int i;                                                       //int to read in the data from the text file
              int count = -1;
              int countt = -1;
              int countc = 0;                                                  //int to put data into a char array
              FileInputStream fin;                                             //input stream
              char array[] = new char[10000];                                        //array to hold chars from the text file
              String s;                                                  //chars are transfered to this String
              int index;                                                  //index of the names I'm searching for in the string
              String tokens[] = new String[10000];                    
              try {
                   fin = new FileInputStream(args[0]);
              } catch (FileNotFoundException e) {
                   System.out.println("File not Found");
                   return;
              } catch (ArrayIndexOutOfBoundsException e) {
                   System.out.println("Usage: ShowFile File");
                   return;
              do {
                   i = fin.read();
                   if (i != -1) {
                        if (count==array.length-1) {                              //this expands the array if more space is needed
                             char temp[] = new char[array.length+5000];
                             for (int j = 0; j < array.length; j++) temp[j] = array[j];
                             array = temp;
                             array[++count] = (char) i;
                        else
                             array[++count] = (char) i;                         
              } while(i != -1);
              fin.close();
              s = new String(array);
              StringTokenizer st = new StringTokenizer(s);                                                            
              while (st.hasMoreTokens()) {
                   if (countt==tokens.length-1) {                              //this expands the array if more space is needed
                             String temp1[] = new String[tokens.length+5000];
                             for (int j = 0; j < tokens.length; j++) temp1[j] = tokens[j];
                             tokens = temp1;
                             tokens[++countt] = st.nextToken();
                        else
                             tokens[++countt] = st.nextToken();     
              if (tokens[4].startsWith("stem")) {
                   if (tokens[4].equals(tokens[201])) {      //Skip this one
                   else
                        if ((tokens[9].equals("32")) && (tokens[15].equals("31"))
                        && (tokens[21].equals("30")) && (tokens[27].equals("29"))
                        && (tokens[33].equals("28")) && (tokens[39].equals("27"))) {
                             System.out.println(tokens[4]);
              for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Skip this one
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  System.out.println(tokens[k]);
    }This one below compiles but doesn't print to the screen.
    import java.io.*;
    import java.util.*;
    class tokenstest {
         public static void main(String args[]) throws IOException {
              int i;                                                       //int to read in the data from the text file
              int count = -1;
              int countt = -1;
              int countc = 0;                                                  //int to put data into a char array
              FileInputStream fin;                                             //input stream
              char array[] = new char[1000000];                                        //array to hold chars from the text file
              String s;                                                  //chars are transfered to this String
              int index;                                                  //index of the names I'm searching for in the string
              String tokens[] = new String[200000];
              String sortdg[] = new String[500];     
              String sortstem[] = new String[500];                         
              try {
                   fin = new FileInputStream(args[0]);
              } catch (FileNotFoundException e) {
                   System.out.println("File not Found");
                   return;
              } catch (ArrayIndexOutOfBoundsException e) {
                   System.out.println("Usage: ShowFile File");
                   return;
              do {
                   i = fin.read();
                   if (i != -1) {
                        if (count==array.length-1) {                              //this expands the array if more space is needed
                             char temp[] = new char[array.length+5000];
                             for (int j = 0; j < array.length; j++) temp[j] = array[j];
                             array = temp;
                             array[++count] = (char) i;
                        else
                             array[++count] = (char) i;                         
              } while(i != -1);
              fin.close();
              s = new String(array);
              StringTokenizer st = new StringTokenizer(s);                                                            
              while (st.hasMoreTokens()) {
                   if (countt==tokens.length-1) {                              //this expands the array if more space is needed
                             String temp1[] = new String[tokens.length+5000];
                             for (int j = 0; j < tokens.length; j++) temp1[j] = tokens[j];
                             tokens = temp1;
                             tokens[++countt] = st.nextToken();
                        else
                             tokens[++countt] = st.nextToken();     
              if (tokens[4].startsWith("stem")) {
                   if (tokens[4].equals(tokens[201])) {      //Skip this one
                   else
                        if ((tokens[9].equals("32")) && (tokens[15].equals("31"))
                        && (tokens[21].equals("30")) && (tokens[27].equals("29"))
                        && (tokens[33].equals("28")) && (tokens[39].equals("27"))) {
                             sortstem[countc] = tokens[4];
                             sortdg[countc] = tokens[3];
                             countc++;
              for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Do nothing
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  sortstem[countc] = tokens[k];
                                  sortdg[countc] = tokens[k-1];
                                  countc++;
              for (int z = 0; z < countc; z++) {
                   System.out.println(sortstem[z]);
              for (int z = 0; z < countc; z++) {
                   for (int y = z+1; y < countc; y++) {
                        if (sortdg[z].compareTo(sortdg[z]) > 0) {
                             String tdg = sortdg[z];
                             String tstem = sortstem[z];
                             sortdg[z] = sortdg[y];
                             sortstem[z] = sortstem[y];
                             sortdg[y] = tdg;
                             sortstem[y] = tstem;
              for (int j = 0; j < 20; j++) {
                   System.out.println(sortstem[j] + ": dG = " + sortdg[j]);
              System.out.println("Test");
    }

    I'm still having trouble with the println in this program. For some reason, in this section of the code, if I put System.out.println(sortstem[0]); inside the for loop, it works fine. But if I try to do it ouside of this loop, it will not work. The only thing I can think of is that the variable is only available inside the loop but I just can't figure it out. Can anyone enlighten me?
    for (int k = 201; k < tokens.length-198; k++) {
                   if (tokens[k].startsWith("stem")) {
                        if ((tokens[k].equals(tokens[k+197])) || (tokens[k].equals(tokens[k-197]))) {
                             //Do nothing
                        else
                             if ((tokens[k+5].equals("32")) && (tokens[k+11].equals("31"))
                             && (tokens[k+17].equals("30")) && (tokens[k+23].equals("29"))
                             && (tokens[k+29].equals("28")) && (tokens[k+35].equals("27"))) {
                                  sortstem[countc] = tokens[k];
                                  sortdg[countc] = tokens[k-1];
                                  countc++;
    [code/]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

  • Links in .pdf work for some, not others

    Hello all,
    I've tried a search on the forums to see if my question might already have been answered, but I didn't find anything, and was hoping someone here might have an idea for me:
    I have two users, each using Adobe Pro 9.1.1 and IE 7.0.5730.13.  They are sent an email that links to a web page that contains links to various pdf documents.  One user can open all the links just fine.  The other can open about half the links, the other half come up with an error that says the document does not exists.  It appears to be looking in the temporary internet folder as opposed to going out and getting the document.  When I try to copy and past the link to the document in the browser, I get the same error.
    I went into the options for Adobe Pro and told it to open the document in a web page, but it insists on opening up Adobe Pro and trying to display it from there.
    Again, two users have the same versions of Adobe and IE and yet have different results.
    Anyone have a suggestion as to what the problem could be?
    Thanks in advance for any help!
    P.

    Thanks for the reply!
    It does not work; if I right-click and select save-as, it is looking in the temp directory for the document, and if you hover over the link, it is trying to send you straight to the temp directory for the document.  Very strange, as looking at the same website on the other person's PC, the link goes out to the correct directory.
    A little clarification; these .pdf files exist on a shared network drive.  Users are sent to a web page that has links to the documents on this shared drive.
    This particular user has the same permissions to that shared drive as the other person does, and all the .pdfs linked in the webpage exist in the same directory on that shared drive.

  • My theory on why the 1.0.1 update won't work for some...

    Ok, I've racked my brain and this is the only thing I could come up w/ because I'm following the instructions to a tee. I took a closer look @ the Firmware Update page and noticed this: "It now runs on localized systems that use languages that read right to left." Idk if this makes sense but could this update not be working because I did format right when I got my MBP and chose not to install the language files? The only one I kept was English which obviously isn't right to left. The people who are having the same issue as I, did you do a clean format of Tiger as well and leave out the language files? Sorry if this is a terrible guess

    Nopes, I did a clean install of OSX the day I got my MBP, installed on English language, and have since updated to 10.4.6, Firmware 1.0 and Firmware 1.0.1. None of the installers gave me any problems. For the record, both firmwares brought my temperature down, but neither changed the whine/hiss at all.

  • Quicktime working for some but not for others

    Hello all,
    I'm developing this website and it displays videos in quicktime format, but it's just not working for some people... It just won't play for some reason I just don't know 'cause I couldn't make the error happen to me and got no good help from others...
    This is what's happening: @ www.thebrooklynbrothers.com/ clicking on "work, work and more work", then clicking on MEDIA and then FILM, it should display the QT movie and the user could play it, but for some reason it just shows up the QT logo and nothing more, as some people are telling me... could somebody check this out to see if it happens to you as well and tell me what could be the problem or any other details of the error so I can figure out what it is?
    if you want to check a sample URL it loads from there, check this one: http://www.thebrooklynbrothers.com/new/portfolio/contentloader.php?file=cnneraq.mov&filetype=2
    Thanks you so much for your time! ANY help would be greatly appreciated! I'm desperate right now!

    I'm having a similar problem with videos uploaded onto my website. It all plays fine through Firefox and Internet Explorer on my other PC, but on this one (Win XP), I just get a blank page after it's finished loading. No video box or error mesage. Just lots of white space. I've checked all my settings, and have QT as my default player, but still nothing. Have also downloaded the latest QT updates. Is there something I'm missing in Windows or Internet Explorer? I don't have any problems with it on my Mac.
    Thanks,
    Lucy

  • GetAppletContext().showDocument() won't show local files for some people

    Hi,
    I have a reporting function that creates a pdf and stores on the users computer in the local temp drive and then displays the created pdf in a new browser window. Everything works fine except for some users it won't show local files. This is a signed applet and everyone has the same policy file. I can't work out why it works for some users and not for others, there doesn't seem to be a pattern in o/s, configurations etc. When i run the code locally on tomcat it works for me but when i upload to server it doesn't. There is no error message either. The pdf is definitely being created as well as you can check it in the temp directory. Code is below:
    void btnReport_actionPerformed(ActionEvent e) {
    try {
    String args[] = {"-pdf"};
    File f = File.createTempFile("SCReport", ".pdf");
    FileOutputStream fos = new FileOutputStream(f);
    JCPrinter printer = SCPrintManager.getPrinter(args, fos);
    if (printer == null) {
    System.out.println("Printer is equal to null");
    // What has been selected?
    SCReport report = new SCReport(printer);
    Vector vectSubConsultant = createVectorFromScreenInfo();
    if (vectSubConsultant == null)
    return;
    report.addSectionForSC(vectSubConsultant, true);
    SCPrintManager.printDocument(report.getDocument(), printer);
    printer.getOutputStream().close();
    URL reportURL = f.toURL();
    URLConnection con = reportURL.openConnection();
    ReDirector().getAppletContext().showDocument(reportURL,"report");
    catch (Exception ex) {
    System.out.println("Error producing report");
    ex.printStackTrace();
    }

    Did you have any luck? As I am trying to do the same thing...

  • I have an Airport Express and the pass code I used some time ago for my IPad won't work for my new IPhone 5S?

    I have an Airport Express and the pass code I used some time ago for my IPad won't work for my new IPhone 5S?

    If you are sure that you are entering the correct password, then this sounds like an iPhone issue, so your best bet will be to post in the iPhone Support Community so that the experts over there can help.
    Using iPhone
    The best that we can do here is suggest that you start with the iOS support document Troubleshooting Wi-Fi Networks and Connections.
    Resetting the iPhone took care of an issue like this with my wife's iPhone.
    http://support.apple.com/kb/TS1398

  • External links won't work once published

    Hi, I'm self taught so don't always understand everything and I'm a complete novice with iWeb, used Front Page before getting a Mac.
    I'm in the process of building a new website using iWeb and I'm having problems with getting links to external pages to work.  They work fine in iWeb.  'Enable as a hyperlink' and 'make hyperlinks active' is ticked for all links.  I've formatted the links to be coloured red, then orange when visited and blue with an underline on roll over, grey if disabled. All works fine in iWeb but then when I publish the links won't work.  They will momentarily and then they won't.  If I refresh the page then one or two will work but when you go back to the page they won't work again.  I've deleted them all and redone them, still the same problem.  Tried it in Safari and Firefox, same problem.  Deleted the site from the server and republished, same problem.  Anyone got any ideas?
    On the page in question I have a widget to SkyScanner, thought that was maybe causing a conflict.  Deleted it and republished, same problem.
    Here's a link to the page I'm having problems with http://www.marbella-rentals.co.uk/MarbellaRentals/flights.html and it's the links to airlines on the right that I can't get to work.
    Also I have another couple of questions.  How do you resample images?  I have used a background image on the pages and I've managed to get it to stay static by altering the code slightly but don't know how to resample it so that the page will load quickly.  Ditto with all the rest of my images.  Don't want to have to resize them all manually if possible.  Also, with the background image I don't know what size I should make it if I was to do it manually.
    Last question... How do you change the title of your page and add a favicon?
    If anyone can help me would be much appreciated.
    Thanks

    You have an image covering some of the hyperlinks - GraphPaper_01_3.png
    Do a Command A on the iWeb page to find it.
    Your background image seems to load OK. Use an optimizer to to get it and the whole site to download faster...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Optimize.html
    See this page for howw to add a favicon...
    http://www.iwebformusicians.com/iWeb/URLs-Favicons.html
    To add title tag and meta description you need to open each HTML file post publishing and add them with an editor app. More conveniently, you can use iWeb SEO Tool...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Tags.html
    Here's a checklist for the publishing workflow if you are adding SEO tags and Optimizing...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Website-Publishing-Wo rkflow.html

  • Printing doesn't work for some docs (CUPS 1.4, Samsung ML-2010, Splix)

    I installed my Samsung ML-2010R some days ago. CUPS version is 1.4.2-1. Splix is 2.0.0-1.
    After blacklisting lpusb installation worked fine. Also printing a testpage worked. Printing works for some documents, but there are some which won't (all were pdfs, but I mainly tested .pdfs). The document is sent to the printer (or at least it looks so), but nothing happens (sometimes the printer makes a short noise). When I go to http://localhost:631/printers/ it says "Frei - "Processing page 11..."" (while "frei" being German for "free", don't know, perhaps the corresponding status in English is idle). The page number changes depending on the document (but it is always the same page if I try to print the same document more times).
    In the log-files I don't find anything useful (at least for me). Here is what I get, if I try to print one of these documents:
    In page_log:
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:24 +0100] 1 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:24 +0100] 2 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:25 +0100] 3 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:30 +0100] 4 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:31 +0100] 5 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:31 +0100] 6 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:32 +0100] 7 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:32 +0100] 8 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:33 +0100] 9 1 - localhost VO MMF.pdf A4 one-sided
    Samsung_ML-2010 106 johann [12/Nov/2009:20:25:33 +0100] 10 1 - localhost VO MMF.pdf A4 one-sided
    In access_log:
    localhost - - [12/Nov/2009:20:25:23 +0100] "POST /printers/Samsung_ML-2010 HTTP/1.1" 200 441 Create-Job successful-ok
    localhost - - [12/Nov/2009:20:25:23 +0100] "POST /printers/Samsung_ML-2010 HTTP/1.1" 200 17565828 Send-Document successful-ok
    In error_log there is nothing.
    Perhaps you could help me with further debugging. I'll try the proprietary Samsung driver in the meantime.

    EDIT: This didn't actually seem to fix the problem. :'(
    Good news! I think the outstanding developers of Debian have a patch for our bug.
    It involves recompiling CUPS, which in Arch means making new packages for "cups" and "libcups". I used the package build information for CUPS from ABS and created a new PKGBUILD. Here it is for reference:
    pkgbase="cups"
    pkgname=('libcups' 'cups')
    pkgver=1.4.2
    pkgrel=1
    arch=('i686' 'x86_64')
    license=('GPL')
    url="http://www.cups.org/"
    makedepends=('libtiff>=3.9.1' 'libpng>=1.2.39' 'acl' 'openslp' 'pam' 'xdg-utils' 'heimdal>=1.2.1-5' 'gnutls>=2.8.3' 'poppler>=0.10.7-2'
    'xinetd' 'gzip' 'autoconf' 'php' 'libusb' 'dbus-glib' 'avahi' 'hicolor-icon-theme' 'patch')
    source=(ftp://ftp.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/confdirperms.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/default_log_settings.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/dnssd-avahi.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/do-not-broadcast-with-hostnames.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/dynamic-default-ripcache-size.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/log-debug-history-nearly-unlimited.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/logfiles_adm_readable.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/pidfile.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/poppler-based-pdftops-fixes.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/ppd-poll-with-client-conf.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/ppdc-dynamic-linking.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/printer-filtering.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/quiesce-bonjour-warning.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/reactivate_recommended_driver.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/read-embedded-options-from-incoming-postscript-and-add-to-ipp-attrs.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/removecvstag.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/rootbackends-worldreadable.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/select_use_after_free.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/show-compile-command-lines.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/ubuntu-default-error-policy-retry-job.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/ubuntu-disable-browsing.dpatch
    http://patch-tracker.debian.org/patch/series/dl/cups/1.4.2-4/usb-backend-both-usblp-and-libusb.dpatch
    cups
    cups.logrotate
    cups.pam)
    options=('!emptydirs')
    md5sums=('d95e2d588e3d36e563027a963b117b1b'
    '3ec4a323bfb2fb1f2f4803acaaa9a99d'
    'b139625dcc54058a8ce7311f80d14ed5'
    '8fef21a4691de602d0ce3abe06c727e5'
    'f3dc31da89a90c85462b501a1ef05484'
    '3001462cb25772fd33cf437e501e52a6'
    '6f83bf175fde6a11b26ff1e585383cc9'
    '59666bc716e34b61614bbe0cee388c92'
    '81d35f73f56c709baac655ad24f1e10e'
    '531b865d9a6fb02b2ddb29432b7238a1'
    '25fa0289a46e613ab9f66b0b768e6e6b'
    'e15d8fa01e657c387fdc9745a8ca4a98'
    '6167d4a574f243888a5fba8132c747c4'
    'd9b197a942308c22b42d2113063ee0c1'
    'd6a229f40ff14c88d07db58c036c9fcc'
    'd617f77aa89572464b32575e2caa8773'
    '0fe2d8fa6eceeb6e52bac74eaf631a5d'
    '1824bee0db35a4edcf56af5c928d8a80'
    '38db9c9b997d2a768d89d900d131af47'
    '6a4e46310b0e84230184715804f0b8c3'
    'ad8634485cab37fbd81f56ada7ba55f5'
    'a4b34f2843641bfe0856037581a34dd0'
    '7c5053b96481e14879d4f5ea2a0c660b'
    '5c85b7d8d2ddd02c2c64955cebbf55ea'
    'f861b18f4446c43918c8643dcbbd7f6d'
    '96f82c38f3f540b53f3e5144900acf17')
    build() {
    cd ${srcdir}/${pkgbase}-${pkgver}
    # Apply Debian patches
    patch -p1 < ../confdirperms.dpatch
    patch -p1 < ../default_log_settings.dpatch
    patch -p1 < ../dnssd-avahi.dpatch
    patch -p1 < ../do-not-broadcast-with-hostnames.dpatch
    patch -p1 < ../dynamic-default-ripcache-size.dpatch
    patch -p1 < ../log-debug-history-nearly-unlimited.dpatch
    patch -p1 < ../logfiles_adm_readable.dpatch
    patch -p1 < ../pidfile.dpatch
    patch -p1 < ../poppler-based-pdftops-fixes.dpatch
    patch -p1 < ../ppd-poll-with-client-conf.dpatch
    patch -p1 < ../ppdc-dynamic-linking.dpatch
    patch -p1 < ../printer-filtering.dpatch
    patch -p1 < ../quiesce-bonjour-warning.dpatch
    patch -p1 < ../reactivate_recommended_driver.dpatch
    patch -p1 < ../read-embedded-options-from-incoming-postscript-and-add-to-ipp-attrs.dpatch
    patch -p1 < ../removecvstag.dpatch
    patch -p1 < ../rootbackends-worldreadable.dpatch
    patch -p1 < ../select_use_after_free.dpatch
    patch -p1 < ../show-compile-command-lines.dpatch
    patch -p1 < ../ubuntu-default-error-policy-retry-job.dpatch
    patch -p1 < ../ubuntu-disable-browsing.dpatch
    patch -p1 < ../usb-backend-both-usblp-and-libusb.dpatch
    # Rebuild configure script for --enable-avahi.
    aclocal -I config-scripts
    autoconf -I config-scripts
    ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
    --with-logdir=/var/log/cups -with-docdir=/usr/share/cups/doc \
    --with-cups-user=daemon --with-cups-group=lp --enable-pam=yes \
    --disable-ldap --libdir=/usr/lib --enable-raw-printing \
    --enable-dbus --with-dbusdir=/etc/dbus-1 --enable-ssl=yes --enable-gnutls \
    --with-php=/usr/bin/php-cgi --with-pdftops=pdftops --with-optim="$CFLAGS"
    make || return 1
    package_libcups() {
    pkgdesc="The CUPS Printing System - client libraries and headers"
    depends=('gnutls>=2.8.3' 'libtiff>=3.9.1' 'libpng>=1.2.39' 'heimdal>=1.2.1-5')
    cd ${srcdir}/${pkgbase}-${pkgver}
    make BUILDROOT=${pkgdir} install-headers install-libs || return 1
    # put this into the libs pkg to make other software find the libs(no pkg-config file included)
    mkdir -p ${pkgdir}/usr/bin
    install -m755 ${srcdir}/${pkgbase}-${pkgver}/cups-config ${pkgdir}/usr/bin/cups-config
    package_cups() {
    pkgdesc="The CUPS Printing System - deamon package"
    install=cups.install
    backup=(etc/cups/cupsd.conf
    etc/cups/mime.convs
    etc/cups/mime.types
    etc/cups/snmp.conf
    etc/dbus-1/system.d/cups.conf
    etc/logrotate.d/cups
    etc/pam.d/cups
    etc/xinetd.d/cups-lpd)
    depends=('acl' 'openslp' 'pam' "libcups>=${pkgver}" 'xdg-utils' 'heimdal>=1.2.1-5' 'gnutls>=2.8.3' 'poppler>=0.10.7-2'
    'libusb' 'dbus-glib' 'avahi' 'hicolor-icon-theme')
    optdepends=('php: for included phpcups.so module')
    cd ${srcdir}/${pkgbase}-${pkgver}
    make BUILDROOT=${pkgdir} install-data install-exec || return 1
    # this one we ship in the libcups pkg
    rm -f ${pkgdir}/usr/bin/cups-config
    # kill the sysv stuff
    rm -rf ${pkgdir}/etc/rc*.d
    rm -rf ${pkgdir}/etc/init.d
    install -D -m755 ../cups ${pkgdir}/etc/rc.d/cups
    install -D -m644 ../cups.logrotate ${pkgdir}/etc/logrotate.d/cups
    install -D -m644 ../cups.pam ${pkgdir}/etc/pam.d/cups
    # fix perms on /var/spool and /etc
    chmod 755 ${pkgdir}/var/spool
    chmod 755 ${pkgdir}/etc
    # fix .desktop file
    sed -i 's|^Exec=htmlview http://localhost:631/|Exec=xdg-open http://localhost:631/|g' ${pkgdir}/usr/share/applications/cups.desktop
    # compress some driver files, adopted from Fedora
    find ${pkgdir}/usr/share/cups/model -name "*.ppd" | xargs gzip -n9f
    This makes new versions of the packages "cups" and "libcups". I installed them and my printer is behaving very well. The Debian/Ubuntu developers work miracles.
    If you could try it, to see if it fixes your printer problems too, that would be great.
    Here is where I got the patches from. http://patch-tracker.debian.org/package/cups/1.4.2-4 I applied almost all of them. I excluded the "drop unnecessary dependencies" patch because it brought compiler errors with the default Arch CUPS PKGBUILD, and also excluded the "man page" and "manual" patches. I think the only patch you and I actually need is the "usb-backend-both-usblp-and-libusb" patch, but I'm not really in the mood to try applying only that one, since it seems to be working fine now. I decided to ignore applying the Ubuntu CUPS patches, because they mostly seem to be simply patches to the way CUPS is installed. Anyway, I hope these patches are moved upstream soon!
    If we have good results from this PKGBUILD, I think I will upload it to AUR. It will be my first AUR package.
    Last edited by drcouzelis (2009-12-07 15:46:29)

  • Links won't work...in certain circumstances.

    Okay...here's the situation:
    A couple days ago, all was well. ALL links were working just fine. Following a minor update, all links died.
    I set the site up to navigate by clicking pictures rather than using the nav menu. All links to site pages were set up as internal links, any links to outside the site were set up as external links.
    I've rigged a partial fix to this: I put clear shapes over the pictures and linked them...these work. Any links that I haven't done this with no longer work.
    None of the hyperlinks on text work, nor do the ones I haven't covered with a clear shape. I've gone through, unlinked everything, relinked it and tried again, the text links and non-covered pics still don't work.
    To top it all off, the photo albums created BY IWEB aren't working either! (these will be ericthelutheran.info/sclcy/bb2011 & ch2011 in the link I provide). When you try to click on the navigation buttons between pages or on the pictures to get to a larger view, they don't work at all. Again, the albums were created by iWeb itself.
    I don't know what to do short of starting over, but I hate to do that after all this work (though it's not finished yet). Help!
    Current versions of iWeb & Lion, tried multiple browsers w/ same result.
    Site: http://ericthelutheran.info/SCLCY/sclcy.html
    Thanks for the help, I'm so confused!

    EDIT: Links won't work due to ID-10-T error. I laid a clear box over everything with line edge to "frame" the page...nothing like a nice sheet of glass to prevent it from being messed with!

  • TS1538 Hi, I have the problem which iTunes cannot detect my iPhone 4s. I tried the steps you have provided in your troubleshooting, but it won't work for me because the Apple Mobile Devilce is perfectly installed on my windows.

    Hi, I have the problem which iTunes cannot detect my iPhone 4s. I tried the steps you have provided in your troubleshooting, but it won't work for me because the Apple Mobile Devilce is perfectly installed on my windows. However, the driver "Microsoft teredo Tunneling adapter" has a yellow exclamation mark, which i believe means it's not installed correctly or something is wrong with it. This driver is under the Network Adapters (Please see picture below).
    This is what happens when I connect my iPhone 4s to my laptop (Windows 7 Starter 32-bit)
    1. The phone charges it's battery
    2. I can open it in My Computer and import/export media files.
    In iTunes
    3. It start to sync until step 3 then stops.
    4. The iPhone option with an arrow appears beside the iTunes Store, but when the arrow is clicked it disappears.
    I hope you can provide me a solution for this problem.
    Thanks,
    Ralph

    Hi ralphagir,
    Welcome to the Apple Support Communities!
    For your iTunes issue with it not recognizing your iPhone, I would go ahead and suggest deleting iTunes and all of its components from your Windows computer and installing fresh.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Remove iTunes and related components from the Control Panel
    Use the Control Panel to uninstall iTunes and related software components in the following order and then restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order, or only uninstalling some of these components may have unintended affects.
    As far as the arrow button that you click and the iPhone disappears, it sounds like you may be clicking on the eject button. Please take a look at the following article for information on the eject button in iTunes.
    Safely disconnect iPod
    http://support.apple.com/kb/HT1853
    Have a great day,
    Joe

  • Why does iMessage only work for some of my contacts?

    Having problems with iMessage. It will work for some of my contacts but not others. And those people arre having the same problem, works with other people but not me.. Anyone dealt with this?

    1. Both devices have to be running iOS 5.*
    2. Internet latency can delay iMessage connection.  If you enabled "Send as SMS", the phone will switch to SMS if iMessage doesn't connect quickly.  If you disable Send as SMS, more of your messages will go through as iMessage.

  • IMAP Working for some but not others

    I am having the issue of imap working for some users and not others. I have for instance 2 users both accounts the same. One account I can link via imap the other I can not. Both have the same group memberships, both are in the same post office. Everyone has imap access I have no restictrions set. Any idea where I should begin to look. The message I am receiving on the account the can get in is: user does not exist.
    Thanks

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

Maybe you are looking for

  • PeopleTools 8.49 Application Designer cannot log into HRCS 9.0 Database

    Folks, Hello. I am working on Human Resources and Campus Solution 9.0 (HRCS 9.0) Portal. The thing is as below: I understand HRCS 9.0 requires PeopleTools 8.50 or higher. But I have no choice to use PeopleTools 8.49 for it. My PeopleSoft Internet Arc

  • Error Creating Entries in EDISEGMENT Table for Data Src 0MATL_TYPE_TEXT

    Hello, We are facing issues for data sources after doing a client switch in Quality - BW system. 0MATL_TYPE_TEXT is one of the Data Sources which is throwing such an error.  I tried to delete entries from EDISEGMENT table in BW system. But this one b

  • Error INstalling Oracle 11g on Windows8 64 bit

    Hi Geeks, I have windows 8 64 bit sony Via system. I want to install oracle 11g on it. I have downloaded the setup in my E:\Oracle 11g setup. Now I get two folder post unzipping the two archivwe files E:\Oracle 11g setup\win64_11gR2_database_1of2\ E:

  • Brower will not remember log-on even if asked to do so

    I downloaded a program that clears all browsing history, which it did. Upon restart I found It still goes to the websites but all I get is a white screen with blue wording down left side. I did some resetting in my Tools/privacy/history settings and

  • WRT54G v2 slower after f/w upgrade

    I recently upgraded my WRT54G ver. 2 router from 2.02.7 f/w to the latest 4.21.1 f/w.  Prior to the upgrade I was seeing on average 24Mbps down and 1.7Mbps up.  After this upgrade I'm seeing on average 18 to 20Mbps and 1.7Mbps up. I performed this up