403 Forbidden on Apache for a web page in my own encrypted Sites folder

Greetings,
I'm developing a php web site, putting files in my account's "Sites" folder.
My whole account is encrypted (not by File Vault, but by moving it in an encrypted .dmg by ditto and niutil, instead) and I'd like the web site itself to be, too: for now I want it my eyes only. Everything I use (iApps, etc.) works fine, so I think I adjusted my encrypted home right.
But, I can't view my own web pages in Safari: when I try any location such http://localhost/~myusername[/myfile] I get a 403 Forbidden error.
File permissions seem right and Personal Web Sharing is on. Moreover, if I create a brand new user and move it (via ditto and niutil) in the same encrypted .dmg, it suffers the same fate.
Any other non-encrypted account's web page, e.g. http://localhost/~otherusername is reachable from my encrypted account.
I wonder if all that's about Apache configuration, which I'm not skilled enough to fix.
Thanks to anyone caring to help.

Hi Begli, and a warm welcome to the forums!
See if any of this helps...
http://www.informit.com/library/content.aspx?b=MacOS_XUnleashed&seqNum=211

Similar Messages

  • Firefox is now hard to load, and no matter what I click on for a web page, or even my mail I get the connection was reset and I have to hit the try again button 5 - 6 times usually to get the page to load.

    I updated internet explorer also changing my server provider so that my web page contact emails would go thru. I have quest broadband and could not use my yahoo accounts as they are not compatible, had me open a q.com email will transfer to outlook for my web pages. That all works, but now firefox is acting up.

    Many business users chose to use the downgrade option to XP until Windows 7 had been out awhile longer ,which may be what happened on your machine. Where I work, most all of the machines still run XP.
    Recovery Disks contain the OS and all drivers/software for a specific model. A plain Windows disk contains just the OS.Not sure which you have, but a true Recovery Disk set will not work on any machine.
    It really sounds like you have a Windows Repair disk which requires a backup image to repair an installation.Could you confirm what exact disk you have?
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Background image for BPF web page

    Hi all,
    I'm building a web page that shows a BPF. I would like to set an image as backgroung for this web page.
    In the BPC help I have read that the image should be located in /webfolders/<appset>AppSetPublications\BPFBackground folder on the server.
    Does anyone know how to upload there the image? The only way I see is using BPC for excel, but it only allows to upload excel files, no images.
    Thanks and regards,
    Ana

    Hi Ana,
    You will have to add a new webpage in BPC Web content library.
    Using the BPF object in the webpage, you can select your BPF and can also add the respective background image to it.
    Hope this helps you.
    Regards,
    Nithya

  • Can I disable adblock for specific web pages?

    I would like to disable adblock for two websites, can this be done, or is the only option to have it enabled or disabled for all web pages? If I can disable it for two websites, how do I do it?

    Yes, you can tell disable adblock on sites you choose. Go to each
    web site one at a time. After the page has loaded, go to
    the adblock icon and right click on it. One of the options
    is to disable adblock on that site. Be very careful as there
    is also an option to disable on '''''ALL SITES'''''.

  • Why use Dreamweaver for create web pages

    Hi I am new in Dreamweaver and I want to know why use Dreamweaver for create web pages?

    Twitter
    http://twitter.com/altweb
    Blog
    http://alt-web.blogspot.com/
    Site
    http://alt-web.com/

  • How do I lock my default language to English for all web pages?

    I have discovered that my language keeps reverting back to French for my web pages. Not for the sites per se, but for anything that I manually enter into a field or form. And since I have my work and home computers set to sync, it keeps reverting back on both systems. It's not necessarily noticeable until I type a word that isn't in the French dictionary, and then everything gets the red underline to indicate the misspelling. I change it *every single day,* but it doesn't stick. Any suggestions?
    For the record... the language does not go to French on my Yahoo Mail, but it does on Facebook and random web pages. I initially thought it was a Facebook problem, but when I tried Chrome, MSIE, and Opera (yes, Opera), there was no French issue, I narrowed it down to Firefox. Sorry.

    You appear to have installed an additional French dictionary that shows as four French dictionaries in the right-click context menu under languages.
    This has nothing to do with installed languages in "Tools > Options > Content > Languages" that are language choices send to the server via the HTTP request headers.
    If you do not want to use those dictionaries then you can uninstall (or disable) the extension that added them.
    *French spelling dictionaries: https://addons.mozilla.org/firefox/addon/dictionnaires-fran%C3%A7ais/
    See:
    *https://support.mozilla.org/kb/Uninstalling+add-ons
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    If you do not keep changes after a restart or otherwise then see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Html code(source code) for  a web page

    hi all
    i want to get the source code for a web page throgh
    my java program .please can you tell me how to do it.
    thanks

    give this a try.
    import java.awt.*;
    import javax.swing.*;
    import java.net.*;
    import java.io.*;
    public class JApplet1 extends JApplet
         public void init()
              getContentPane().setLayout(null);
              setSize(470,391);
              JButton1.setText("google.com");
              getContentPane().add(JButton1);
              JButton1.setBounds(12,12,120,24);
              getContentPane().add(JScrollPane1);
              JScrollPane1.setBounds(12,48,444,336);
              JScrollPane1.getViewport().add(JTextArea1);
              JTextArea1.setBounds(0,0,440,332);
              SymMouse aSymMouse = new SymMouse();
              JButton1.addMouseListener(aSymMouse);
         javax.swing.JButton JButton1 = new javax.swing.JButton();
         javax.swing.JScrollPane JScrollPane1 = new javax.swing.JScrollPane();
         javax.swing.JTextArea JTextArea1 = new javax.swing.JTextArea();
         class SymMouse extends java.awt.event.MouseAdapter
              public void mouseClicked(java.awt.event.MouseEvent event)
                   Object object = event.getSource();
                   if (object == JButton1)
                        JButton1_mouseClicked(event);
            URL u;
         URLConnection conn;
         InputStreamReader in;
         BufferedReader data;
         String line;
         StringBuffer buf = new StringBuffer();
         void JButton1_mouseClicked(java.awt.event.MouseEvent event)
             try{
                 u = new URL("http://www.google.com");
                  conn = u.openConnection();
                  in = new InputStreamReader(conn.getInputStream());
                  data = new BufferedReader(in);
                  while((line = data.readLine()) != null)
                      buf.append(line + "\n");
                  JTextArea1.setText(buf.toString());
              }catch(Exception e){}
    }

  • Creating a Simple Slideshow w music as a movie for a web page.

    Hi all,
    I would like to create a simple slideshow with music saved as a mp4 movie for a web page. I'd like to use basic transitions like crossfades between the pictures and other fun stuff
    A few questions:
    1 - Would I be better of  creating this in iPhoto or iMovie or Keynote?
    2 - Any hints in getting started?
    note: I guess I'll post this on iPhoto area also...

    You are probably better off in iMovie. You will have a lot more control. With iPhoto, as far as I know, all slides would have to be the same length, and you would need to pick music from iPhoto. With iMovie, you can customize slide length, make them change on the beat, use your own music, etc.
    I would use Keynote only if you want to include text and bullets where the photo is only part of the slide.

  • Modify "Publish for Approval" web page?

    Is there a way to modify the "Publish for Approval" web page in Aperture?
    The original package includes a PNG file you can modify to put your logo on, but nothing else.
    Thanks for any input.
    David

    I'm not the developer of this interesting looking package, but it doesn't look like it's something that will work with .Mac at all.
    The web pages is creates rely on an application to be running on the machine that's serving the web page (which, as it's designed, would be your local Mac). This application needs to receive approvals from the web page events, and also needs to be on your machine so that it can use AppleScript to set the metadata in your Aperture library so that the approved pictures show up in the smart group. Neither of these are possible if the site is served on .Mac.
    In theory, this could run on a remote machine, since AppleScript can target processes on remote machines. But to make it work, you'd still need the CGI application on the server, and you'd also need to open your Mac to allow remote AppleScript execution over the Internet (which gets into network setup, probably secure SSH tunnels, etc). Your Mac would also still need to be on, and allowing this connection, otherwise Aperture wouldn't be notified when someone approved pictures.
    To make a short story long, it won't work with .Mac.

  • Is there any way to edit the standard Firefox context menu for displayed Web pages?

    Is there any way to edit the standard Firefox context menu for displayed Web pages? I frequently want to save a picture appearing on a page. Sometimes I "slip" and hit "Send Image" when I want "Save Image As", and have to sit and wait for a default send-mail page to come up, then close it, fiddling with its "are you sure" dialogs. This is a painful way to handle a slip-up. I basically NEVER want to e-mail an element directly from a page. Is there any way I can just delete "Send Image" from the context menu?

    You can remove entries in the context menu with code in the userChrome.css file
    *http://kb.mozillazine.org/userChrome.css
    Some IDs are listed in this MozillaZine Knowledge Base article:
    *http://kb.mozillazine.org/Chrome_element_names_and_IDs
    To find the ID of others you will have to use the DOM Inspector.
    * https://support.mozilla.org/kb/DOM+Inspector
    * https://developer.mozilla.org/En/DOM_Inspector
    * https://developer.mozilla.org/en/Introduction_to_DOM_Inspector
    * DOM Inspector: https://addons.mozilla.org/firefox/addon/dom-inspector-6622/

  • Creating a movie for a web page and making it continuously loop

    Hi all! I have a client who wants me to create a slide show with 7 images at a specific size for his web page. He wants it to continuously loop. I don't know much about this. Where can I go to learn how? I can make the movie... but I'm not sure what to export it as... and what the settings should be to enable me to make it the correct size and so that it loops. Thank you!
    I'm using iMovie '08 on my iMac.
    PS: When I looked up online for help, all I found was how to make a movie loop on one's computer. Not on web pages.

    .gif files are supported in all browsers and do not need any special "player". They are very limited in their support of colors and most Web pages rarely use them anymore.
    QuickTime .mov files can be set to "loop" (as explained above). Much more colors (millions).
    iMovie is the wrong tool to make your file (and it doesn't create .swf format).
    QuickTime Player Pro is the tool you need. It can import an "image sequence", set the frame rate (up to ten seconds per frame) and save the file in the .mov container.

  • Where did the "Stop" button go on the Navigation Bar in ff4? It isn't included in the Customize box. Is there anyway to install the "Stop" button for loading web pages or is this option compeletly gone from Firefox now?

    Just installed upgrade to Firefox 4.0. Where did the "Stop" button go on the Navigation Bar. I checked the Customize dialogue box and it isn't included. Is anyone else missing it? Is there anyway to install the "Stop" button for loading web pages or is this option completely gone from Firefox now? It was a very helpful button and allowed us users to stop a web page and move on if it wasn't what we needed.

    In Firefox 4 by default the Stop, Go and Reload buttons are combined and attached to the right hand edge of the location bar.
    When you are typing in the location bar it will show the Go button. When a site is loading it shows the Stop button. At other times it shows the Reload button.
    If you want separate buttons, right-click on a toolbar and choose Customize, you can then drag and drop the stop or reload buttons and place them elsewhere. If you place them in the order "Reload-Stop" on the right hand edge of the location bar they will be combined again. For more details on customizing the toolbar see https://support.mozilla.com/kb/How+to+customize+the+toolbar

  • Safari: 27 min for loading Web page (JavaScript issue)

    I have Safari running on Mac OS 10.7.1 (MacBook Pro). It works fine, except for some Web pages. For example, <http://www.heise.de/newsticker/meldung/Erster-Kratzer-fuer-Kryptoalgorithmus-AES -1324532.html> gets loaded partly, then it takes minutes to have it completely on my screen (even the text).
    In order to depict it, I started the Web inspector and put a screenshot of it for download.
    As you can see, there are some JavaScript parts that gets interpreted as streams. This is what causes Safari to show a high latancy, up to 7 minutes. The whole page mentioned above took 27.1 minutes to load. The actual problem is that some parts that apparently are required to complete the page are loaded after some latency.
    Switching off Safari Extensions, clearing the cache, and temporarily removing files in "/Library/Internet Plug-Ins" and "~/Library/Internet Plug-Ins" did not show any effect.
    On the other side, Firefox 6 (on the same machine) does not have this issue. Its web console complains about "illegal characters", but the page gets completely loaded within fractions of a second.
    Any ideas?

    The issue has been solved in the meanwhile. The problem was that I had NetBarrier X5 running in the background with Banners Filter switched on. Obviously this caused the massive delay in loading some Web pages with ads in it.

  • I keep finding words on web pages (including my own) written in green and doubly underlined (described as 'Text enhance') that provide a hyperlink to "Groupon". HOw does this happen and how can I stop it?

    I keep finding words on web pages (including my own) written in green and doubly underlined (described as 'Text enhance') that provide a hyperlink to "Groupon". Why does this happen and how can I stop it?

    I dont want to "OPT-OUT"....i want it gone permanently!!

  • Error 403 Reported when trying to access web page through a program.

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine but gives a error 403 when tried to access URL's outside the system. Tried to read about 403, seems that many sites does not allow to access a particular URL directly using the directory structure, you have to pass thru different hyperlinks before reaching resource.
    IS THERE ANY WAY THIS PROBLEM CAN BE SOLVED.
    import java.io.*;
    import java.net.*;
    class TestDownload
         public static void main(String[] args)
              try
                   URL url = new URL("http://www.webmasterworld.com/forum48/1966.htm");
              //     URL url = new URL("http://localhost:8080/index.html");
              //     URL url = new URL("file:\\C:\\web_2.pdf");
                   URLConnection connection = url.openConnection();
                   InputStream stream = connection.getInputStream();
                   BufferedInputStream in = new BufferedInputStream(stream);
                   FileOutputStream file = new FileOutputStream("x.html");
                   BufferedOutputStream out = new BufferedOutputStream(file);
                   int i;
                   while ((i = in.read()) != -1) {
                        out.write(i);
                   out.flush();
              catch(IOException e)
                   e.printStackTrace();
              System.out.println("Hello World!");
    }

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine but gives a error 403 when tried to access URL's outside the system. Tried to read about 403, seems that many sites does not allow to access a particular URL directly using the directory structure, you have to pass thru different hyperlinks before reaching resource.
    IS THERE ANY WAY THIS PROBLEM CAN BE SOLVED.
    import java.io.*;
    import java.net.*;
    class TestDownload
         public static void main(String[] args)
              try
                   URL url = new URL("http://www.webmasterworld.com/forum48/1966.htm");
              //     URL url = new URL("http://localhost:8080/index.html");
              //     URL url = new URL("file:\\C:\\web_2.pdf");
                   URLConnection connection = url.openConnection();
                   InputStream stream = connection.getInputStream();
                   BufferedInputStream in = new BufferedInputStream(stream);
                   FileOutputStream file = new FileOutputStream("x.html");
                   BufferedOutputStream out = new BufferedOutputStream(file);
                   int i;
                   while ((i = in.read()) != -1) {
                        out.write(i);
                   out.flush();
              catch(IOException e)
                   e.printStackTrace();
              System.out.println("Hello World!");
    }

Maybe you are looking for

  • Issues with editing in Acrobat 5 with Form and link tool

    In my version of Acrobat 5, I used to be able to edit with the form and link tools. Now for example if I try to add an action in the execute menu item in the Field Properties (Form tool or Link mode), it brings up a splash window saying 'Please selec

  • ICloud purchases not viewable in iTunes 12

    So - I feel pretty dumb not being able to solve a simple UI change, but this is driving me nuts. Any help would be appreciated. Normally in iTunes, it's Menubar>view>Show iCloud purchases....yes? I cannot figure out how to get my iCloud purchases to

  • My iphone 4s doesn't have music coming from the speaker and I cannot adjust the volume, however my phone rings and works with headphones. any suggestions?

    I got my phone recently and for some reason the speakers arent working. I can only hear my music and ajust the volume if the headphones are plugged in but it doesnt solve anything if they arent plugged in. Please help me.

  • Save DRAD from purchase order

    Hi, I'm trying to save the deleted and the added documents to an order position while/with saving the order. Therefor I found the function CV200_DB_DRAD_UPDATE which should save the DRAD delta to the db. But it seems to be highly unreliable. Hence i'

  • TDD JUnit

    Hi, I have been trying to use Test driven development and work back from test cases. So far I have these test cases: package poly; import static org.junit.Assert.*; import org.junit.Test; public class ConEqTest {      private int min = Integer.MIN_VA