<?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>Memo | Tomasz Kiżewski</title>
	<atom:link href="https://kizewski.eu/category/memo/feed/" rel="self" type="application/rss+xml" />
	<link>https://kizewski.eu</link>
	<description></description>
	<lastBuildDate>Fri, 25 Apr 2025 20:15:34 +0000</lastBuildDate>
	<language>pl-PL</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>Windows Server 2012 R2 Standard ROK &#8211; change product key from Evaluation</title>
		<link>https://kizewski.eu/it/1441/</link>
					<comments>https://kizewski.eu/it/1441/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Fri, 25 Apr 2025 20:14:49 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1441</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>To change key from Evaluation to Standard use command like below:</p>
<p>&nbsp;</p></div>
			</div><div class="et_pb_module et_pb_code et_pb_code_0">
				
				
				
				
				<div class="et_pb_code_inner">DISM /online /Set-Edition:ServerStandard /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula</div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1441/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Find all files containing a specific text (string) on Linux</title>
		<link>https://kizewski.eu/it/1432/</link>
					<comments>https://kizewski.eu/it/1432/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Tue, 15 Apr 2025 18:52:13 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Memo]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1432</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_1 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_1">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Do the following:</p>
<pre class="lang-none s-code-block"><code>grep -rnw '/path/to/somewhere/' -e 'pattern'
</code></pre>
<ul>
<li><code>-r</code><span> </span>or<span> </span><code>-R</code><span> </span>is recursive,</li>
<li><code>-n</code><span> </span>is line number, and</li>
<li><code>-w</code><span> </span>stands for match the whole word.</li>
<li><code>-l</code><span> </span>(lower-case L) can be added to just give the file name of matching files.</li>
<li><code>-e</code><span> </span>is the pattern used during the search</li>
</ul>
<p>Along with these,<span> </span><code>--exclude</code>,<span> </span><code>--include</code>,<span> </span><code>--exclude-dir</code><span> </span>flags could be used for efficient searching:</p>
<ul>
<li>This will only search through those files which have .c or .h extensions:<br /><br />
<pre class="lang-none s-code-block"><code>grep --include=\*.{c,h} -rnw '/path/to/somewhere/' -e "pattern"
</code></pre>
</li>
<li>This will exclude searching all the files ending with .o extension:<br /><br />
<pre class="lang-none s-code-block"><code>grep --exclude=\*.o -rnw '/path/to/somewhere/' -e "pattern"
</code></pre>
</li>
<li>For directories it&#8217;s possible to exclude one or more directories using the<span> </span><code>--exclude-dir</code><span> </span>parameter. For example, this will exclude the dirs<span> </span><code>dir1/</code>,<span> </span><code>dir2/</code><span> </span>and all of them matching<span> </span><code>*.dst/</code>:<br /><br />
<pre class="lang-none s-code-block"><code>grep --exclude-dir={dir1,dir2,*.dst} -rnw '/path/to/search/' -e "pattern"
</code></pre>
</li>
</ul>
<p>This works very well for me, to achieve almost the same purpose like yours.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>source: https://stackoverflow.com/questions/16956810/find-all-files-containing-a-specific-text-string-on-linux</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1432/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SQL Server Configuration Manager</title>
		<link>https://kizewski.eu/it/1425/</link>
					<comments>https://kizewski.eu/it/1425/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Thu, 03 Apr 2025 18:14:19 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1425</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_2 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_2">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 id="sql-server-configuration-manager">SQL Server Configuration Manager</h1>
<table aria-label="Table 1" class="table table-sm margin-top-none">
<thead>
<tr>
<th>Version</th>
<th>Path</th>
</tr>
</thead>
<tbody>
<tr>
<td>SQL Server 2022 (16.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager16.msc</code></td>
</tr>
<tr>
<td>SQL Server 2019 (15.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager15.msc</code></td>
</tr>
<tr>
<td>SQL Server 2017 (14.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager14.msc</code></td>
</tr>
<tr>
<td>SQL Server 2016 (13.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager13.msc</code></td>
</tr>
<tr>
<td>SQL Server 2014 (12.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager12.msc</code></td>
</tr>
<tr>
<td>SQL Server 2012 (11.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager11.msc</code></td>
</tr>
</tbody>
</table>
<div class="display-flex justify-content-space-between align-items-center flex-wrap-wrap page-metadata-container">
<div class="margin-right-xxs">
<ul class="metadata page-metadata" data-bi-name="page info" lang="en-us" dir="ltr"></ul>
</div>
</div></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1425/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Outlook New &#8211; powrót do wersji klasycznej</title>
		<link>https://kizewski.eu/it/1400/</link>
					<comments>https://kizewski.eu/it/1400/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Fri, 06 Sep 2024 09:32:17 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1400</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_3 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_3">
				<div class="et_pb_column et_pb_column_1_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_0">
				
				
				
				
				<span class="et_pb_image_wrap "><img fetchpriority="high" decoding="async" width="225" height="225" src="https://kizewski.eu/wp-content/uploads/2024/09/outlok-new.jpeg" alt="" title="outlok-new" srcset="https://kizewski.eu/wp-content/uploads/2024/09/outlok-new.jpeg 225w, https://kizewski.eu/wp-content/uploads/2024/09/outlok-new-150x150.jpeg 150w" sizes="(max-width: 225px) 100vw, 225px" class="wp-image-1405" /></span>
			</div>
			</div><div class="et_pb_column et_pb_column_3_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_heading et_pb_heading_0 et_pb_bg_layout_">
				
				
				
				
				<div class="et_pb_heading_container"><h2 class="et_pb_module_heading">Outook New - powrót do wersji klasycznej.</h2></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_4 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_4">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Jeśli nie widzisz przełącznika w nowym programie Outlook dla systemu Windows, rozwiąż problem, wykonując następujące czynności:</p>
<p>Uruchom klasyczną wersję programu Outlook dla systemu Windows z menu Start systemu Windows, a nie nowego programu Outlook (oznaczonego tagiem „Nowy”).</p>
<p>Jeśli to nie uruchomi starej wersji to:</p>
<p><strong>Otwórz Edytor</strong> rejestru, wpisując „<strong>regedit</strong>” w wyszukiwarce menu Start i wybierając aplikację.<br />Przejdź do <strong>Komputer\HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Preferences</strong>.<br />Znajdź i kliknij dwukrotnie pozycję „<strong>UseNewOutlook</strong>” u dołu listy.<br />Ustaw pole Dane wartości na <strong>0</strong>.</p>
<p>Spróbuj uruchomić klasyczny program Outlook dla systemu Windows z menu Start systemu Windows.</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1400/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>HP Veracrypt problem z ładowaniem bootloadera / EFI</title>
		<link>https://kizewski.eu/it/hp-veracrypt-problem-z-ladowaniem-bootloadera-efi/</link>
					<comments>https://kizewski.eu/it/hp-veracrypt-problem-z-ladowaniem-bootloadera-efi/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Mon, 28 Jan 2019 18:46:41 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bootloader]]></category>
		<category><![CDATA[EFI]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[veracrypt]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=954</guid>

					<description><![CDATA[EDIT: It is worth noting that you must have secure boot&#160;disabled&#160;and legacy support&#160;enabled&#160;in the BIOS(f10 or f12), preferrably before you perform these steps. I am posting this because I have only seen partial fixes on several forums, with little explanation. This guide offers a&#160;COMPLETE solution&#160;that even inexperienced users may follow. HP and other boot loaders [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>EDIT: It is worth noting that you must have secure boot&nbsp;<strong>disabled</strong>&nbsp;and legacy support&nbsp;<strong>enabled</strong>&nbsp;in the BIOS(f10 or f12), preferrably before you perform these steps.</p>



<p>I am posting this because I have only seen partial fixes on several forums, with little explanation. This guide offers a&nbsp;<strong>COMPLETE solution</strong>&nbsp;that even inexperienced users may follow. HP and other boot loaders are all slightly different from one another. Specifically for this issue,the bootloader tries to load EFI\Microsoft\Boot\Bootmgfw.efi and does not include the VeraCrypt EFI to the list, even after VeraCrypt installation. On most computers, the VeraCrypt EFI is appended to the boot list and a simple change in boot order is needed. The reason windows tries to repair the disk is that it is trying to directly load the encrypted disk without the prior VeraCrypt authentication. In layman&#8217;s terms, it is trying to load jumbled “encrypted” data, so it thinks that the disk has been corrupted. In the case of HP (or other computers with this issue) we can CAREFULLY change a few things to come to a solution. I don’t know if I need to say this, but just in case: When typing these commands into command prompt add all of the text within the quotations… Not the actual quotations themselves. Spacing and capitalization are important.</p>



<p>To fix the issue you can do the following:<br>1 Hit windows key, type “cmd”, right click command prompt and select “Run as Administrator”<br>2 Type: “mountvol o: /s” and hit enter<br>3 Type: “ren o:\EFI\Microsoft\Boot\bootmgfw.efi bootmgfw_ms.efi” and hit enter<br>4 Type: “notepad o:\EFI\VeraCrypt\DcsProp” and hit enter<br>5 A notepad window should have appeared. Enter the following text to the top of the list:<br>“&lt;config key=&#8221;ActionSuccess&#8221;&gt;postexec file(EFI\Microsoft\Boot\bootmgfw_ms.efi)&lt;/config&gt;”</p>



<p>It should look like:<br>&lt;tag&gt;<br>&lt;config key=&#8221;ActionSuccess&#8221;&gt;stuff&lt;/config&gt;<br>&lt;config key=&#8221;blah&#8221;&gt;stuff&lt;/config&gt;<br>&lt;config key=&#8221;blahblah&#8221;&gt;stuff&lt;/config&gt;<br>&lt;config key=&#8221;ActionBlah&#8221;&gt;stuff&lt;/config&gt;<br>&lt;/tag&gt;</p>



<p>The &#8222;ActionSuccess&#8221; config key needs to be at the top. Make sure it is placed within the other tags. Keep the quotes around “ActionSuccess” but not around the whole line (remember what I said at the beginning). Location of text here is important.</p>



<p>Use “ctrl + s” to save and X out of notepad</p>



<p>6 Type: “cd EFI” and hit enter<br>7 Type: “copy .\VeraCrypt\DcsBoot.efi .\Microsoft\Boot” and hit enter<br>8 Type: “ren .\Microsoft\Boot\DcsBoot.efi bootmgfw.efi” and hit enter</p>



<p>That is all you have to do. You can restart and you will be prompted to enter in your VeraCrypt password and PIM. What this fix does is trick windows into running bootmgfw.efi like it does normally, which is actually the renamed DcsBoot.efi. After the VeraCrypt password (you created during installation) is entered, DcsProp file uses postexec command to load the real bootmgfw.efi which has been renamed to bootmgfw_ms.efi.</p>



<p>źródło: https://sourceforge.net/p/veracrypt/discussion/technical/thread/f403d1d8/</p>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/hp-veracrypt-problem-z-ladowaniem-bootloadera-efi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>cmdkey</title>
		<link>https://kizewski.eu/memo/cmdkey/</link>
					<comments>https://kizewski.eu/memo/cmdkey/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Mon, 07 Jan 2019 09:02:06 +0000</pubDate>
				<category><![CDATA[Memo]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=922</guid>

					<description><![CDATA[cmdkey &#8211; creates, lists, and deletes stored user names and passwords or credentials.]]></description>
										<content:encoded><![CDATA[<p><strong>cmdkey</strong> &#8211; creates, lists, and deletes stored user names and passwords or credentials.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/memo/cmdkey/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>php-excel-reader returns dd.mm.yyy</title>
		<link>https://kizewski.eu/it/php-excel-reader-returns-dd-mm-yyy/</link>
					<comments>https://kizewski.eu/it/php-excel-reader-returns-dd-mm-yyy/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Wed, 09 Apr 2014 22:04:35 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[excel_reader2.php]]></category>
		<category><![CDATA[php-excel-reader]]></category>
		<guid isPermaLink="false">http://kizewski.eu/?p=685</guid>

					<description><![CDATA[Problem: php-excel-reader daje nam dd.mm.yyy czyli tylko formatownie zamiast konkretnej daty. Dlaczego?: Formatownie pola daty e Excelu np DD\.MM\.YYYY Rozwiązanie: linia 1242 clasy excel_reader2.php dodajemy: $tmp=str_replace(&#34;\\.&#34;,&#34;-&#34;,$formatstr); Czyli w tym przypadku podmieniamy nietypowy separator &#34;\.&#34; na &#34;-&#34; &#160; &#160;]]></description>
										<content:encoded><![CDATA[<p>
	Problem: <a href="http://code.google.com/p/php-excel-reader/wiki/Documentation">php-excel-reader</a> daje nam dd.mm.yyy czyli tylko formatownie zamiast konkretnej daty.
</p>
<p>
	Dlaczego?: Formatownie pola daty e Excelu np DD\.MM\.YYYY
</p>
<p>
	Rozwiązanie: linia 1242 clasy excel_reader2.php dodajemy: $tmp=str_replace(&quot;\\.&quot;,&quot;-&quot;,$formatstr);
</p>
<p>
	Czyli w tym przypadku podmieniamy nietypowy separator &quot;\.&quot; na &quot;-&quot;
</p>
<p>
	&nbsp;
</p>
<p>
	&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/php-excel-reader-returns-dd-mm-yyy/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Błąd php &#034;Fatal error: Call to undefined function utf8_decode()&#034;</title>
		<link>https://kizewski.eu/memo/blad-php-fatal-error-call-to-undefined-function-utf8_decode/</link>
					<comments>https://kizewski.eu/memo/blad-php-fatal-error-call-to-undefined-function-utf8_decode/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Fri, 29 Jun 2012 18:34:25 +0000</pubDate>
				<category><![CDATA[Memo]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php-xml]]></category>
		<category><![CDATA[utf8_decode]]></category>
		<category><![CDATA[xml]]></category>
		<guid isPermaLink="false">http://www.kizewski.eu/?p=413</guid>

					<description><![CDATA[Problem: Błąd php5: &#8222;Fatal error: Call to undefined function utf8_decode() in&#8221; Rozwiązanie: Instalacja php5-xml]]></description>
										<content:encoded><![CDATA[<p>Problem:<br />
Błąd php5: &#8222;Fatal error: Call to undefined function utf8_decode() in&#8221;</p>
<p>Rozwiązanie:<br />
Instalacja php5-xml</p>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/memo/blad-php-fatal-error-call-to-undefined-function-utf8_decode/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Warning: date(): It is not safe to rely on the system&#039;s timezone settings.</title>
		<link>https://kizewski.eu/memo/warning-date-it-is-not-safe-to-rely-on-the-systems-timezone-settings/</link>
					<comments>https://kizewski.eu/memo/warning-date-it-is-not-safe-to-rely-on-the-systems-timezone-settings/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Fri, 29 Jun 2012 11:17:35 +0000</pubDate>
				<category><![CDATA[Memo]]></category>
		<guid isPermaLink="false">http://www.kizewski.eu/?p=411</guid>

					<description><![CDATA[Warning: date(): It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC&#8217; for now, but [&#8230;]]]></description>
										<content:encoded><![CDATA[<address><strong>Warning</strong>: date(): It is not safe to rely on the system&#8217;s timezone settings.<br />
You are *required* to use the date.timezone setting or the date_default_timezone_set() function.<br />
In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier.<br />
We selected the timezone 'UTC&#8217; for now, but please set date.timezone to select your timezone.<br />
in <strong>/usr/home/www/allehelp/lib/vendor/symfony/lib/config/sfRootConfigHandler.class.php</strong> on line <strong>9</p>
<p>Rozwiąanie:</strong></address>
<address><strong>[php.ini]<br />
date.timezone = &#8222;Europe/Warsaw&#8221;<br />
</strong></address>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/memo/warning-date-it-is-not-safe-to-rely-on-the-systems-timezone-settings/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Problemy z php</title>
		<link>https://kizewski.eu/it/linux/problemy-z-php/</link>
					<comments>https://kizewski.eu/it/linux/problemy-z-php/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Mon, 12 Apr 2010 21:39:58 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[błąd]]></category>
		<category><![CDATA[reinstalacja]]></category>
		<guid isPermaLink="false">http://www.kizewski.eu/ogolne/problemy-z-php</guid>

					<description><![CDATA[Błędy: -Couldn&#8217;t locate driver named mysql -Fatal error: Class 'PDO&#8217; not found in ../lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/PropelPDO.php on line 42 i inne tego typu &#8230;. walczyłem ze 2 dni wreszcie trzeba było &#8222;odświeżyć&#8221; wszystko związane z php i apache2 aptitude search apache2 php &#124; grep -E '^i&#8217; > list_of_packages cat list_of_packages &#124; perl -e 'while() { system(&#8222;sudo aptitude [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Błędy:<br />
-Couldn&#8217;t locate driver named mysql<br />
-Fatal error: Class 'PDO&#8217; not found in ../lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/PropelPDO.php on line 42<br />
i inne tego typu &#8230;. walczyłem ze 2 dni wreszcie trzeba było &#8222;odświeżyć&#8221; wszystko związane z php i apache2</p>
<p>aptitude search apache2 php | grep -E '^i&#8217; > list_of_packages<br />
cat list_of_packages | perl -e 'while(<>) { system(&#8222;sudo aptitude -y purge &#8222;.$_); }&#8217;<br />
cat list_of_packages | perl -e 'while(<>) { system(&#8222;sudo aptitude -y install &#8222;.$_); }&#8217;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/linux/problemy-z-php/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
