<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>WordPress DK Forum Tag: Update - Recent Posts</title>
		<link>http://wp-danmark.dk/forum/tags/update</link>
		<description>WordPress DK Forum Tag: Update - Recent Posts</description>
		<language>da-DK</language>
		<pubDate>Thu, 30 Jul 2026 23:49:45 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Søg]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://wp-danmark.dk/forum/search.php</link>
		</textInput>
		<atom:link href="http://wp-danmark.dk/forum/rss/tags/update" rel="self" type="application/rss+xml" />

		<item>
			<title>Sedia om "Installere opdatering"</title>
			<link>http://wp-danmark.dk/forum/topic/installere-opdatering#post-69552</link>
			<pubDate>fre, 13 apr 2018 12:38:30 +0000</pubDate>
			<dc:creator>Sedia</dc:creator>
			<guid isPermaLink="false">69552@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Hej Martin,&#60;/p&#62;
&#60;p&#62;Har du prøvet at skrive til din hostingudbyder?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MartinG om "Installere opdatering"</title>
			<link>http://wp-danmark.dk/forum/topic/installere-opdatering#post-69510</link>
			<pubDate>tors, 05 apr 2018 12:20:42 +0000</pubDate>
			<dc:creator>MartinG</dc:creator>
			<guid isPermaLink="false">69510@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Hej &#60;/p&#62;
&#60;p&#62;Jeg kan ikke få lov til at installere opdateringer på vores hjemmeside, den skriver følgende&#60;/p&#62;
&#60;p&#62;Checksum for filen (0c85d924a641eacd75d1e01ac4859f65) svarer ikke til forventede checksum værdi (6a9f2df9ff0fb2c600ae79701071925e).&#60;br /&#62;
Installering mislykkedes&#60;/p&#62;
&#60;p&#62;Er der nogen der kan hjælpe
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jean Jensen om "Ændre opdaterende frontend-side"</title>
			<link>http://wp-danmark.dk/forum/topic/%c3%a6ndre-opdaterende-frontend-side#post-64507</link>
			<pubDate>tirs, 26 jan 2016 14:38:22 +0000</pubDate>
			<dc:creator>Jean Jensen</dc:creator>
			<guid isPermaLink="false">64507@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Tak :)&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Så hvis jeg opretter en fil der hedder .maintenance, og placerer den i roden, og som indeholder dette:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
function wp_maintenance() {&#60;br /&#62;
    if ( ! file_exists( ABSPATH . '.maintenance' ) &#124;&#124; wp_installing() )&#60;br /&#62;
        return;&#60;/p&#62;
&#60;p&#62;    global $upgrading;&#60;/p&#62;
&#60;p&#62;    include( ABSPATH . '.maintenance' );&#60;br /&#62;
    // If the $upgrading timestamp is older than 10 minutes, don't die.&#60;br /&#62;
    if ( ( time() - $upgrading ) &#38;gt;= 600 )&#60;br /&#62;
        return;&#60;/p&#62;
&#60;p&#62;    if ( file_exists( WP_CONTENT_DIR . '/maintenance.php' ) ) {&#60;br /&#62;
        require_once( WP_CONTENT_DIR . '/maintenance.php' );&#60;br /&#62;
        die();&#60;br /&#62;
    }&#60;/p&#62;
&#60;p&#62;    wp_load_translations_early();&#60;/p&#62;
&#60;p&#62;    $protocol = wp_get_server_protocol();&#60;br /&#62;
    header( &#34;$protocol 503 Service Unavailable&#34;, true, 503 );&#60;br /&#62;
    header( 'Content-Type: text/html; charset=utf-8' );&#60;br /&#62;
    header( 'Retry-After: 600' );&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
    &#38;lt;!DOCTYPE html&#38;gt;&#60;br /&#62;
    &#38;lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#38;lt;?php if ( is_rtl() ) echo ' dir=&#34;rtl&#34;'; ?&#38;gt;&#38;gt;&#60;br /&#62;
    &#38;lt;head&#38;gt;&#60;br /&#62;
    &#38;lt;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#38;gt;&#60;br /&#62;
        &#38;lt;title&#38;gt;&#38;lt;?php _e( 'Maintenance' ); ?&#38;gt;&#38;lt;/title&#38;gt;&#60;/p&#62;
&#60;p&#62;    &#38;lt;/head&#38;gt;&#60;br /&#62;
    &#38;lt;body&#38;gt;&#60;br /&#62;
        &#38;lt;h1&#38;gt;&#38;lt;?php _e( '&#60;strong&#62;HER INDSÆTTER JEG MIN EGEN HTML&#60;/strong&#62;' ); ?&#38;gt;&#38;lt;/h1&#38;gt;&#60;br /&#62;
    &#38;lt;/body&#38;gt;&#60;br /&#62;
    &#38;lt;/html&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
    die();&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;- så skulle de bare spille?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stffn om "Ændre opdaterende frontend-side"</title>
			<link>http://wp-danmark.dk/forum/topic/%c3%a6ndre-opdaterende-frontend-side#post-64506</link>
			<pubDate>tirs, 26 jan 2016 10:58:27 +0000</pubDate>
			<dc:creator>stffn</dc:creator>
			<guid isPermaLink="false">64506@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Der findes nogle forskellige plugins til det, men du kan gøre det selv i functions.php filen, eller oprette dit eget plugin.&#60;br /&#62;
Det er funktionen &#60;code&#62;wp_maintenance&#60;/code&#62; der styrer det:&#60;br /&#62;
&#60;a href=&#34;https://developer.wordpress.org/reference/functions/wp_maintenance/&#34; rel=&#34;nofollow&#34;&#62;https://developer.wordpress.org/reference/functions/wp_maintenance/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Jean Jensen om "Ændre opdaterende frontend-side"</title>
			<link>http://wp-danmark.dk/forum/topic/%c3%a6ndre-opdaterende-frontend-side#post-64505</link>
			<pubDate>tirs, 26 jan 2016 08:50:19 +0000</pubDate>
			<dc:creator>Jean Jensen</dc:creator>
			<guid isPermaLink="false">64505@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Hejsa.&#60;/p&#62;
&#60;p&#62;&#60;em&#62;Hvis jeg tidligere har spurgt om dette, så må du gerne linke til svarene, for jeg kan ikke selv finde noget svar.&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;Når jeg opdaterer på min hjemmeside (plugin, theme, o.a.), vises denne tekst i frontend:&#60;/p&#62;
&#60;p&#62;&#34;&#60;strong&#62;Er ikke tilgængelig pga. planlagt vedligeholdelse. Kom tilbage om et par minutter.&#60;/strong&#62;&#34;&#60;/p&#62;
&#60;p&#62;Hvor ændrer/designer jeg dét indhold? Jeg går ikke ud fra at det er temabestemt, da det er ens uanset tema...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stffn om "Wp-config.php er allerrede oprettet????"</title>
			<link>http://wp-danmark.dk/forum/topic/wp-configphp-er-allerrede-oprettet#post-63020</link>
			<pubDate>tors, 23 jul 2015 16:39:16 +0000</pubDate>
			<dc:creator>stffn</dc:creator>
			<guid isPermaLink="false">63020@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Det lyder ikke til, at du gør det rigtigt.&#60;br /&#62;
Opdaterer du WordPress via &#34;/wp-admin/update-core.php&#34;?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>henrikbojorgensen om "Wp-config.php er allerrede oprettet????"</title>
			<link>http://wp-danmark.dk/forum/topic/wp-configphp-er-allerrede-oprettet#post-63009</link>
			<pubDate>tirs, 21 jul 2015 21:20:31 +0000</pubDate>
			<dc:creator>henrikbojorgensen</dc:creator>
			<guid isPermaLink="false">63009@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;har en hjemmeside som har kørt i over et år nu også ville jeg opdater selve WP. også skriver den det her nu når jeg trykker på mine menuer.&#60;/p&#62;
&#60;p&#62;Filen 'wp-config.php' er allerede oprettet. hvis du har brug for at nulstille noget i konfigurationen filen. så slet den først. Du kan prøve at installer nu.&#60;/p&#62;
&#60;p&#62;hvad pokker gør jeg her så den ikke sletter alt?&#60;/p&#62;
&#60;p&#62;har prøvet at slette Wp.config.php men så begynder den bare på at installer Wp på ny.&#60;/p&#62;
&#60;p&#62;Siden er fst-as.dk
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BugiBH om "Opdatering fejlede. Side nede. Hvad gør jeg?"</title>
			<link>http://wp-danmark.dk/forum/topic/opdatering-fejlede-side-nede-hvad-g%c3%b8r-jeg#post-58467</link>
			<pubDate>man, 11 aug 2014 08:43:08 +0000</pubDate>
			<dc:creator>BugiBH</dc:creator>
			<guid isPermaLink="false">58467@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;se denne tråd &#60;a href=&#34;http://wp-danmark.dk/forum/topic/side-nede-update-fejlede&#34; rel=&#34;nofollow&#34;&#62;http://wp-danmark.dk/forum/topic/side-nede-update-fejlede&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BugiBH om "Side nede. Update fejlede."</title>
			<link>http://wp-danmark.dk/forum/topic/side-nede-update-fejlede#post-58466</link>
			<pubDate>man, 11 aug 2014 08:41:18 +0000</pubDate>
			<dc:creator>BugiBH</dc:creator>
			<guid isPermaLink="false">58466@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;som sikkerhed kan du jo også lave en backup af alt indholdet inden du prøver på det:)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BugiBH om "Side nede. Update fejlede."</title>
			<link>http://wp-danmark.dk/forum/topic/side-nede-update-fejlede#post-58465</link>
			<pubDate>man, 11 aug 2014 08:21:03 +0000</pubDate>
			<dc:creator>BugiBH</dc:creator>
			<guid isPermaLink="false">58465@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;det kan være nødvendigt nogle gange at deaktivere og aktiver din plugin igen :)&#60;br /&#62;
men alt dette bliver forklaret i videoen :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BugiBH om "Side nede. Update fejlede."</title>
			<link>http://wp-danmark.dk/forum/topic/side-nede-update-fejlede#post-58464</link>
			<pubDate>man, 11 aug 2014 08:19:32 +0000</pubDate>
			<dc:creator>BugiBH</dc:creator>
			<guid isPermaLink="false">58464@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;du kan tilgå din side via ftp,&#60;br /&#62;
hvor du både kan opgradere og down-grade på følgende måde.&#60;br /&#62;
1 du henter den version du ønsker på din sin side via. wordpress.org&#60;br /&#62;
og henter den ned på din computer.&#60;br /&#62;
så via ftp. overskriver du hele din Wordpress installere !undtagen &#34;wp.content&#34; dit tema og &#34;wp-config&#34; din login.&#60;br /&#62;
se evt. denne video hvor det bliver vist. :)&#60;br /&#62;
&#60;a href=&#34;https://www.youtube.com/watch?v=_lX3E-qIpJM&#34; rel=&#34;nofollow&#34;&#62;https://www.youtube.com/watch?v=_lX3E-qIpJM&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;har gjort det et par gange og syndes det virker nemt:)&#60;/p&#62;
&#60;p&#62;held og lykke
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alsc om "Side nede. Update fejlede."</title>
			<link>http://wp-danmark.dk/forum/topic/side-nede-update-fejlede#post-58459</link>
			<pubDate>søn, 10 aug 2014 19:44:41 +0000</pubDate>
			<dc:creator>alsc</dc:creator>
			<guid isPermaLink="false">58459@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Jeg forsøgte at opdatere til 3.9.2 og nu er siden i konstant &#34;Er ikke tilgængelig pga. planlagt vedligeholdelse. Kom tilbage om et par minutter&#34;-mode.&#60;/p&#62;
&#60;p&#62;Hvad gør jeg?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alsc om "Opdatering fejlede. Side nede. Hvad gør jeg?"</title>
			<link>http://wp-danmark.dk/forum/topic/opdatering-fejlede-side-nede-hvad-g%c3%b8r-jeg#post-58458</link>
			<pubDate>søn, 10 aug 2014 19:43:06 +0000</pubDate>
			<dc:creator>alsc</dc:creator>
			<guid isPermaLink="false">58458@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Jeg forsøgte at opdatere automatisk til 3.9.2 og nu er siden nede eller reelt i &#34;Er ikke tilgængelig pga. planlagt vedligeholdelse. Kom tilbage om et par minutter&#34;-mode.&#60;/p&#62;
&#60;p&#62;Hvad gør jeg?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54398</link>
			<pubDate>tirs, 14 jan 2014 17:36:32 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54398@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;ja det må jeg gøre! tak for hjælpen ellers :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Henning om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54397</link>
			<pubDate>tirs, 14 jan 2014 17:31:01 +0000</pubDate>
			<dc:creator>Henning</dc:creator>
			<guid isPermaLink="false">54397@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Beklager - var lidt hurtig - det var den anden side jeg havde fået åbnet - den fra din profil.&#60;br /&#62;
Måske en ide at kontakte din host ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54396</link>
			<pubDate>tirs, 14 jan 2014 17:27:08 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54396@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Altså siden er i wordpress ja? min host er en it afdeling nær ved?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Henning om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54395</link>
			<pubDate>tirs, 14 jan 2014 17:24:15 +0000</pubDate>
			<dc:creator>Henning</dc:creator>
			<guid isPermaLink="false">54395@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Er det WordPress ??
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54394</link>
			<pubDate>tirs, 14 jan 2014 17:23:06 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54394@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Nej det er faktisk &#60;a href=&#34;http://www.evergreenaviation.dk&#34; rel=&#34;nofollow&#34;&#62;http://www.evergreenaviation.dk&#60;/a&#62;, og det er ikke mig der har arbejdet med siden førhen, jeg har overtaget den nu! jeg har ftp adgangen, men alle oplysninger etc. har jeg fra min host!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Henning om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54393</link>
			<pubDate>tirs, 14 jan 2014 17:15:42 +0000</pubDate>
			<dc:creator>Henning</dc:creator>
			<guid isPermaLink="false">54393@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Har du installeret via hostens kontrolpanel eller har du selv uploaded med Filezilla&#60;br /&#62;
Der er denne &#60;a href=&#34;http://www.evergreensolutions.dk/wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://www.evergreensolutions.dk/wordpress/&#60;/a&#62; du arbejder på - ikke ??
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54392</link>
			<pubDate>tirs, 14 jan 2014 17:12:59 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54392@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Er helt ny til det her, så ved ikke helt hvad du mener? :/
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Henning om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54391</link>
			<pubDate>tirs, 14 jan 2014 17:08:21 +0000</pubDate>
			<dc:creator>Henning</dc:creator>
			<guid isPermaLink="false">54391@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;har du oprindelig brugt en 1-click installation ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54390</link>
			<pubDate>tirs, 14 jan 2014 17:01:19 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54390@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;alle mapper og undermapper har jeg sat til 755! Men får stadig samme fejlmeddelelse :/
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Henning om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54389</link>
			<pubDate>tirs, 14 jan 2014 16:54:41 +0000</pubDate>
			<dc:creator>Henning</dc:creator>
			<guid isPermaLink="false">54389@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Ændr til 755 (også evt. undermapper)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54388</link>
			<pubDate>tirs, 14 jan 2014 16:51:48 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54388@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;den skriver at den numerisk værdi er 710?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Henning om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54386</link>
			<pubDate>tirs, 14 jan 2014 16:44:18 +0000</pubDate>
			<dc:creator>Henning</dc:creator>
			<guid isPermaLink="false">54386@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;De vises sikkert - tilladelser&#60;/p&#62;
&#60;p&#62;Evt ændringer: Højreklik på mappen (og derefter klik på filtilladelser).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54384</link>
			<pubDate>tirs, 14 jan 2014 16:30:27 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54384@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;jeg benytter filezilla til info :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54383</link>
			<pubDate>tirs, 14 jan 2014 16:29:30 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54383@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Jeg trykkede bare på &#34;opdater nu&#34;?&#60;/p&#62;
&#60;p&#62;Hvor ser man sine rettigheder? det er nok det!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Henning om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54382</link>
			<pubDate>tirs, 14 jan 2014 16:19:39 +0000</pubDate>
			<dc:creator>Henning</dc:creator>
			<guid isPermaLink="false">54382@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Du gør sikkert ikke noget galt.&#60;br /&#62;
har du brugt 1-click installation ?&#60;br /&#62;
Måske har du ikke de rigtige &#34;rettigheder&#34; (chmod) på mapperne.&#60;br /&#62;
Gå ind via dit FTP-program og tjek - rettighederne på skal være 0755.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Emma Rej om "Kan ikke opdatere til wordpress 3.8"</title>
			<link>http://wp-danmark.dk/forum/topic/kan-ikke-opdatere-til-wordpress-38#post-54381</link>
			<pubDate>tirs, 14 jan 2014 16:09:18 +0000</pubDate>
			<dc:creator>Emma Rej</dc:creator>
			<guid isPermaLink="false">54381@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Hej :)&#60;/p&#62;
&#60;p&#62;Jeg er helt ny til wordpress, men har fået lavet back-up af filer og database og mangler nu bare at opdatere wordpress.&#60;br /&#62;
Men når jeg forsøger (den automatiske opdatering) får jeg følgende meddelelse: &#60;/p&#62;
&#60;p&#62;Henter opdatering fra &#60;a href=&#34;http://da.wordpress.org/wordpress-3.8-da_DK.zip…&#34; rel=&#34;nofollow&#34;&#62;http://da.wordpress.org/wordpress-3.8-da_DK.zip…&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Pakker opdateringen ud…&#60;/p&#62;
&#60;p&#62;Kunne ikke oprette mappe.: /var/www/clients/client25/web162/web/wp-content/upgrade/wordpress-3.tmp&#60;/p&#62;
&#60;p&#62;Installering mislykkedes&#60;/p&#62;
&#60;p&#62;Er der nogen der ved hvad jeg gør galt?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>larsshansen om "Er ikke tilgængelig pga. planlagt vedligeholdelse. Kom tilbage om et par minutte"</title>
			<link>http://wp-danmark.dk/forum/topic/er-ikke-tilg%c3%a6ngelig-pga-planlagt-vedligeholdelse-kom-tilbage-om-et-par-minutte#post-42985</link>
			<pubDate>ons, 12 dec 2012 17:13:36 +0000</pubDate>
			<dc:creator>larsshansen</dc:creator>
			<guid isPermaLink="false">42985@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Håber det blot er en langsom server, tak for svaret :-)
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
