Search found 5 matches

by RobinSlee
Tue Aug 14, 2018 11:22 pm
Forum: General
Topic: How to deploy to live server? (urgent)
Replies: 5
Views: 3334

Re: How to deploy to live server? (urgent)

So I tried as described. Copied all files to root, set the base to just a forwards slash, and the index page loads. But when I click on a tag or category link it says 404 not found. I am on shared hosting, with a redirect from my domain name to my wwwroot folder. But this has worked before and still...
by RobinSlee
Mon Aug 13, 2018 12:59 am
Forum: General
Topic: How to deploy to live server? (urgent)
Replies: 5
Views: 3334

Re: How to deploy to live server? (urgent)

HI, Thank you for the response. I will have to leave it for this evening as it is work in the morning! But, I will try again over the next day or two. Interestingly, I noted that the .htaccess that came in my build is different to what you have posted above. My looks like this: AddDefaultCharset UTF...
by RobinSlee
Sun Aug 12, 2018 9:44 pm
Forum: General
Topic: How to deploy to live server? (urgent)
Replies: 5
Views: 3334

How to deploy to live server? (urgent)

Hi. I have my local installation (using uWamp for development) But I want to deploy the site to the live server. I do not seem to be able to make it run outside of the bludit-2-3-4 sub directory. I have copied all files to the root directory wwwroot and changed the reference in the .htaccess to rewr...
by RobinSlee
Mon Aug 06, 2018 12:18 am
Forum: General
Topic: Get Tag Value from within a page.
Replies: 2
Views: 2151

Re: Get Tag Value from within a page.

Thank you, it works. I was able to use the following code block (for anyone who wants it): <!-- Post's tags --> <ul class="stats"> <?php $tags = $Page->tags(true); echo "Tags: "; foreach($tags as $tagKey=>$tagName) { echo '<li><a href="'.HTML_PATH_ROOT.$Url->filters('tag').'...
by RobinSlee
Sun Aug 05, 2018 4:28 am
Forum: General
Topic: Get Tag Value from within a page.
Replies: 2
Views: 2151

Get Tag Value from within a page.

Hi, I am sure this is going to be easy for you guys... But i am only just beginning to learn PHP so please bear with me. I am customizing a theme for my site and want to show the tags associated to this 'page'. I currently have : <?php $tags = $page->tags(true); foreach ($tags as $tag) { echo 'Tag n...