Prevent Zend Server CE from loading at start up Mac OS X? - apache

I installed the latest version of Zend Server CE on my MacBook Pro and I would like for someone to instruct me how to stop it from loading upon start up. I only want it operational if I choose to start it. I'm sure it's simple but so far, I can't find this information anywhere.
Thanks.

I found the answer here: http://bit.ly/WemVm5
Essentially, you need to either remove entirely or (as I did) simply comment out all of the code inside ZendServer_init; once that is done, reboot your Mac and Zend Server CE should not automatically load anymore.

Related

Use of Hyper Visor to run the Windows Phone Emulator

I am really new to Windows Phone 8 App development. I would be grateful to you if you can answer my question. I have a machine with Intel(R) Core(TM) i3 processor and when checked I found out that my virtualization setting enabled.
I installed Windows Pro 8.1 in to my machine and then it indicates that my Hyper Visor is default switched off and I had to run it. But when I run it after making some of the changes by restarting the machine, suddenly for some unknown reason it undoes every change made finally leaving the machine with no Hyper Visor running.
I come across the same process when I am to run the Windows Phone emulator to test Windows Phone 8 Apps.
I hope my issue is clear to you all, can someone help me to fix this issue or tell me the exact reason behind this?
I would look at my Windows Event log and see if you perhaps there's a problem with Hyper-V being incompatible with a driver or something like that. It may be failing to reboot and the doing a system restore to get the machine back to a bootable state (by rolling back Hyper-V). I've had problems with Hyper-V and my HP laptop's blue tooth drivers:
Here's the thread where I found out about that:
HP Bluetooth / Hyper-V woes
Updating the driver to the newest version on HP's site fixed my computer for a while, but then I had problems with Windows Update hosing my machine with an update to the Bluetooth driver.
I seem to have fixed it for good by going to RA Link's website and downloading a version of the driver that's newer than the one on HP's website. I'm not at my personal computer right now, but if you'd like I can see if I can find the driver version that seems to have fixed my Bluetooth/hyper-v problems for good.
-Eric

Processing affects current directory of Arduino environment

I have my processing code in dev/processing and my Arduino code put itself in Documents/Arduino.
However, whenever I get into one environment, it changes the most recent directory for the other because Arduino is written in processing.
Is there any quick way to disconnect the two environments so that they don't use the same location for "most recent directory?" I don't know whether the mechanism is a file, a registry entry or what, but I'm on Windows 8.1
I am using both Arduino IDE as well as Processing 2.1.2 in Windows 7 environment. It doesn't change the directory.
Since you are using Windows 8.1 (which is recently released), you may face very weird problems as those softwares are not tested on those OS. You will find errors for even other softwares that are designed before Windows 8.

Winpe 4 drivers not loading

I need to inject custom drivers to wim file offline.
I'm using standard scenario described on MSDN http://technet.microsoft.com/en-us/library/hh825206.aspx: mount, add-components (WMI, .NET4), add-drivers (signed, work correctly on windows 7 & 2012, x86/64), unmount, makewinpemedia.
However, when I booting from iso (on VMWare), drivers not loading.
Any suggestions?
Thanks.
The most important thing while developing Win PE driver is to follow the architecture(using 32 bit on 64 bit Win PE can cause failures)
Follow the steps:-
Take the 'Custom Windows PE' rescue CD option in the rescue CD wizard.
If you haven't previously installed the Windows Automated Installation Kit (WAIK), then this will need to be downloaded and installed. This is a big (1.7GB) download, so please be patient. The WAIK download dialog will be shown. Just click 'Continue' and be patient while the integration completes.
Once the integration is finished cancel the rescue media wizard.
Download and run 'inject.exe' from here:
http://updates.macrium.com/reflect/utilities/inject.exe
This will automatically inject the drivers into the windows image file (WIM) and will take a few minutes.
Once completed, take the rescue media build wizard again, select the 'Custom Windows PE' and click through to the final page.
Click the 'Rebuild' button to re-integrate the WAIK. This will not need to download and install the WAIK again, so will be much quicker.
Once completed, if you now burn the rescue CD the drivers will be integrated and you should have no problems booting with the CD and recognizing your local RAID volumes.
Have you gone through Windows Automated Installation Kit (AIK) you can have a look at the following link it may help you.
http://kb.acronis.com/content/24254
Windows PE always uses the same basic VESA mode video driver regardless of the card in use.
Please check the link below.
http://technet.microsoft.com/en-us/magazine/cc160920.aspx
This particular link for creation of the ISO with Windows Automated Installation Kit (AIK) can also help you get going.
http://www.bootfromcd.com/compare-solutions/windows-pe-boot-disk-review/
i did spent some time with Win PE,there is a image below are you getting the same message while booting with VM?
There are some additional steps given in the follwing link you can check if it works this way
https://users.emulab.net/trac/emulab/wiki/WindowsByWinpe
another helpful link
http://desktopreality.com/windows-7-deployment-the-easy-way/
Updated the information check if it helps.
Thanks

Troubles with Xdebug 2.1.0, XAMPP 1.7.3, Win7 32bit

Looking for some help with getting xdebug to behave with my setup. My goal is to be able to debug Joomla code.
First let me preface saying that about a year ago I was able to get a version xdebug to work with Eclipse PDT 2.1 with xampp under Vista 32bit. However, now I'm on a new machine, and I wanted to get everything working with the latest versions. I did so by following through this walk-through. Now, trying to do the same thing I can't get it to work.
First, as per the walk-through, I downloaded php_xdebug-2.0.0-5.2.2.dll. Quickly realized that I needed an xdebug for php 5.3. So, I found the xdebugs Tailored Installation Instructions and followed that. My php.ini section looks as thus:
[XDebug]
;; Only Zend OR (!) XDebug
zend_extension = "D:\xampp\php\ext\php_xdebug-2.1.0-5.3-vc6.dll"
xdebug.remote_enable=true
xdebug.remote_host=localhost
xdebug.remote_port=10000
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="D:\xampp\tmp"
So this got the xdebug to actually show up in the phpinfo(). But, in Eclipse when I Debug As Php Webpage, it at first appears to connect, however if I step to the next line of code the debugger just sits there saying it is stepping, indefinitely. Sometimes apache will crash. I tried ports 9000, and 10000 with no avail.
What I did find out is, if I use the the php_xdebug.dll that comes with XAMPP 1.7.3, I actually can connect and step without any issues, EXCEPT, that version of xdebug apparently has a major bug in it that causes all my variables to be listed as 'Uninitialized'. So it is basically useless, however, it does give some hope that I have some of this stuff set up correctly.
So, my current setup thus: Win7 32bit, XAMPP 1.7.3 (PHP 5.3.1, Apache 2.2.14), Eclipse PDT 2.2
I have very limited experience with basically all the tools here so I'm kinda at a loss of what to do. Any help would be greatly appreciated. I searched some of the other posts here with similar issue but most of them appear to be for older versions of these components.
your report is somewhat confusing. As far as I understand you, your setup works as soon as you replace the XDebug-dll. Then your (primary) problem cannot be related to your settings, as far as you also adjusted zend_extension, of course.
Though xdebug.remote_port=10000 seems odd. Std is 9000. If you use 9000, the you have to tell Eclipse in Window/Preferences/PHP/Debug/Debuggers to also listen to that port for XDebug.
Best
Raffael

What's the exact purpose of Yii Appliance?

It's introduction is here:
http://www.yiiframework.com/demos/
But what's that virtual server image for ?
A simple way to have a preconfigured server environment with the software in question already installed, configured, and ready to run.
I agree with Dav, also, it is not updated very often (If I'm not bad, the included Yii version is 1.0.2 and current is 1.1.2, about 1 year old). Y recommend you to download the last stable version and try with it with your own web server it can be a local server). If you have Windows OS I recommend WAMP (one of the easiest to install) or ZWAMP (I think this is the most updated one, http://zwamp.sourceforge.net/), if you are using Linux or *BSD you have more and easy-to-install alternatives.