Tech Qs
1 - Notification of when your question has been answered. (Optional)
-
can any one tell me the correct difference between retesting and regression testing? please explain in detail if possible with examples
Retesting means testing the functionality of a module again and again.
Regression testing means testing the module to check whether the changes made have introduced any errors to the further code. It is to check whether the previously working code is still working properly.
So, for a simple example:
You build a blog template in PHP. You test it to make sure it works and you test it again. That's retesting.
Then, you add a component to it, like a plugin. So, you go back and test the old code with the plugin added to make sure that the original PHP is still functional.
Does that make sense?
-
How can part of a post or page be password protected? WP protects the whole page. I want to show the first paragraph and the
part to be password protected? Not sure you can do that, Brian. You can protect the post, but not part of it. Unless... You write a teaser post and manually add a "more" hyperlink to the end of that that leads to another post that is password protected.


