Posts Tagged ‘developers’
Written by Atiq on 23 November 2011
Tweet PHP is an opensource server side scripting language and it is a widely used. The Apache web server provides access to files and content over HTTP OR HTTPS protocol. A misconfigured server side scripting language can create all sorts of problems. So, PHP should be used carefully. Here are twenty five php security best practices [Continue]
Written by Atiq on 21 November 2011
Tweet HOWTO: Subversion for Windows with Apache server 1. Introduction 2. Installation 2.1. Setting up the OS 2.2. Installing Subversion 2.3. Installing Apache 2.2 3. Configuration 3.1. Configuring Subversion 3.2. Configuring Apache 2.2 server 4. Backup 4.1. What to back up? 4.2. Creating a repository dump 5. Upgrade 5.1. Upgrading Apache 2.2 [Continue]
Written by Atiq on 10 October 2011
Tweet For bloggers who host their own blog or website, it is inevitable that it will have to be moved. First, you might need to move your blog if you are switching your web host. Second, you might also need to ‘move’ your website if you are transferring it to a new domain, new directory, or [Continue]
Written by Atiq on 22 August 2011
Tweet In order to install the SVN Server you need the SVN Server and Apache Server (to access the repository over http and https). Following are the steps to install the SVN Server and Apache Server. yum install subversion (this command will download and install the SVN Server) yum install mod_dav_svn (it will install the [Continue]
Written by Atiq on 15 April 2011
Tweet This article is helpful for you to install Python from source on Linux system. Follow the steps as describes below: localhost:~$ su − Password: localhost:~# wget http://www.python.org/ftp/python/2.3/Python−2.3.tgz Resolving www.python.org… done. Connecting to www.python.org:80… connected. HTTP request sent, awaiting [Continue]
Written by Atiq on 01 March 2011
Tweet What is new? Firefox 4 Beta 2 is available in 24 languages. Tabs are now on top by default on Windows and OSX – Linux will be changing when the theme has been modified to support the change. You can turn any tab into an “App Tab” by right-clicking on it and [Continue]
Written by sysadmin on 31 October 2010
Tweet What is SQL Injection Most new web developers have heard of SQL injection attacks, but not very many know that it is fairly easy to prevent an attacker from gaining access to your data by filtering out the vulnerabilities using MySQL extensions found in PHP. An SQL injection attack occurs when a hacker or [Continue]
Written by Atiq on 30 October 2010
Tweet Solving ReportViewer Rendering Issue on IIS7 Applies to: Internet Information Services 7.0 (IIS7) Microsoft Report Viewer Redistributable 2005 Symptoms: Unable to render ReportViewer on ASP.NET Web pages while running on IIS7. You have no problem viewing your reports when running on debug mode with your Visual Studio 2005. You are able to [Continue]
Written by Atiq on 30 October 2010
Tweet IIS versions before 7.0 did not require <handlers> for AJAX to work. If you are installing AJAX on new IIS7 servers, you will have to make sure you have the following code in your web.config: <!-- The system.webServer section is required for running ASP.NET AJAX under Internet [Continue]
Written by Atiq on 30 October 2010
Tweet Problem: Server Error in ‘/’ Application. ——————————————————————– The ‘Microsoft.Jet.OLEDB.4.0′ provider is not registered on the local machine. Description: An unhandled exception [Continue]
Written by Atiq on 30 October 2010
Tweet Internet Information Services 7 (IIS7) doesn’t use metabase-like file from IIS6. Instead the settings and configuration are stored in schema files and applicationHost.config files. Since the configuration files are different, the old IIS6 tools will not be able to backup IIS7 settings. This is the new script that you can use to backup [Continue]
Written by Administrator on 06 October 2010
It is great to be able to build small utilities on top of an excellent RDBMS. Thank you MySQL. This is a small but complex utility to perform online schema change for MySQL. We call it OSC and the source is here (Code is also available at bottom).
Some ALTER TABLE statements take too long form the perspective of some MySQL users. The fast index [Continue]