<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>web programming &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/category/web-programming/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Mon, 16 Mar 2015 11:19:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>How To Install Solr 4.10.4 On CentOS 6.5</title>
		<link>https://lifelinux.com/how-to-install-solr-4-10-4-on-centos-6-5/</link>
					<comments>https://lifelinux.com/how-to-install-solr-4-10-4-on-centos-6-5/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 16 Mar 2015 11:16:09 +0000</pubDate>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[web programming]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[install solr 4.10.4]]></category>
		<category><![CDATA[install solr on centos]]></category>
		<category><![CDATA[java]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=1955</guid>

					<description><![CDATA[<p>Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more. Solr powers the search and navigation features of many of the world&#8217;s largest internet sites. In this tutorial I will explain How to install Solr 4.10.4 on CentOS 6.5. The first of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-install-solr-4-10-4-on-centos-6-5/">How To Install Solr 4.10.4 On CentOS 6.5</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><blockquote><p>Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more. Solr powers the search and navigation features of many of the world&#8217;s largest internet sites.</p></blockquote>
<p><span id="more-1955"></span></p>
<p>In this tutorial I will explain How to install Solr 4.10.4 on CentOS 6.5. The first of all, Login as root user.</p>
<h2>Installing JAVA</h2>
<p>To start things off first check if you have Java installed:</p>
<pre># which java
</pre>
<p>If you do not have Java installed check for latest version:</p>
<pre># yum list available | grep openjdk
</pre>
<p>Outputs</p>
<pre>java-1.6.0-openjdk.x86_64                  1:1.6.0.34-1.13.6.1.el6_6     updates
java-1.6.0-openjdk-demo.x86_64             1:1.6.0.34-1.13.6.1.el6_6     updates
java-1.6.0-openjdk-devel.x86_64            1:1.6.0.34-1.13.6.1.el6_6     updates
java-1.6.0-openjdk-javadoc.x86_64          1:1.6.0.34-1.13.6.1.el6_6     updates
java-1.6.0-openjdk-src.x86_64              1:1.6.0.34-1.13.6.1.el6_6     updates
java-1.7.0-openjdk-demo.x86_64             1:1.7.0.75-2.5.4.0.el6_6      updates
java-1.7.0-openjdk-devel.x86_64            1:1.7.0.75-2.5.4.0.el6_6      updates
java-1.7.0-openjdk-javadoc.noarch          1:1.7.0.75-2.5.4.0.el6_6      updates
java-1.7.0-openjdk-src.x86_64              1:1.7.0.75-2.5.4.0.el6_6      updates
java-1.8.0-openjdk.x86_64                  1:1.8.0.31-1.b13.el6_6        updates
java-1.8.0-openjdk-demo.x86_64             1:1.8.0.31-1.b13.el6_6        updates
java-1.8.0-openjdk-devel.x86_64            1:1.8.0.31-1.b13.el6_6        updates
java-1.8.0-openjdk-headless.x86_64         1:1.8.0.31-1.b13.el6_6        updates
java-1.8.0-openjdk-javadoc.noarch          1:1.8.0.31-1.b13.el6_6        updates
java-1.8.0-openjdk-src.x86_64              1:1.8.0.31-1.b13.el6_6        updates
</pre>
<p>Type the following command to install java</p>
<pre># yum install java-1.8.0-openjdk.x86_64
</pre>
<p>Finally, check Java version:</p>
<pre># java -version
java version "1.8.0_75"
OpenJDK Runtime Environment (rhel-2.5.4.0.el6_6-x86_64 u75-b13)
OpenJDK 64-Bit Server VM (build 24.75-b04, mixed mode)
[root@host-129-19 ~]# 
</pre>
<h2>Installing Solr</h2>
<p>Install the latest version Solr release by downloading from http://www.us.apache.org/dist/lucene/solr/</p>
<pre># cd /opt/
# wget http://www.us.apache.org/dist/lucene/solr/4.10.4/solr-4.10.4.tgz
</pre>
<p>Extracting solr package:</p>
<pre># tar zxvf solr-4.10.4.tgz
# mv solr-4.10.4 solr
</pre>
<p>Renaming &#8220;example&#8221; directory to project name, example &#8220;core&#8221;:</p>
<pre># cd solr
# mv example core
</pre>
<h2>Running Solr</h2>
<p>You should now be able to test running the Solr server with following command</p>
<pre># cd /opt/solr/core
# java -jar start.jar
</pre>
<p>If everything works correctly you should be able to view the Solr server admin by going to:<br />
http://[server hostname or IP]:8983/solr/<br />
If this does not work try viewing the log /opt/solr/solr/logs/solr.log</p>
<h2>Auto Start Apache Solr</h2>
<p>First, create script for handling the Solr server service</p>
<pre># vi /etc/init.d/solr
</pre>
<p>And add the following script</p>
<pre>#!/bin/sh 
# chkconfig: 2345 95 20 
# description: Solr Server 
# Solr Server service start, stop, restart 
# @author Shay Anderson 10.13 

SOLR_DIR="/opt/solr/core" 
JAVA="/usr/bin/java -DSTOP.PORT=8079 -DSTOP.KEY=a09df7a0d -jar start.jar" 
LOG_FILE="/opt/solr/core/logs/solr-server.log" 

case $1 in 
      start) 
            echo "Starting Solr..." 
            cd $SOLR_DIR 
            $JAVA 2&gt; $LOG_FILE &amp; 
            sleep 3 
            ;; 
      stop) 
            echo "Stopping Solr..." 
            pkill -f start.jar &gt; /dev/null 
            RETVAL=$? 
            if [ $RETVAL -eq 0 ]; then 
                  echo "Stopped" 
            else 
                  echo "Failed to stop" 
            fi 
            ;; 
      restart) 
            $0 stop 
            sleep 2 
            $0 start 
            ;; 
      *) 
            echo "Usage: $0 [start|stop|restart]" 
            exit 1 
            ;; 
esac 

exit 0
</pre>
<p>To run Apache Solr by default when the system boots, type the following command</p>
<pre>
# chmod +x /etc/init.d/solr
# chkconfig --level 345 solr on
</pre>
<g:plusone href="https://lifelinux.com/how-to-install-solr-4-10-4-on-centos-6-5/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-install-solr-4-10-4-on-centos-6-5/">How To Install Solr 4.10.4 On CentOS 6.5</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-install-solr-4-10-4-on-centos-6-5/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install HHVM 3.2.0 On CentOS 6.5</title>
		<link>https://lifelinux.com/how-to-install-hhvm-3-2-0-on-centos-6-5/</link>
					<comments>https://lifelinux.com/how-to-install-hhvm-3-2-0-on-centos-6-5/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 06 Nov 2014 15:40:34 +0000</pubDate>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[web programming]]></category>
		<category><![CDATA[WebServer]]></category>
		<category><![CDATA[HHVM]]></category>
		<category><![CDATA[intall hhvm]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[nginx + hhvm]]></category>
		<category><![CDATA[wget]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=1945</guid>

					<description><![CDATA[<p>HipHop Virtual Machine (HHVM) is a process virtual machine based on just-in-time (JIT) compilation, serving as an execution engine for PHP and Hack programming languages. By using the principle of JIT compilation, executed PHP or Hack code is first transformed into intermediate HipHop bytecode (HHBC), which is then dynamically translated into the x86-64 machine code, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-install-hhvm-3-2-0-on-centos-6-5/">How To Install HHVM 3.2.0 On CentOS 6.5</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p>HipHop Virtual Machine (HHVM) is a process virtual machine based on just-in-time (JIT) compilation, serving as an execution engine for PHP and Hack programming languages. By using the principle of JIT compilation, executed PHP or Hack code is first transformed into intermediate HipHop bytecode (HHBC), which is then dynamically translated into the x86-64 machine code, optimized and natively executed.<br />
<span id="more-1945"></span><br />
According to their website, HHVM has realized over a 9x increase in web request throughput and over a 5x reduction in memory consumption for Facebook compared with the Zend PHP engine + APC (which is the current way of hosting a large majority of PHP applications).</p>
<h2>Installing HHVM</h2>
<p>Installing HHVM is quite straightforward and shouldn&#8217;t take more than a few minutes.<br />
Login as root and execute the following commands from the command line will have HHVM installed and ready:</p>
<pre>
# cd /etc/yum.repos.d
# wget http://www.hop5.in/yum/el6/hop5.repo
# yum install hhvm
</pre>
<p>Sample output</p>
<pre>
Dependencies Resolved

================================================================================
 Package                   Arch       Version                    Repository
                                                                           Size
================================================================================
Installing:
 hhvm                      x86_64     3.2.0-1.el6                hop5     9.6 M
Installing for dependencies:
 GConf2                    x86_64     2.28.0-6.el6               base     964 k
 ImageMagick               x86_64     6.8.6.3-4.el6              hop5     138 k
 ImageMagick-libs          x86_64     6.8.6.3-4.el6              hop5     1.9 M
 ORBit2                    x86_64     2.14.17-5.el6              base     168 k
 OpenEXR-libs              x86_64     1.6.1-8.1.el6              base     197 k
 boost                     x86_64     1.54.0-7.el6               hop5      32 k
 boost-atomic              x86_64     1.54.0-7.el6               hop5      34 k
 boost-chrono              x86_64     1.54.0-7.el6               hop5      40 k
 boost-context             x86_64     1.54.0-7.el6               hop5      33 k
 boost-date-time           x86_64     1.54.0-7.el6               hop5      47 k
 boost-filesystem          x86_64     1.54.0-7.el6               hop5      63 k
 boost-graph               x86_64     1.54.0-7.el6               hop5     126 k
 boost-iostreams           x86_64     1.54.0-7.el6               hop5      55 k
 boost-locale              x86_64     1.54.0-7.el6               hop5     251 k
 boost-log                 x86_64     1.54.0-7.el6               hop5     599 k
 boost-math                x86_64     1.54.0-7.el6               hop5     324 k
 boost-program-options     x86_64     1.54.0-7.el6               hop5     145 k
 boost-python              x86_64     1.54.0-7.el6               hop5     124 k
 boost-random              x86_64     1.54.0-7.el6               hop5      36 k
 boost-regex               x86_64     1.54.0-7.el6               hop5     298 k
 boost-serialization       x86_64     1.54.0-7.el6               hop5     155 k
 boost-signals             x86_64     1.54.0-7.el6               hop5      56 k
 boost-system              x86_64     1.54.0-7.el6               hop5      36 k
 boost-test                x86_64     1.54.0-7.el6               hop5     212 k
 boost-thread              x86_64     1.54.0-7.el6               hop5      55 k
 boost-timer               x86_64     1.54.0-7.el6               hop5      38 k
 boost-wave                x86_64     1.54.0-7.el6               hop5     198 k
 fftw                      x86_64     3.2.1-3.1.el6              base     1.2 M
 gd                        x86_64     2.0.35-11.el6              base     142 k
 ghostscript               x86_64     8.70-19.el6                base     4.4 M
 ghostscript-fonts         noarch     5.50-23.2.el6              base     590 k
 glog                      x86_64     0.3.2-1.el6                hop5      48 k
 ilmbase                   x86_64     1.0.1-6.1.el6              base      72 k
 jemalloc                  x86_64     3.6.0-1.el6                epel     100 k
 lcms2                     x86_64     2.3-2.el6                  epel     127 k
 libICE                    x86_64     1.0.6-1.el6                base      53 k
 libIDL                    x86_64     0.8.13-2.1.el6             base      83 k
 libSM                     x86_64     1.2.1-2.el6                base      37 k
 libXfont                  x86_64     1.4.5-3.el6_5              base     136 k
 libXt                     x86_64     1.1.4-6.1.el6              base     165 k
 libcroco                  x86_64     0.6.2-5.el6                base     100 k
 libdwarf                  x86_64     20140413-1.el6             epel     108 k
 libfontenc                x86_64     1.0.5-2.el6                base      24 k
 libgsf                    x86_64     1.14.15-5.el6              base     116 k
 libicu                    x86_64     4.2.1-9.1.el6_2            base     4.9 M
 libmcrypt                 x86_64     2.5.8-9.el6                epel      96 k
 libmemcached              x86_64     1.0.16-1.el6               hop5     208 k
 libmpc                    x86_64     0.8.3-0.3.svn855.el6       hop5      47 k
 librsvg2                  x86_64     2.26.0-14.el6              base     140 k
 libtool-ltdl              x86_64     2.4.2-21.el6               hop5      46 k
 libunwind                 x86_64     1.1-2.el6                  epel      54 k
 libwmf-lite               x86_64     0.2.8.4-23.el6             base      51 k
 libxslt                   x86_64     1.1.26-2.el6_3.1           base     452 k
 mysql                     x86_64     5.1.73-3.el6_5             base     894 k
 ocaml                     x86_64     3.12.1-12.el6              hop5     5.5 M
 ocaml-runtime             x86_64     3.12.1-12.el6              hop5     1.4 M
 oniguruma                 x86_64     5.9.1-3.1.el6              base     123 k
 sgml-common               noarch     0.6.3-33.el6               base      43 k
 tbb                       x86_64     4.0-7.20120408.el6         hop5     103 k
 unixODBC                  x86_64     2.2.14-14.el6              base     378 k
 urw-fonts                 noarch     2.4-10.el6                 base     3.1 M
 xorg-x11-font-utils       x86_64     1:7.2-11.el6               base      75 k
Updating for dependencies:
 cpp                       x86_64     4.8.2-8.el6                hop5     5.7 M
 curl                      x86_64     7.29.0-4.el6               hop5     256 k
 gcc                       x86_64     4.8.2-8.el6                hop5      17 M
 gcc-c++                   x86_64     4.8.2-8.el6                hop5     6.9 M
 libcurl                   x86_64     7.29.0-4.el6               hop5     198 k
 libcurl-devel             x86_64     7.29.0-4.el6               hop5     294 k
 libevent                  x86_64     1.4.14b-2.hphp.el6         hop5      66 k
 libgcc                    x86_64     4.8.2-8.el6                hop5      83 k
 libgomp                   x86_64     4.8.2-8.el6                hop5     100 k
 libstdc++                 x86_64     4.8.2-8.el6                hop5     289 k
 libstdc++-devel           x86_64     4.8.2-8.el6                hop5     1.5 M

Transaction Summary
================================================================================
Install      63 Package(s)
Upgrade      11 Package(s)

Total download size: 73 M
Is this ok [y/N]: <strong>y</strong>
</pre>
<p>To confirm that HHVM has been installed, type the following command:</p>
<pre>
# hhvm --version
</pre>
<p>This will show details of how the hhvm command can be used from the command line. Here is a sample screenshot that illustrates this:</p>
<pre>
HipHop VM 3.2.0 (rel)
Compiler: tags/HHVM-3.2.0-0-g01228273b8cf709aacbd3df1c51b1e690ecebac8
Repo schema: c52ba40f4a246d35a88f1dfc1daf959851ced8aa
</pre>
<h2>Using Nginx with HHVM</h2>
<p>If you are using Nginx with PHP-FPM, you&#8217;ll have to modify the configuration file to enable the use of HHVM.</p>
<p>Look for the following section and make sure it&#8217;s all uncommented (by remove a # at the beginning of each line)</p>
<pre>
location ~ \.php$ {
       fastcgi_pass 127.0.0.1:9000;
       fastcgi_index index.php;
       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
       include fastcgi_params;
}
</pre>
<p>Create a file called name &#8220;hhsvr&#8221; to start or restart HHVM service</p>
<pre>
# vi /usr/bin/hhsrv
# chmod +x /usr/bin/hhsrv
</pre>
<p>Append </p>
<pre>
#!/bin/bash
LOG="/var/log/hhvm.log"
CMD="hhvm --mode server -vServer.Type=fastcgi -vServer.Port=9000"
if [ "$1" == "-h" ] || [ "$1" == "--help" ]; then
        echo "To restart HHVM: /usr/bin/hhsrv restart|stop\n"
        exit;
fi

# Restart HHVM
if [ "$1" == "restart" ]; then
        PID=$(ps aux | grep -v grep | grep hhvm | awk '{print $2}')
        echo "Restarting HHVM..."
        if [ "${PID}" != "" ]; then
                kill -9 ${PID}
        fi
        echo "Starting HHVM ..."
        ${CMD} > /dev/null 2>&1 &
        echo "DONE !!!"
fi

# Stop HHVM
if [ "$1" == "stop" ]; then
        PID=$(ps aux | grep -v grep | grep hhvm | awk '{print $2}')
        echo "Restarting HHVM..."
        if [ "${PID}" != "" ]; then
                kill -9 ${PID}
        fi
        echo "HHVM stopped !!!"
fi
</pre>
<p>Final, Type the following command to start HHVM</p>
<pre>
# hhsrv restart
</pre>
<g:plusone href="https://lifelinux.com/how-to-install-hhvm-3-2-0-on-centos-6-5/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-install-hhvm-3-2-0-on-centos-6-5/">How To Install HHVM 3.2.0 On CentOS 6.5</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-install-hhvm-3-2-0-on-centos-6-5/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install Subversion (SVN) Extension Working With PHP 5.3</title>
		<link>https://lifelinux.com/how-to-install-subversion-svn-extension-working-with-php-5-3/</link>
					<comments>https://lifelinux.com/how-to-install-subversion-svn-extension-working-with-php-5-3/#respond</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Thu, 28 Mar 2013 07:56:38 +0000</pubDate>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[web programming]]></category>
		<category><![CDATA[WebServer]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=1748</guid>

					<description><![CDATA[<p>This extension implements PHP bindings for Subversion (SVN), a version control system, allowing PHP scripts to communicate with SVN repositories and working copies without direct command line calls to the svn executable. In this tutorial, I will show you How to install Subversion (SVN) extension working with PHP 5.3. The first, download &#38; extract latest [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-install-subversion-svn-extension-working-with-php-5-3/">How To Install Subversion (SVN) Extension Working With PHP 5.3</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p>This extension implements PHP bindings for Subversion (SVN), a version control system, allowing PHP scripts to communicate with SVN repositories and working copies without direct command line calls to the svn executable. In this tutorial, I will show you How to install Subversion (SVN) extension working with PHP 5.3.<span id="more-1748"></span></p>
<p>The first, download &amp; extract latest version of SVN extension, login as root and type the following command</p>
<pre># wget http://pecl.php.net/get/svn-1.0.2.tgz
# tar zxvf svn-1.0.2.tgz
# cd svn-1.0.2</pre>
<p>The second, execute phpize command will generate additional configuration files</p>
<pre># /webserver/php/bin/phpize</pre>
<p>Sample output</p>
<pre>Configuring for:
PHP Api Version:         20090626
Zend Module Api No:      20090626
Zend Extension Api No:   220090626</pre>
<p>The next, type the following command to compile the svn extension source</p>
<pre># ./configure
# make &amp; make install</pre>
<p>If you get an errors like</p>
<pre>configure: error: Cannot find php-config. Please use --with-php-config=PATH</pre>
<p>To fix it, enter</p>
<pre># ./configure --with-php-config=&lt;path to php-config file&gt;</pre>
<p>Or, if you get an error like</p>
<pre>checking for svn includes... configure: error: failed to find svn_client.h</pre>
<p>To fix it, enter</p>
<pre># yum install subversion subversion-devel neon-devel -y</pre>
<p>Sample output</p>
<pre>Dependency Installed:
  apr.x86_64 0:1.3.9-5.el6_2
  apr-devel.x86_64 0:1.3.9-5.el6_2
  apr-util.x86_64 0:1.3.9-3.el6_0.1
  apr-util-devel.x86_64 0:1.3.9-3.el6_0.1
  cyrus-sasl-devel.x86_64 0:2.1.23-13.el6_3.1
  db4-cxx.x86_64 0:4.7.25-17.el6
  db4-devel.x86_64 0:4.7.25-17.el6
  gnutls-devel.x86_64 0:2.8.5-10.el6_4.1
  libproxy.x86_64 0:0.3.0-4.el6_3
  libproxy-bin.x86_64 0:0.3.0-4.el6_3
  libproxy-python.x86_64 0:0.3.0-4.el6_3
  neon.x86_64 0:0.29.3-2.el6
  openldap-devel.x86_64 0:2.4.23-32.el6_4
  pakchois.x86_64 0:0.4-3.2.el6
  perl-URI.noarch 0:1.40-2.el6

Dependency Updated:
  gnutls.x86_64 0:2.8.5-10.el6_4.1       openldap.x86_64 0:2.4.23-32.el6_4</pre>
<p>Finally, type the following command to enable SVN extension</p>
<pre># echo "extension=svn.so" &gt;&gt; /etc/php.ini</pre>
<p>To check SVN extension is loaded, type the following command</p>
<pre># php -i | grep -i svn</pre>
<p>Sample output</p>
<pre>svn support =&gt; enabled
svn client version =&gt; 1.6.11
svn extension version =&gt; 1.0.2</pre>
<g:plusone href="https://lifelinux.com/how-to-install-subversion-svn-extension-working-with-php-5-3/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-install-subversion-svn-extension-working-with-php-5-3/">How To Install Subversion (SVN) Extension Working With PHP 5.3</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-install-subversion-svn-extension-working-with-php-5-3/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
