Hi,
I’ve just make apps to convert fileserve links into premium. Apps requirement only .NET Framework with minimum 2.0
How To :

Please PM me if you find trouble running this
Revision History
1.2 – 18-4-2011- Added My Signature to the Apps Download Here
Share on Facebook
By default, if you installed netbeans 6.8, it will have glassfish v3 installed automatically. But there’s sometime when you accidentially delete or missing the server, netbeans will asked you to resolve the problem.
By using ordinary method, is impossible to add the glassfish server. It will have blank domainwhere supposed to be filled with domain1 name.
If you’re having issues like these, you can solve it by doing following steps
1. Tools > Server
2. Remove the glassfish server from the list and click Close
3.Shutdown Netbeans.
4. Right click on the netbeans icon and click on “Run as administrator”
5. Right click on your web app project and Click on Resolve missing server.
6. Add the Glassfish server again.
Share on Facebook
if your having trouble like this with your Visual Studio 2010 while you have to target .net 3.5, you can do following steps
1. Unload your project within visual studio 2010
2. Edit your project
3. add below code within your project
<Reference Include=”System” />
<Reference Include=”System.Core”>
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
Share on Facebook
1.Please do ensure that any of your google analytics plugins already activated
2. Do setting including your urchin code
3. Make sure that your footer template (usually footer.php) called wordpress function which is wp_footer.
<?php
wp_footer();
?>
Share on Facebook
if your having this message, just add below code in your web.config
<dependentAssembly>
<assemblyIdentity name=”System.Data.SQLite” publicKeyToken=”db937bc2d44ff139″/>
<bindingRedirect oldVersion=”1.0.61.0″ newVersion=”1.0.66.0″/>
</dependentAssembly>
It tells you to redirect all of your SQLite DLL version 1.0.61.0 into somethin newer,for this example 1.0.66.0
For further info, check this
1.DLL redirection in web.config
2.Issue regarding elmah
Share on Facebook
Recent Comments