<?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>Techy Things &#187; apache</title>
	<atom:link href="http://tech.yipp.ca/category/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.yipp.ca</link>
	<description>Just another Yipp.ca Blogs site</description>
	<lastBuildDate>Thu, 01 May 2025 18:06:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Fatal error: Call to undefined function mysqli_connect() windows</title>
		<link>http://tech.yipp.ca/apache/fatal-error-call-undefined-function-mysqli_connect-windows/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fatal-error-call-undefined-function-mysqli_connect-windows</link>
		<comments>http://tech.yipp.ca/apache/fatal-error-call-undefined-function-mysqli_connect-windows/#comments</comments>
		<pubDate>Sun, 24 Apr 2016 23:21:58 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=2381</guid>
		<description><![CDATA[<p>Fatal error: Call to undefined function mysqli_connect() Solution Find out which php.ini you are using. If none, create one from php-development.ini or else and paste it in let say c:\php5\ Unescape extension_dir like this:&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="http://tech.yipp.ca/apache/fatal-error-call-undefined-function-mysqli_connect-windows/">Fatal error: Call to undefined function mysqli_connect() windows</a> appeared first on <a rel="nofollow" href="http://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>Fatal error: Call to undefined function mysqli_connect()</p>
<h2>Solution</h2>
<ul>
<li>Find out which php.ini you are using. If none, create one from php-development.ini or else and paste it in let say c:\php5\</li>
<li>Unescape <strong>extension_dir</strong> like this:
<pre><span style="color: #339966;">; Directory in which the loadable extensions (modules) reside.
; http://php.net/extension-dir
; extension_dir = "./"
; On windows:</span>
<span style="color: #339966;"><span style="color: #993366;">extension_dir =</span> <span style="color: #000000;">"ext"</span></span></pre>
</li>
<li>Unescape these two extensions:
<pre><span style="color: #993366;">extension=</span>php_mysql.dll
<span style="color: #993366;">extension=</span>php_mysqli.dll
</pre>
</li>
</ul>
<p>The post <a rel="nofollow" href="http://tech.yipp.ca/apache/fatal-error-call-undefined-function-mysqli_connect-windows/">Fatal error: Call to undefined function mysqli_connect() windows</a> appeared first on <a rel="nofollow" href="http://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.yipp.ca/apache/fatal-error-call-undefined-function-mysqli_connect-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup basic Apache+PHP server on Windows for development</title>
		<link>http://tech.yipp.ca/apache/setup-basic-apachephp-server-windows-development/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=setup-basic-apachephp-server-windows-development</link>
		<comments>http://tech.yipp.ca/apache/setup-basic-apachephp-server-windows-development/#comments</comments>
		<pubDate>Tue, 19 Apr 2016 16:34:09 +0000</pubDate>
		<dc:creator><![CDATA[frank]]></dc:creator>
				<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://tech.yipp.ca/?p=2363</guid>
		<description><![CDATA[<p>These installation files are from the great Apachehaus builds that have lot of features packaged in. I suggest you go there first to get the latest version while following this blog. Files httpd-2.4.20-x64-vc14.zip Visual&#46;&#46;&#46;</p>
<p>The post <a rel="nofollow" href="http://tech.yipp.ca/apache/setup-basic-apachephp-server-windows-development/">Setup basic Apache+PHP server on Windows for development</a> appeared first on <a rel="nofollow" href="http://tech.yipp.ca">Techy Things</a>.</p>
]]></description>
				<content:encoded><![CDATA[<p>These installation files are from the great <strong><span style="color: #ff6600;">Apachehaus</span> </strong><a href="https://www.apachehaus.com" target="_blank">builds </a>that have lot of features packaged in. I suggest you go <a href="https://www.apachehaus.com" target="_blank">there first to get the latest version</a> while following this blog.</p>
<h2>Files</h2>
<ul>
<li><a href="https://www.apachehaus.com/cgi-bin/download.plx?dli=QWUR2RSVVQy4keVtWWYRGUKVlUGR1UwBVUspkT" target="_blank">httpd-2.4.20-x64-vc14.zip</a></li>
<li><a href="https://www.microsoft.com/en-us/download/details.aspx?id=49984" target="_blank">Visual Studio 14 (2015) runtimes</a> if you don't have (httpd.exe will fail to start with specific error about VCRUNTIME140.dll missing otherwise)</li>
<li><a href="https://phpdev.toolsforresearch.com/php-5.6.20-Win32-VC11-x64.zip" target="_blank">php-5.6.20-Win32-VC11-x64.zip</a></li>
<li>Apache <a href="http://yipp.ca/downloads-320x/httpd.conf" target="_blank">httpd.conf sample file</a></li>
</ul>
<h2>Installation</h2>
<ul>
<li>Create a folder <strong><span style="color: #ff6600;">c:\dev</span></strong> if not existing</li>
<li>Extract <span style="color: #ff6600;"><strong>httpd-2.4.20-win64-VC14.zip</strong></span> to c:\Apache24</li>
<li>Extract <strong><span style="color: #ff6600;">php-5.6.20-Win32-VC11-x64.zip</span></strong> to c:\php5</li>
<li>Save <a href="http://yipp.ca/downloads-320x/httpd.conf" target="_blank">httpd.conf</a> to c:\apache24\conf\ (Right-click | Save As)</li>
<li>Test the installation by running in a cmd.exe : <strong>c:\apache24\bin\httpd.exe</strong></li>
</ul>
<h2>Set as startup</h2>
<ul>
<li>Open a <strong><span style="color: #ff6600;">cmd.exe</span></strong> as Administrator</li>
<li>cd to <strong>C:\apache24\bin</strong></li>
<li>httpd -k install -n "Apache24"</li>
<li>Open <strong><span style="color: #ff6600;">Apache Monitor</span></strong> in the tray and start the service</li>
</ul>
<p>Et Voilà!</p>
<p>The post <a rel="nofollow" href="http://tech.yipp.ca/apache/setup-basic-apachephp-server-windows-development/">Setup basic Apache+PHP server on Windows for development</a> appeared first on <a rel="nofollow" href="http://tech.yipp.ca">Techy Things</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tech.yipp.ca/apache/setup-basic-apachephp-server-windows-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
