<?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>xampp xdebug yükleme - Bilişim Kurdu</title>
	<atom:link href="https://bilisimkurdu.github.io/tag/xampp-xdebug-yukleme/feed/" rel="self" type="application/rss+xml" />
	<link>https://bilisimkurdu.github.io</link>
	<description>Bilişim Hakkında Her Şey</description>
	<lastBuildDate>Thu, 13 Feb 2020 08:52:02 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>

<image>
	<url>https://bilisimkurdu.github.io/wp-content/uploads/2020/04/Logo-1-150x150.png</url>
	<title>xampp xdebug yükleme - Bilişim Kurdu</title>
	<link>https://bilisimkurdu.github.io</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Xampp Xdebug yükleme</title>
		<link>https://bilisimkurdu.github.io/xampp-xdebug-yukleme/</link>
					<comments>https://bilisimkurdu.github.io/xampp-xdebug-yukleme/#respond</comments>
		
		<dc:creator><![CDATA[Yakup CONTARLI]]></dc:creator>
		<pubDate>Thu, 13 Feb 2020 08:52:02 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programlama]]></category>
		<category><![CDATA[lampp install xdebug linux]]></category>
		<category><![CDATA[lampp xdebug yükleme]]></category>
		<category><![CDATA[linux lampp xdegug yükleme]]></category>
		<category><![CDATA[linux xampp xdegug yükleme]]></category>
		<category><![CDATA[pardus lampp xdegug yükleme]]></category>
		<category><![CDATA[pardus xampp xdegug yükleme]]></category>
		<category><![CDATA[windows xampp xdegug yükleme]]></category>
		<category><![CDATA[xampp]]></category>
		<category><![CDATA[xampp install xdebug linux]]></category>
		<category><![CDATA[xampp install xdebug windows]]></category>
		<category><![CDATA[xampp xdebug yükleme]]></category>
		<category><![CDATA[xdebug]]></category>
		<category><![CDATA[yükleme]]></category>
		<guid isPermaLink="false">https://bilisimkurdu.github.io/?p=698</guid>

					<description><![CDATA[<p>Merhaba Muhterem Ziyaretçiler, Bu yazımda Xampp kurulu bilgisayara PHP eklentilerinden biri olan Xdebug nasıl yükleneceği üzere olacak. Xdebug eklentisi bilindiği üzere PHP kodlarını Debug (Ayrıştırma) işlevini görmekte. Geçelim Xdebug yüklemeye: Windows için; Xdebug dll dosyasını indirdikten sonra dosyanın ismi &#8220;debug.dll&#8221; olarak değiştirilir. Xdebug Windows dll dosyasını https://xdebug.org/download adresinden indirebilirsiniz debug.dll dosyasını &#8220;C:\xampp\php\ext&#8221; dizinine yapıştırılır. &#8220;C:\xampp\php\&#8221;&#8230;</p>
<p>The post <a href="https://bilisimkurdu.github.io/xampp-xdebug-yukleme/">Xampp Xdebug yükleme</a> first appeared on <a href="https://bilisimkurdu.github.io">Bilişim Kurdu</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Merhaba Muhterem Ziyaretçiler,</p>



<p>Bu yazımda Xampp kurulu bilgisayara PHP eklentilerinden biri olan Xdebug nasıl yükleneceği üzere olacak.</p>



<p>Xdebug eklentisi bilindiği üzere PHP kodlarını Debug (Ayrıştırma) işlevini görmekte.</p>



<span id="more-698"></span>



<p>Geçelim Xdebug yüklemeye:</p>



<p>Windows için;</p>



<p>Xdebug dll dosyasını indirdikten sonra dosyanın ismi &#8220;debug.dll&#8221; olarak değiştirilir.</p>



<p>Xdebug Windows dll dosyasını <a href="https://xdebug.org/download" target="_blank" rel="noreferrer noopener" aria-label="https://xdebug.org/download (yeni sekmede açılır)">https://xdebug.org/download</a> adresinden indirebilirsiniz</p>



<p>debug.dll dosyasını &#8220;<em>C:\xampp\php\ext</em>&#8221; dizinine yapıştırılır.</p>



<p>&#8220;<em><em>C:\xampp\php\</em></em>&#8221; dizininde <em><em>php.ini</em></em> dosyasını açıp (notepad veya herhangi bir metin editöründe) aşağıdaki veriler eklenir ve dosya kaydedilir;</p>



<pre class="wp-block-code"><code>zend_extension = c:\xampp\php\ext\xdebug.dll
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.remote_host = localhost
xdebug.remote_autostart = 1
xdebug.remote_port = 9000
xdebug.show_local_vars = 1</code></pre>



<p>Linux için &#8220;terminal&#8221; açılarak(Debian tabanlı) <code>sudo -i</code> veya (Opensuse,Centos gibi) <code>su</code> ifadesi girilir.Root şifresini girdikten sonra aşağıdaki komutlar sırasıyla yazılır;</p>



<pre class="wp-block-code"><code>sudo apt-get install autoconf automake libtool m4
export LANG="C"
/opt/lampp/bin/pecl update-channels
/opt/lampp/bin/pecl install Xdebug</code></pre>



<p>&#8220;/opt/lampp/etc/&#8221; dizininde <em><em>php.ini</em></em> dosyasını açıp (gedit veya herhangi bir metin editöründe) aşağıdaki veriler eklenir ve dosya kaydedilir;</p>



<pre class="wp-block-code"><code>&#91;Xdebug]
zend_extension=/opt/lampp/lib/php/extensions/xdegugDosyasininOlduguKlasor/xdebug.so
xdebug.idekey = netbeans-xdebug
xdebug.profiler_append = 0
xdebug.profiler_enable = 0
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_name = cachegrind.out.%t-%s
xdebug.remote_enable = 1
xdebug.remote_autostart = 0
xdebug.remote_connect_back = 0
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9000
xdebug.remote_handler = dbgp
xdebug.remote_mode = req
xdebug.show_local_vars = 9</code></pre>



<p>Eğer bu yazıyla ilişkin anlatamadığım\anlaşılamayan konular varsa yazının altına yorum yapabilirsiniz.</p>



<p>İyi günler.</p><p>The post <a href="https://bilisimkurdu.github.io/xampp-xdebug-yukleme/">Xampp Xdebug yükleme</a> first appeared on <a href="https://bilisimkurdu.github.io">Bilişim Kurdu</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://bilisimkurdu.github.io/xampp-xdebug-yukleme/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
