Categories
PHP

APC on PHP5.4 Windows

APC (Alternative PHP Cache for bytecode caching and object storage) isn’t bundled with Windows.

This seemed to work (basic test on PHP 5.4.11). This Stackoverflow answer was helpful.

Other pages with Windows DLLs linked from that Stackoverflow discussion did not work for me.

Categories
Workflow

CMD cd Shortcut

Sick of cmd starting in c:\Users\me and having to type a long path to cd?

Create a .bat file and save it in c:\Windows\System32 (as Admin)
Save as mypath.bat, or perhaps even something logical.

@ECHO OFF
cd c:\path_i\commonly_want_to\go\to\

Then in cmd just type mypath and you’ll get where you want to go.