Knowledge.ToString()

  • WordPress Comment Spam Even with Comments Disabled for Blog

    I have my WordPress blog at https://diary.vishalon.net. Every day I am getting hundreds of comment spam. I had installed comment spam fight plugin and it seems like worked for few days but again I was getting spam comments. I changed the settings of blog so that only logged in user can put a comment. I…

    |

  • php.ini Changes Have No Effect

    Today I tried to install PHP and MySQL on my local Windows XP Pro machine. Both were working fine individually but I could not connect to the MySQL from PHP code. I tried to change php.ini file but no matter what I do, changes were not reflected when I tried phpinfo() function. php.ini File Location…

    |

  • 4 ways to Enable Windows XP Language Toolbar

    I was completely frustrated with Languge toolbar as it was enabled in some computer and not enabled in other computer. I tried many methods and after some trial and error, I found few things which might help you get your Windows Language Toolbar back. This solution is given for Windows XP user. Method 1 Right…

    |

  • WordPress Yearly/Monthly/Weekly Post Repeater Plugin

    Post Repeater plugin is a boon when you need to repeat a single post every year/month/week of the day. You may achieve this functionality by editing timestamp manually, but using this plugin you can automate this task. This plugin is very useful when you are blogging about weekly/monthly/yearly/historical events, famous persons etc. All the posts…

    |

  • WordPress Yearly Repeater Plugin

    Update: This plugin is modified and created new Post Repeater Plugin which is capable of repeating the post yearly/monthly/weekly bases. Yearly Repeater plugin is a boon when you need to repeat a single post every year on a particular day. You can achieve this by editing timestamp manually every year, but using this plugin you…

    |

  • WordPress Sticky Post Plugin

    Sticky Post Plugin is a must have plugin in your WordPress arsenal. This plugin shows the designated post on the top of every post. There is no need to modify your current theme. Download WordPress Sticky Post Plugin Version Supported WordPress 2.1 and greaterWordPress Mu 1.1 and greater Installation Procedure 1) Download the plugin and…

    |

  • Stop DTS Package Execution Conditionally Without Failure

    There is no straight way in DTS to stop the package on a certain condition without having it fail. Suppose in DTS package is suppose to be executed everyday at 8:00AM. This package is looking for a file c:\abc.txt. If the file has not arrived, it should gracefully stop without reporting any error. If the…

    |

  • Crash FreeTextBox using Javascript

    Would you like to crash FreeTextBox? Here is the trick. Visit the page http://freetextbox.com/demos/Default.aspx Click on HTML view and copy/paste the following code. Press “Save” button. This will convert your code into Note that “a” is missing. Pretty interesting!!! hmmmmmm….Now again click on HTML view and copy/paste following code Now you will see error….. Hurray………

    |

  • DTS SQL Statement / Stored procedure / Function to check for existence of file.

    Important things to remember Existence of the file will be checked on the server in which it is created. If you are running this stored procedure on remote machine, it will check for file on remote machine and not on local machine. To call a function, you should write Here “dbo.” must be appended to…

    |

  • How to Split Single Record into Multiple Records Using DTS?

    There are many times a situation arises when we have to upload data from excel datasheet to SQL Server and the data in the sheet is not normalized. At that time, we need to make more than one record from a single record. Suppose you have a sheet in which each row in spreadsheet shows…

    |