ludvig87
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Install experience with 2.01My father asked one of the guys from the computer company to help (we are connected to the Internet through adsl at my fathers work next-door) and he said he would come by and help, but he never came.
This was supposed to happen after he had been down at the factories to fix their computer, so it could logon to the network, but he must have forgotten about my father. So until the company comes again, I can’t do much else than uploading through the controlpanel.
Forum: Installing WordPress
In reply to: Install experience with 2.01I have the same problem as petit, did what he had done… Deleted the plugins in /plugins and started reuploading. I still cannot activate any of the plugins.
The screen just turns white when I try.
I upload through my hosts controlpanel, since port 21 is blocked on my internet connection and I have to use that port to connect through ftp which I then can’t, so I do not have other possibilites than FTP. Any ideas to what I can do to fix this?
This problem is now solved
1. Have upgraded
2. Just using regular includes (include(“header.php”) and include(“footer.php”))
3. I have added the kind of setup from the classic theme, and this is what it ends up as:
https://www.maria-arredondo.co.uk/test1.phpThe coding for test.php is
<?php
/* Don't remove this line. */
require('wordpress/wp-blog-header.php');
?>
<? include("header1.php") ?><?php wp_head(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<table cellSpacing="1" cellPadding="4" width="100%" border="0">
<tr>
<td class="content-title"><img src="pic/layout/sub.gif"> <?php the_date('','',''); ?> | posted by <?php the_author() ?></td></tr>
<tr>
<td class="content-subject"> ?¢a???¢ <? the_title(); ?></td></tr>
<tr>
<td class="content-content"> <?php the_content(); ?>
</td></tr></table>
<?php wp_link_pages(); ?>
<?php comments_template(); // Get wp-comments.php template ?><?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?><?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
<?php include("footer.php") ?>
Forum: Fixing WordPress
In reply to: Phpcalendar and wordpress, date on posts don’t show1.5.2 (deep-within)
1.5 (jondt)
–
This problem has existed for about 1-1?? year, even though I had the same wordpress installed.Forum: Fixing WordPress
In reply to: Phpcalendar and wordpress, date on posts don’t showI tried to create 2 files, one where the include to the calendar comes first, and one where the calendar comes as the last thing.
Here it is as Last:
https://www.jondt.dk/calendarlast.phpHere it is as First:
https://www.jondt.dk/calendarfirst.phpAs you can see, the date works when the calendar is included after the include to wordpress.
The coding look like this for the files
<?php include("calendar/calendar.php") ?>
<?php /* Don't remove this line. */ require('wordpress/wp-blog-header.php'); ?>
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?> <img src="../img/layout/heart.gif" alt="" /> <b>Recent news</b><?php c2c_get_recent_posts(); ?>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<?php static $counter = 1; if ( $counter > "20" ) { break; } else { if ( in_category(2) && !$single ) { ?>
<img src="../img/layout/heart.gif" alt="" /> <b> <?php the_time(); ?></b>
<img src="../img/layout/arrow.gif" alt="" /><i> <?php the_title(); ?> </i>
<?php the_content(); ?>
<?php $counter++; } } ?> <?php endforeach; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?><?php endif; ?>
But on this page: https://www.deep-within.dk
Where the include to the calendar comes first, the date works.
What is the difference?
is there anything in my wp codes that can be the difference?
Forum: Plugins
In reply to: wp_grins in pop-upI finally tested it but no, it didn’t work.
Forum: Plugins
In reply to: Sortable nicer archives for WordPress 1.2How can I make this hack only show 1 category? I have 2 categories where I would like to have separate archives for each of them.
Forum: Plugins
In reply to: wp_grins in pop-upGreat.. Thanks ?? Will check it out when I have time to modify my wordpress installation…
Forum: Plugins
In reply to: wp_grins in pop-upWhat I would like is this:
On the comments page, above the area for comments, there should be a link to a file, that pop-ups when clicked on the link. In the link is all the smilies (using wp_grins) and it should if you click on one of the smilies, insert the link to the smiley, in the original comments page.Can this be done?
Forum: Plugins
In reply to: wp_grins in pop-upThat link don’t give much help.
Forum: Fixing WordPress
In reply to: Grins and 1.3 ??Thank you. I finally got it put in. Now I can finally just click on them ??
Forum: Fixing WordPress
In reply to: Scandinavian lettersI use skins so the validator can’t understand my code, that is why.
ritajohansen.com is NOT mine, that is my friend’s site…
I have linked them (WordPress), just not on the frontpage…
There are good reason why I have taken out all the stylesheets for wordpress, simply because ALL tags from the original file, like all the divs are GONE.Forum: Fixing WordPress
In reply to: Grins and 1.3 ??Anyone who can tell me where I should put it?
Forum: Fixing WordPress
In reply to: Grins and 1.3 ??When I try to add it, I get a
Parse error: parse error, unexpected '/' in /customers/deep-within.dk/deep-within.dk/httpd.www/wordpress/wp-admin/admin-functions.php on line 553
My code looks like this
<script type="text/javascript">edToolbar();</script>
';
if(function_exists("wp_grins")) { echo "
"; wp_grins(); }
echo '</div>';
endif;
';
echo '</div>';
endif;
}
Anything I should edit out? I probably am…