Use of Terminal to install Zend Optimizer... HELP!

I'm new to this... Zend's installation instructions aren't the greatest when it comes to installing Optimizer 3.3.3, at least for someone with my lack of experience. I see that I have to run Terminal to install. Zend's instructions read as follows, and I don't see "dir" where I can change "dir to a directory in Terminal. Also, where do I find out the package name? Here are the directions:
To install the Zend Optimizer on UNIX Variants:
1. Open a terminal window and change dir to the directory in which the
Zend Optimizer package was saved.
To untar the package use the command:
gunzip -c <package name> | tar xf -
2. From the extracted package's directory, type the following command:
./install.
The installer is launched
ALL help is appreciated. I am lost!
Thanks.

Maybe I'll wait on doing this then... I am trying to install a web store module to my business' current website. It would be fairly easy (meaning something I could handle) if it wasn't for the requirement to install Zend Optimizer. When it comes to Unix I really don't have any experience. This stinks. What would you suggest, if anything? All I need to do is install this one thing. Here's the link to the install instructions, unfortunately, for me it's a little more complex that I would have thought to install. After Zend Optimizer in installed, all I have to do is upload web store files to my site via FTP which is something I have experience with.
Let me know if you have any suggestions. Thanks so much for your help (and warnings, which I am heeding)!

Similar Messages

  • Need help installing Zend Optimizer, please!

    I'm new to this... Zend's installation instructions aren't the greatest when it comes to installing Optimizer 3.3.3, at least for someone with my lack of experience. I see that I have to run Terminal to install. Zend's instructions read as follows, and I don't see "dir" where I can change "dir to a directory in Terminal. Also, where do I find out the package name? Here are the directions:
    To install the Zend Optimizer on UNIX Variants:
    1. Open a terminal window and change dir to the directory in which the
    Zend Optimizer package was saved.
    To untar the package use the command:
    gunzip -c <package name> | tar xf -
    2. From the extracted package's directory, type the following command:
    ./install.
    The installer is launched
    ALL help is appreciated. I am lost!
    Thanks.

    Post to the Unix forum under OS X Technologies where the Unix and Terminal mavens congregate.

  • Zend Optimizer and Mac OS X 10.5 Server

    I'm looking to install Zend Optimizer on Mac OS X 10.5.8 Server but it's seems
    that the latest version of Zend Optimizer is not compatible with the 64-bit version
    of Apache. Anybody with a solution?

    Unfortunately Zend will not be made for Mac OS 10.5 in a 64 bit version. The company has decided not to develop a version for Mac 10.5 64 bit. They have an alternative free product but it is similar to installing MAMP Pro and changes all your PHP, MySQL, and other dependencies It is a sad day.

  • Zend optimizer message

    Hello,
    I recieved a "zend optimizer"' message on my remote site and
    my service provider fixed it with a fresh php.ini file. Now I am
    getting the same message on my local machine. (not sure what I did
    in both cases to make it happen).
    I have attempted to install Zend Optimizer on my local
    machine (intel mac) from what I have seen there are compatibility
    issues that are not going to be fixed soon of ever. What can I do
    to lose the message when I click on internal links?
    TIA,
    Stephen

    Unfortunately Zend will not be made for Mac OS 10.5 in a 64 bit version. The company has decided not to develop a version for Mac 10.5 64 bit. They have an alternative free product but it is similar to installing MAMP Pro and changes all your PHP, MySQL, and other dependencies It is a sad day.

  • Zend optimizer, Php 5.3 and Snow Leopard server

    I'm looking to install Zend Optimizer on Mac OS X 10.6.4 Server but it's seems
    that the latest version of Zend Optimizer is not compatible with the 64-bit version
    of Apache and PHP 5.3. Anybody with a solution?

    The Server version is for machines that are serving small to medium to large networks. It provides various security and account management tools not available in the Client version. For a single user you don't need the Server edition. Furthermore, it's quite expensive by comparison.
    Message was edited by: Kappy

  • As i was installing Final Cut Studio i cancelled it while entering the details, to go to bed. I tried to reopen the installer window and it just comes up with a Terminal Text Window, can anyone help?

    As i was installing Final Cut Studio i cancelled it while entering the details, to go to bed. I tried to reopen the installer window and it just comes up with a Terminal Text Window, can anyone help?
    It may have half installed the software so dose anyone know if i can reinstall or delete what it has installed?

    after using FCS remover run  disc repair:
    shut down the Mac
    Hold the Shift key on keyboard and start up the Mac
    The Mac will run the repair tasks it takes 10- 30 minutes, then it will boot up normally
    insert the FCS DVD in the drive and install FCS again.

  • After installing iPhone Configutilities in my Mac, Personal Hotspot using USB is not working! Please help, I am using 10.7 Lion OS

    After installing iPhone Configutilities in my Mac, Personal Hotspot using USB is not working! Please help, I am using 10.7 Lion OS

    Did you talk to your carrier?

  • Help using the terminal.

    I'm taking a survey course of languages and we are covering perl this week. I need to write perl script that will parse xml data, but I can't even figure out how to use the terminal.
    when I open the terminal I get this line(I subed out my name and username):
    firstName-LastName-MacBook-Pro:~ username$
    i have tried command from tutorials such as ls and that works, but I can't figure out how to run scripts from a file. I have tried a simple hello world app by typing:
    #!/usr/local/bin/perl
    print "Hello World!\n";
    in text edit saving it as hello.pl then I tried to type hello.pl in the terminal and it says
    -bash: first.pl: command not found
    can someone explain in simple terms how to run simple programs like this?
    thanks, aaron

    Thanks for the help. That was a lot of good information. I did have it saved wrong(as rich text).
    It is a common mistake, and I'm glad you avoided it.
    However I still could not figure out how to run first.pl. using ./first.pl and ~/first.pl
    The "chmod +x first.pl" step is need to mark the file as an executable. As previously suggested by etresoft and me, you can also just use "perl first.pl" and avoid the other configuration stuff.
    I downloaded fraise as you recommended. Can you guide me through the part were you said, "modify your PATH environment varialble so it includes a directory where you put your personal scripts." i did not understand what you meant by "Create the file .bash_profile in your home directory (you will need ls -a to see the file after you create it). In .bash_profile".
    Any file that begins with a period will be invisible to the Finder. And the 'ls' command will by default not show files that begin with a dot. "ls -a" will so all files in a directory, including those that begin with a dot. This was the Unix way of cutting down on clutter in a directory, by having 2 classes of file name, and the ones with a leading dot were then typically used for things like initialization files.
    In this case .bash_profile is a bash shell initialization file. By default Mac OS X Terminal sessions use the bash shell to service the commands you enter at the command prompt.
    However, a new Mac OS X account typically does NOT have a .bash_profile, so if you wish to customize various bash behaviors you would need to create the .bash_profile yourself.
    And as much as I happen to love the vim (and before that vi) text editors, they have a very steep learning curve, so I'm hoping that etresoft was being humorous when he suggested you should avoid a GUI text editor such as Fraise
    And besides, if you start down the vi/Vim path, it will only lead to text editor wars with the emacs uses of the world Since you are trying to get through a programming language survey course, perhaps you can skip the text editor debates until a later semester.
    With respect to PATH. PATH is a standard Unix environment variable that contains a list of directories that the shell (bash) will search when trying to find the executable file with the same name as the command you entered at the shell command prompt.
    If you do not modify your PATH environment variable, it generally looks like:
    echo $PATH
    /bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
    where each directory is separated by a colon (:). The shell will take the command name you entered, and search each directory from left to right until it find an executable file that matches your command.
    What I was suggesting is that you create your own personal directory where you put executable programs and scripts, and then add that personal directory to your PATH environment variable.
    Since the bash shell is going to read .bash_profile when you start a new Terminal session and execute the commands it finds in .bash_profile, that is the idea place to customize your PATH
    # Assuming you have created a folder called 'bin'
    # in your home directory, and you put your personally
    # created executable programs and scripts in there
    # then the following export command would modify your
    # PATH to include your personal bin directory. It does
    # not need to be called bin, that is just a long standing
    # Unix convention.
    export PATH="$PATH:$HOME/bin"
    After changing the .bash_profile, you would need to either restart your Terminal session or issue the command
    source ~/.bash_profile
    I'm a complete beginner when it comes to this stuff.
    your help is greatly appreciated.
    We all had to start somewhere. In my case the Unix command line prompt was a step up in usability
    ps. how to I enclose my code quotes like you did?
    Code segments (or anything you do not want the forum software to touch) are enclosed in an identical pair of tags. For example:
    ... your code snippit here ...
    And one final point. etresoft pointed out that the she-bang (#!) line was wrong. I find the following to be the most portable way to specify the #! line
    #!/usr/bin/env perl
    print "Hello World!
    /usr/bin/env is a POSIX standard program that must list in /usr/bin/env, and it will invoke the script interpreter specified as its single argument. /usr/bin/env will use PATH to find the script interpreter, so as long as perl exists in one of the directories specified by PATH, my above #! will always find it, no matter what Unix platform I copy my perl script to, or hand it in for a homework assignment (OK, it is been a lot of years since I did homework, but you might find it useful for your survey course).
    etresoft also suggested included the -w option in your #! line. That is not possible when using "#!/usr/bin/env perl", however, you can can just add the "use warnings;" statement to the your perl script and get the same effect:
    #!/usr/bin/env perl
    use warnings;
    print "Hello World!
    And if you want perl to look even close at your code you can change warnings to strict
    #!/usr/bin/env perl
    use strict;
    print "Hello World!
    {code}
    which makes perl really picky about your code.

  • I have been using a jailbreak iphone 3gs. recently i have officially unlocked. i have updated the os. but i am unable to activate my phone. it says no sim card installed. cud u help?

    i have been using a jailbreak iphone 3gs. recently i have officially unlocked. i have updated the os. but i am unable to activate my phone. it says no sim card installed. cud u help?

    Jailbroken phones can not be discussed here.
    It's highly likely that it is now bricked. The jailbreak most likely did permanent damage. There are lots of reports of previously jailbroken/hacked phones that become unusable when attempting to apply a legitimate unlock.

  • I have iMac osx  version 10.8.5 and i forgot my account login password. i can't change it using my apple ID nor i remember my password.also my fire vault is not on and my keychain won't help. PS i can't also use the terminal idea it always not found.help

    have iMac osx  version 10.8.5 and i forgot my account login password. i can't change it using my apple ID nor i remember my password.also my fire vault is not on and my keychain won't help. PS i can't also use the terminal idea it always not found please help !!

    You need to restart the iMac and hold down the Command and R keys immediately.
    You will then have the utilities drop down and you choose Terminal
    When Terminal opens, type exactly:
    resetpassword
    and press Return.
    When the Reset Password window opens, select the user for which you want to change the password.
    Enter the new password twice, and then click Save.
    Accept the next dialog window,
    And then Apply
    When finished click the apple at the left side of the menu bar, and the Restart.

  • Installed PE12 in June, but haven't used it since.  Tried to open using shortcut and program, but nothing happens, help?

    Installed PE12 in June, but haven't used it since.  Tried to open using shortcut and program, but nothing happens, help?
    Should I uninstall and reinstall, and if so does that cause additional problems?

    I'm having the same problem.  I used it one day and everything was fine...next day, nothing will open.  Tried uninstalling and re-installing numerous times but no change.  Tried to contact support and they don't support this product (I just purchased it in August).  Am VERY disheartened with their customer support.

  • How can I re-install Snow leopard having installed Lion? The disk supplied states that I cannot use the version of 'Install Mac OS X'...HELP!

    How can I re-install Snow leopard having installed Lion? The disk supplied states that I cannot use the version of 'Install Mac OS X'...HELP!

    None of the instructions usually given for downgrading seems to mention the fact that you will lose some data in built-in applications, including at least Mail. When you installed Lion, your Mail database was converted from the format used by Snow Leopard's Mail to that used by Lion's Mail. There is no way to reverse that conversion. Therefore, you will lose your entire Mail database. If your messages are all stored on a remote server, that may not be an insurmountable problem, but otherwise you'll have to restore from the last backup you made before the upgrade, and then you'll still lose all changes to the database made since that time.
    Another fact not often mentioned is that downgrading is usually the worst possible solution to a problem with Lion. But that's the answer to a question you didn't ask.

  • How do I use the Terminal to run the 10.6.8 update?

    After my iMac crashed during the 10.6.8 update install, the Finder won't launch (tried via the Dock and "Force Quit" command). I've used a Terminal window to get to the folder (ChangeDirectory) with a downloaded copy of the 10.6.8 update but I don't know how to launch the Installer program to try to re-install the update (Software Update won't help here because the Mac is updated enough to claim to be running 10.6.8 so it doesn't think there is anything to update).
    TIA.

    now able to create logical drive but installation again failed, here is the console log:
    6/30/11 11:41:30 PM          Installer[966]          Mac OS X Update  Installation Log
    6/30/11 11:41:30 PM          Installer[966]          Opened from: /Volumes/Mac OS X 10.6.8 Update/MacOSXUpd10.6.8.pkg
    6/30/11 11:41:57 PM          Installer[966]          ========================================================================== ======
    6/30/11 11:41:57 PM          Installer[966]          User picked Standard Install
    6/30/11 11:41:57 PM          Installer[966]          Choices selected for installation:
    6/30/11 11:41:57 PM          Installer[966]                    Install: "Mac OS X Update"
    6/30/11 11:41:57 PM          Installer[966]                    Install: "Mac OS X Update"
    6/30/11 11:41:57 PM          Installer[966]          ========================================================================== ======
    6/30/11 11:41:57 PM          Installer[966]          Configuring volume "HD"
    6/30/11 11:41:57 PM          Installer[966]          Free space on "HD": 63.61 GB (63612735488 bytes).
    6/30/11 11:41:57 PM          Installer[966]          Create temporary directory "/var/folders/eW/eWl9WrwqGQ0hARMov5qLTk+++TI/-Tmp-//Install.9664INg9O"
    6/30/11 11:41:57 PM          Installer[966]          IFPKInstallElement (1 packages)
    6/30/11 11:41:57 PM          installd[984]          PackageKit: ----- Begin install -----
    6/30/11 11:42:14 PM          kernel          disk0s2: I/O error.
    6/30/11 11:42:14 PM          kernel
    6/30/11 11:42:14 PM          kernel
    6/30/11 11:42:21 PM          kernel          disk0s2: I/O error.
    6/30/11 11:42:21 PM          kernel
    6/30/11 11:42:21 PM          kernel
    6/30/11 11:42:29 PM          kernel          disk0s2: I/O error.
    6/30/11 11:42:29 PM          kernel
    6/30/11 11:42:29 PM          kernel
    6/30/11 11:42:36 PM          kernel          disk0s2: I/O error.
    6/30/11 11:42:36 PM          kernel
    6/30/11 11:42:36 PM          kernel
    6/30/11 11:42:51 PM          kernel          disk0s2: I/O error.
    6/30/11 11:42:51 PM          kernel
    6/30/11 11:42:51 PM          kernel
    6/30/11 11:42:58 PM          kernel          disk0s2: I/O error.
    6/30/11 11:42:58 PM          kernel
    6/30/11 11:42:58 PM          kernel
    6/30/11 11:43:06 PM          kernel          disk0s2: I/O error.
    6/30/11 11:43:06 PM          kernel
    6/30/11 11:43:06 PM          kernel
    6/30/11 11:43:13 PM          kernel          disk0s2: I/O error.
    6/30/11 11:43:13 PM          kernel
    6/30/11 11:43:13 PM          kernel
    6/30/11 11:43:27 PM          kernel          disk0s2: I/O error.
    6/30/11 11:43:27 PM          kernel
    6/30/11 11:43:27 PM          kernel
    6/30/11 11:43:34 PM          kernel          disk0s2: I/O error.
    6/30/11 11:43:34 PM          kernel
    6/30/11 11:43:34 PM          kernel
    6/30/11 11:43:42 PM          kernel          disk0s2: I/O error.
    6/30/11 11:43:42 PM          kernel
    6/30/11 11:43:42 PM          kernel
    6/30/11 11:43:49 PM          kernel          disk0s2: I/O error.
    6/30/11 11:43:49 PM          kernel
    6/30/11 11:43:49 PM          kernel
    6/30/11 11:43:58 PM          kernel          disk0s2: I/O error.
    6/30/11 11:43:58 PM          kernel
    6/30/11 11:43:58 PM          kernel
    6/30/11 11:46:47 PM          installd[984]          Deferred path /usr/bin/mdcheckschema is not in sandbox and will be skipped.
    6/30/11 11:47:16 PM          kernel          disk0s2: I/O error.
    6/30/11 11:47:16 PM          kernel
    6/30/11 11:47:16 PM          kernel
    6/30/11 11:47:24 PM          /System/Library/PrivateFrameworks/PackageKit.framework/Resources/shove[100 3]          [source=file] failed _RelinkFile(/var/folders/zz/zzzivhrRnAmviuee+++++++++++/Cleanup At Startup/PKInstallSandbox-tmp/Root/System/Library/Frameworks/SystemConfiguration .framework/Versions/A/_CodeSignature/CodeResources, /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/_CodeSignat ure/CodeResources): Input/output error
    6/30/11 11:47:24 PM          kernel          disk0s2: I/O error.
    6/30/11 11:47:24 PM          kernel
    6/30/11 11:47:24 PM          com.apple.installd[984]          Input/output error
    6/30/11 11:47:24 PM          kernel
    6/30/11 11:47:24 PM          installd[984]          PackageKit: Install Failed: (null)
    Error Domain=PKInstallErrorDomain Code=120 UserInfo=0x1040d2e70 "An unexpected error occurred while moving files to the final destination." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=5 "The operation couldn’t be completed. Input/output error") {
        NSLocalizedDescription = "An unexpected error occurred while moving files to the final destination.";
        NSUnderlyingError = "Error Domain=NSPOSIXErrorDomain Code=5 \"The operation couldn\U2019t be completed. Input/output error\"";
        arguments =     (
            "-f",
            "-s",
            "/var/folders/zz/zzzivhrRnAmviuee+++++++++++/Cleanup At Startup/PKInstallSandbox-tmp/Root",
    6/30/11 11:47:25 PM          Installer[966]          Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    6/30/11 11:47:27 PM          Installer[966]          IFDInstallController 3EFB090 state = 7
    6/30/11 11:47:27 PM          Installer[966]          Displaying 'Install Failed' UI.
    6/30/11 11:47:27 PM          Installer[966]          'Install Failed' UI displayed message:'The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.'.
    6/30/11 11:47:27 PM          Installer[966]          The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    6/30/11 11:47:29 PM          /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.fram ework/Versions/A/Support/mdworker[982]          MDS Error: unable to create user DBs in /var/folders/zz/zzzivhrRnAmviuee++++KE+++3Y/-Caches-//mds
    6/30/11 11:47:29 PM          /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.fram ework/Versions/A/Support/mdworker[982]          MDS Error: unable to create user DBs in /var/folders/zz/zzzivhrRnAmviuee++++KE+++3Y/-Caches-//mds
    6/30/11 11:47:29 PM          /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.fram ework/Versions/A/Support/mdworker[982]          MDS Error: unable to create user DBs in /var/folders/zz/zzzivhrRnAmviuee++++KE+++3Y/-Caches-//mds
    6/30/11 11:47:29 PM          /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.fram ework/Versions/A/Support/mdworker[982]          MDS Error: unable to create user DBs in /var/folders/zz/zzzivhrRnAmviuee++++KE+++3Y/-Caches-//mds
    6/30/11 11:47:29 PM          /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.fram ework/Versions/A/Support/mdworker[982]          MDS Error: unable to create user DBs in /var/folders/zz/zzzivhrRnAmviuee++++KE+++3Y/-Caches-//mds
    6/30/11 11:47:29 PM          /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.fram ework/Versions/A/Support/mdworker[982]          MDS Error: unable to create user DBs in /var/folders/zz/zzzivhrRnAmviuee++++KE+++3Y/-Caches-//mds
    6/30/11 11:47:29 PM          /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.fram ework/Versions/A/Support/mdworker[982]          MDS Error: unable to create user DBs in /var/folders/zz/zzzivhrRnAmviuee++++KE+++3Y/-Caches-//mds

  • I erased everything on my internal HD and ONLY have disk utilities,terminal, and install OS X MAVERICKS but wont install because no recovery system can be created

    Help me,ANYONE!
    I was a fool thinking downloading OS X MAVERICKS offline would be easy if I cleared my WHOLE HD, WELL the past 2 days ive been trying to figure it out in disk utilities and in terminal to run os x mavericks installer but nothing will work, it also says OS X cant be installed because a recovery system cant be crested.... plzz... someone help.. idk, ive been pretty **** emotional about this and about to throw laptop out the window..
    Macbook pro
    Specs are mid 2010 15" screen.

    This might depend on how you made your installer. If it is a flash pen installer that you made yourself, depending on how you made it, it has consequences on what is installed.
    I am assuming that you have made an installer?
    If you have and you did it manually, without using the Terminal command then it is a know caveat that a recovery partition is not installed as part of that procedure. The second method to create a bootable installer, using Terminal, will allow and install a recovery partition.
    See here (without Terminal): http://www.macworld.com/article/2151706/create-a-bootable-mavericks-install-driv e-for-newer-macs.html
    & here (with Terminal): http://www.macworld.com/article/2056561/how-to-make-a-bootable-mavericks-install -drive.html
    Alternatively, have you zapped the PRAM and SMC, prior to trying to install?
    See here: About NVRAM and PRAM
    Some of these might help or even answer your query...
    Good luck.

  • Zend optimizer and PHP startup: unable to load errors

    I am finding some errors in the log for my site about zend
    optimizer and PHP startup: unable to load dynamic library.
    as far as I know, I have never used PHP and i have never done
    anything with this zend optimizer. i need some help!
    there are some references in there to some pretty strange
    websites. my site is a wedding photography site!
    thanks for any help.
    here is the log:
    [Fri Jun 06 13:33:44 2008] [error] [client 82.18.149.126] PHP
    Warning: PHP Startup: Unable to load dynamic library
    '//home/offthema/sourceguardian/ixed.lin' -
    //home/offthema/sourceguardian/ixed.lin: cannot open shared object
    file: Permission denied in Unknown on line 0, referer:
    http://www.justiceandcompassion.com/
    [Fri Jun 06 13:33:44 2008] [error] [client 82.18.149.126] PHP
    Warning: Zend Optimizer for PHP 5.2.x cannot be found (expected at
    '/usr/local/Zend/lib/Optimizer-3.2.2/php-5.2.x/ZendOptimizer.so') -
    try reinstalling the Zend Optimizer in Unknown on line 0, referer:
    http://www.justiceandcompassion.com/
    [Fri Jun 06 13:33:45 2008] [error] [client 75.8.116.97]
    Failed loading /home/vanity1/ioncube/ioncube_loader_lin_5.2.so:
    /home/vanity1/ioncube/ioncube_loader_lin_5.2.so: cannot open shared
    object file: No such file or directory, referer:
    http://vanitytransformations.com/diamondt/index.php?option=com_fireboard&Itemid=57&func=sh owcat&catid=2&page=2
    [Fri Jun 06 13:33:50 2008] [error] [client 80.82.139.143] PHP
    Warning: PHP Startup: Unable to load dynamic library
    '//home/offthema/sourceguardian/ixed.lin' -
    //home/offthema/sourceguardian/ixed.lin: cannot open shared object
    file: Permission denied in Unknown on line 0
    [Fri Jun 06 13:33:50 2008] [error] [client 80.82.139.143] PHP
    Warning: Zend Optimizer for PHP 5.2.x cannot be found (expected at
    '/usr/local/Zend/lib/Optimizer-3.2.2/php-5.2.x/ZendOptimizer.so') -
    try reinstalling the Zend Optimizer in Unknown on line 0
    [Fri Jun 06 13:33:53 2008] [error] [client 62.50.73.8]
    Request exceeded the limit of 10 internal redirects due to probable
    configuration error. Use 'LimitInternalRecursion' to increase the
    limit if necessary. Use 'LogLevel debug' to get a backtrace.
    [Fri Jun 06 13:33:53 2008] [error] [client 62.50.73.8]
    Request exceeded the limit of 10 internal redirects due to probable
    configuration error. Use 'LimitInternalRecursion' to increase the
    limit if necessary. Use 'LogLevel debug' to get a backtrace.
    [Fri Jun 06 13:33:59 2008] [error] [client 200.30.148.234]
    Failed loading /home/estudio5/ioncube/ioncube_loader_lin.so:
    /home/estudio5/ioncube/ioncube_loader_lin.so: cannot open shared
    object file: No such file or directory
    [Fri Jun 06 13:33:59 2008] [error] [client 200.30.148.234]
    Failed loading /home/estudio5/ioncube/ioncube_loader_lin_ts.so:
    /home/estudio5/ioncube/ioncube_loader_lin_ts.so: cannot open shared
    object file: No such file or directory
    [Fri Jun 06 13:34:09 2008] [error] [client 82.18.149.126] PHP
    Warning: PHP Startup: Unable to load dynamic library
    '//home/offthema/sourceguardian/ixed.lin' -
    //home/offthema/sourceguardian/ixed.lin: cannot open shared object
    file: Permission denied in Unknown on line 0, referer:
    http://www.otmatheist.com/
    [Fri Jun 06 13:34:09 2008] [error] [client 82.18.149.126] PHP
    Warning: Zend Optimizer for PHP 5.2.x cannot be found (expected at
    '/usr/local/Zend/lib/Optimizer-3.2.2/php-5.2.x/ZendOptimizer.so') -
    try reinstalling the Zend Optimizer in Unknown on line 0, referer:
    http://www.otmatheist.com/
    [Fri Jun 06 13:34:14 2008] [error] [client 82.18.149.126] PHP
    Warning: PHP Startup: Unable to load dynamic library
    '//home/offthema/sourceguardian/ixed.lin' -
    //home/offthema/sourceguardian/ixed.lin: cannot open shared object
    file: Permission denied in Unknown on line 0, referer:
    http://www.otmatheist.com/2008/06/05/i-dont-want-my-kids-to-be-atheists/
    [Fri Jun 06 13:34:14 2008] [error] [client 82.18.149.126] PHP
    Warning: Zend Optimizer for PHP 5.2.x cannot be found (expected at
    '/usr/local/Zend/lib/Optimizer-3.2.2/php-5.2.x/ZendOptimizer.so') -
    try reinstalling the Zend Optimizer in Unknown on line 0, referer:
    http://www.otmatheist.com/2008/06/05/i-dont-want-my-kids-to-be-atheists/
    [Fri Jun 06 13:34:21 2008] [error] [client 75.8.116.97]
    Failed loading /home/vanity1/ioncube/ioncube_loader_lin_5.2.so:
    /home/vanity1/ioncube/ioncube_loader_lin_5.2.so: cannot open shared
    object file: No such file or directory, referer:
    http://vanitytransformations.com/diamondt/index.php?option=com_events&Itemid=37
    [Fri Jun 06 13:34:21 2008] [error] [client 75.8.116.97]
    Failed loading /home/vanity1/ioncube/ioncube_loader_lin_5.2.so:
    /home/vanity1/ioncube/ioncube_loader_lin_5.2.so: cannot open shared
    object file: No such file or directory, referer:
    http://vanitytransformations.com/diamondt/index.php?option=com_events&Itemid=37
    [Fri Jun 06 13:34:25 2008] [error] [client 38.100.8.10] PHP
    Warning: PHP Startup: Unable to load dynamic library
    '//home/offthema/sourceguardian/ixed.lin' -
    //home/offthema/sourceguardian/ixed.lin: cannot open shared object
    file: Permission denied in Unknown on line 0, referer:
    http://www.google.com/search?sourceid=navclient&ie=UTF-8&rlz=1T4DMUS_enUS204US205&q=gideon +bible+ebay
    [Fri Jun 06 13:34:25 2008] [error] [client 38.100.8.10] PHP
    Warning: Zend Optimizer for PHP 5.2.x cannot be found (expected at
    '/usr/local/Zend/lib/Optimizer-3.2.2/php-5.2.x/ZendOptimizer.so') -
    try reinstalling the Zend Optimizer in Unknown on line 0, referer:
    http://www.google.com/search?sourceid=navclient&ie=UTF-8&rlz=1T4DMUS_enUS204US205&q=gideon +bible+ebay
    [Fri Jun 06 13:34:26 2008] [error] [client 70.241.173.162]
    PHP Warning: PHP Startup: Unable to load dynamic library
    '//home/offthema/sourceguardian/ixed.lin' -
    //home/offthema/sourceguardian/ixed.lin: cannot open shared object
    file: Permission denied in Unknown on line 0
    [Fri Jun 06 13:34:26 2008] [error] [client 70.241.173.162]
    PHP Warning: Zend Optimizer for PHP 5.2.x cannot be found (expected
    at
    '/usr/local/Zend/lib/Optimizer-3.2.2/php-5.2.x/ZendOptimizer.so') -
    try reinstalling the Zend Optimizer in Unknown on line 0
    [Fri Jun 06 13:34:31 2008] [error] [client 70.241.173.162]
    PHP Warning: PHP Startup: Unable to load dynamic library
    '//home/offthema/sourceguardian/ixed.lin' -
    //home/offthema/sourceguardian/ixed.lin: cannot open shared object
    file: Permission denied in Unknown on line 0, referer:
    http://doableevangelism.com/2008/04/16/dali-desi-and-doug-in-seattle/
    [Fri Jun 06 13:34:31 2008] [error] [client 70.241.173.162]
    PHP Warning: Zend Optimizer for PHP 5.2.x cannot be found (expected
    at
    '/usr/local/Zend/lib/Optimizer-3.2.2/php-5.2.x/ZendOptimizer.so') -
    try reinstalling the Zend Optimizer in Unknown on line 0, referer:
    http://doableevangelism.com/2008/04/16/dali-desi-and-doug-in-seattle/
    [Fri Jun 06 13:34:32 2008] [error] [client 65.214.44.28] PHP
    Warning: PHP Startup: Unable to load dynamic library
    '//home/offthema/sourceguardian/ixed.lin' -
    //home/offthema/sourceguardian/ixed.lin: cannot open shared object
    file: Permission denied in Unknown on line 0
    [Fri Jun 06 13:34:32 2008] [error] [client 65.214.44.28] PHP
    Warning: Zend Optimizer for PHP 5.2.x cannot be found (expected at
    '/usr/local/Zend/lib/Optimizer-3.2.2/php-5.2.x/ZendOptimizer.so') -
    try reinstalling the Zend Optimizer in Unknown on line 0

    ..... What???

Maybe you are looking for