Search results

  1. BjarneDM

    How do i create a startup script.

    You'll want to study up on 'launchd' and siblings. Take a look here: http://developer.apple.com/macosx/launchd.html http://www.codepoetry.net/products/launchdeditor http://www.afp548.com/article.php?story=20050620071558293...
  2. BjarneDM

    Airport: Port mapping for web sharing on multiple computers?

    Each public IP can only have one port of each number. So, on the inside you've got 2 port 80. These can't be directly mapped to the [ousideIP]:80. Only one of them can. Now, you've got several options: 1) use another port for the other computer (eg 8080) 2) use one of the computers as a...
  3. BjarneDM

    oh man...I've done it now!

    The problem is the '.' in relation to '~/' When specifying '~/.Trash' it's actually interpreted as '~/.' which is the whole home directory. The correct form when you want to use '~/' in combination with a file/folder starting with '.' is '~/./.Trash' You can try to use 'cd' in combination...
  4. BjarneDM

    Sharing a Printer With Mulitple Local Users

    There are two ways I can think of In your admin account ~/Library/Printers you've got an *.app for the printer Attempt 1) (the simple) Try to copy that to /Library/Printers Attempt 2) (installing for every user)(if Attempt 1 doesn't work) Copy the *.app to the ~/Library/Printers folder...
  5. BjarneDM

    Error opening http://localhost/prueba/index.php

    What do you want to achieve ? There are at least 10 alternative methods of doing it. Here are some ways ... 1) creating a new way of having user home directories 2) setting up virtual hosts 3) aliases in the file system 4) aliases in the httpd.conf 5) replacing the standard documentroot...
  6. BjarneDM

    Driving me insane - what is port 398?

    Well, at one time it was at port 65 - http://www.iana.org/assignments/protocol-numbers - but that seems to have changed recently - http://www.iana.org/assignments/port-numbers - The closest I've been able to come to a solution is these two email addresses: mptn 397/tcp Multi...
  7. BjarneDM

    Mac Os X And Postfix

    hmmm ... SMTP auth support in enabled by default in versions above 2.0: http://www.thecabal.org/~devin/postfix/smtp-auth.txt And on Mac OS X Client the libraries are included: [10:44:36@/]$ sudo find /usr/lib -iname '*sasl*' | xargs -n1 ls -ald lrwxr-xr-x 1 root wheel 16 Nov 1 14:44...
  8. BjarneDM

    Ip address through multiple routers??

    Well the Linksys is a router. That means it's taking an active part in connecting the computers. So it needs power to do it's stuff. Set the Linksys up as a bridge too, turn off DHCP and your problems ought to be solved.
  9. BjarneDM

    Parse error line 11!

    How about keeping your problems to one thread ? you are posting more or less the same questions in two different threads. And do read my answer in the other thread: http://www.macosx.com/forums/showthread.php?t=258730
  10. BjarneDM

    Mac Os X And Postfix

    I've provided instruction on how I compile Postfix with MySQL support under Mac OS X Client. You should be able to modify those instructions to fit your situation. http://www.macosx.com/forums/showthread.php?t=258143 Oh yeah - check that you've got the MySQL shared libraries installed !
  11. BjarneDM

    PHP/MySQL Database

    Your whole coding practise as well as how you approach analysing your problems stinks. At present you are misusing us to solve your problems instead of learning to debug your own code: http://www.onlamp.com/pub/a/php/2004/08/12/DebuggingPHP.html And I previously gave you the link to the...
  12. BjarneDM

    Parse error line 11!

    Your assumption is wrong
  13. BjarneDM

    Ip address through multiple routers??

    It would have helped a bit if you had given the IPs for AirPort#1 as well as the iMac. But basically your problem is that you are using at least two LANs. For the lowdown on IP-numbers see here: http://compnetworking.about.com/od/workingwithipaddresses/l/aa042400c.htm You are using at...
  14. BjarneDM

    I deleted the root user! Help!

    Well, if you are interested in that kind of thing then you might be interested in the three threads I've started :)
  15. BjarneDM

    I deleted the root user! Help!

    Phew ... finally ::ha:: Now (putting on my best imitation of A Stern School Master), I do hope, my dear Sir, that you've learned something from this whole sordid tale ::evil:: Otherwise, you'll have to read the whole thread ten times in a row and do a written disposition in front of the...
  16. BjarneDM

    Editing/Browsing Really Big Files

    you might want to take a look at one of the emacs ports: http://www.versiontracker.com/dyn/moreinfo/macosx/24218 http://www.versiontracker.com/dyn/moreinfo/macosx/26662 http://www.versiontracker.com/dyn/moreinfo/macosx/17244 I know nothing about how emacs handles files, but with the Unix...
  17. BjarneDM

    roll back Mac osx upgrade?

    The problem was unknown to them. Usually, incremental changes of the form 10.4.2 to 10.4.3 don't break things in major ways. From 10.3. to 10.4 on the other hand, I did wait. It took me almost a fortnight to get one of my computers in the condition I wanted it with a completely clean install of...
  18. BjarneDM

    Parse error line 11!

    you are missing the ';' after '$car_id="1"' You've got that error in both versions. that's the most common mistake when doing php programming. when you get parsing errors !always! assume that you are missing a ';' and the parsing error is never reported to be on the line where the problem is.
  19. BjarneDM

    roll back Mac osx upgrade?

    You might also want to take a look at Spotless: http://www.fixamacsoftware.com/software/spot/ - which is a great little utility for administering Spotlight. That's exactly the only remedy :( I've just had exactly this problem with 'CodeTek Virtual Desktop' which works fine under 10.4.2 but...
  20. BjarneDM

    I deleted the root user! Help!

    hmmm ... I must confess I don't understand why you are still getting those two empty names. They might or might not disappear after a reboot, but if you get the message that they don't exist, I guess they don't hurt ! But it seems as if you've successfully gotten rid of your duplicate...
Back
Top