You said you tried to flash that .zip with TWRP? Or could you not install TWRP?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Still at the same point. Boot into CWM, choose zip from sd card, choose zip from external sd card, choose SuperSU_Bootloader_FIXED.zip, Yes - Install SuperSU_Bootloader_FIXED.zip, then get the following message:
set_perm: some changes failed
E:Error in /external_sd/SuperSU_Bootloader_FIXED.zip
(Status 7)
Installation aborted.
Can't stand this!!!!
Do you have a spare sdcard you could try? Or worst case, save/pull the current contents off your sdcard and onto a pc, and then reformat the sdcard using your card reader and windows to do a full reformat (not quick). I've always had good luck using fat32 format for all things android. Then replace the zip, put back in phone and try flashing from cwr again. Just a thought, maybe there's a read issue from the card.
As you can see, some of my friends have come to help out too as I am getting stumped!Mikestony, I am using the USB cord that came with the phone, but I can try another cable. I just don't think it is the cable since it works fine when using Odin and flashing both VRALEC Boot chain and the CMW. Just doesn't want to work with the TWRP.
Not sure how to check the MD5. Odin didn't have a problem putting both CMW and TWRP into the PDN.
Attaching the TWRP error. Thanks so much for all the help though. I really appreciate it. I've had to resort to going back to my rooted Incredible 2 in the meantime. The difference is NIGHT and DAY, lol.

Mikestony, I am using the USB cord that came with the phone, but I can try another cable. I just don't think it is the cable since it works fine when using Odin and flashing both VRALEC Boot chain and the CMW. Just doesn't want to work with the TWRP.
Not sure how to check the MD5. Odin didn't have a problem putting both CMW and TWRP into the PDN.
Attaching the TWRP error. Thanks so much for all the help though. I really appreciate it. I've had to resort to going back to my rooted Incredible 2 in the meantime. The difference is NIGHT and DAY, lol.
Are you good with adb shell commands?
ui_print("...Installing SuperSU 0.98");
ui_print("Mounting system...");
run_program("/sbin/busybox", "mount", "/system");
ui_print("Deleting old files...");
delete("/system/bin/su","/system/xbin/su","/system/app/Superuser.apk");
ui_print("Copying files...");
package_extract_dir("system", "/system");
ui_print("Fixing permissions...");
[COLOR="Red"]set_perm(0, 0, 06755, "/system/xbin/su");
set_perm(0, 0, 0644, "/system/app/Superuser.apk");[/COLOR]
ui_print("Unmounting system...");
run_program("/sbin/busybox", "umount", "/system");
ui_print("");
ui_print("");
assert(getprop("ro.product.device") == "d2vzw" || getprop("ro.build.product") == "d2vzw");
ui_print("Installing d2vzw VRLE6 bootloader");
package_extract_dir("files", "/tmp");
[COLOR="red"]set_perm(0, 0, 0777, "/tmp/dd");[/COLOR]
if
sha1_check(read_file("/tmp/aboot.mbn")) != "6ddd4045b05e1f955f47445d88b734a9dc62bc49"
then
ui_print("SHA1 SUM FAILURE! QUITTING!");
endif;
if
sha1_check(read_file("/tmp/aboot.mbn")) == "6ddd4045b05e1f955f47445d88b734a9dc62bc49"
then
ui_print("SHA1 SUM Success! Flashing...!");
run_program("/tmp/dd", "if=/tmp/aboot.mbn", "of=/dev/block/mmcblk0p5");;
ui_print("Done!");
endif;
ui_print("Installation complete!");
o Uncheck the "Auto Reboot" box in ODIN ***VERY IMPORTANT***
.
