Search found 11 matches

by steveCronin
Fri Dec 05, 2014 5:48 pm
Forum: General discussions
Topic: scope of updatable files when an update occurs
Replies: 3
Views: 2236

Re: scope of updatable files when an update occurs

thanks for that blog posting on github

I looked around and could not find a way to the 'blog' link from the main 'phpMyFAQ' page: https://github.com/thorsten/phpMyFAQ/bl ... ANGEDFILES

Is that 'blog' link generally publicly available?
by steveCronin
Fri Dec 05, 2014 12:10 am
Forum: General discussions
Topic: undefined index
Replies: 2
Views: 2194

Re: undefined index

well ok then

I figured this out..

Here's the 'magic' that I wasn't seeing:

foreach ($resultArray as $row) {
$resultArray['url'][] = $row['url'];
...
}
by steveCronin
Thu Dec 04, 2014 8:17 pm
Forum: General discussions
Topic: scope of updatable files when an update occurs
Replies: 3
Views: 2236

scope of updatable files when an update occurs

When an update occurs, are all files outside of /assets/templates/[non-default] fair game to be changed by PMF?

Is there any difference in this scope between say 2.8.1.7 and 2.8.1.8 and the scope from 2.8.x to 2.9?

(2x to 3x all bets are off...)
by steveCronin
Thu Dec 04, 2014 8:49 am
Forum: General discussions
Topic: strange graphic issues
Replies: 1
Views: 1593

strange graphic issues

what is the usual cause of the screenshot I have attached?
phpMyFAQscreenshot.png
by steveCronin
Thu Dec 04, 2014 6:28 am
Forum: General discussions
Topic: undefined index
Replies: 2
Views: 2194

Re: undefined index

more data: <h4> {writeNewFAQHeader} <a href="feed/newFAQ/rss.php" target="_blank"><img src="assets/img/feed.png" width="16" height="16" alt="RSS" /></a></h4> <ol> [newFAQList] <li><a href="{newFAQUrl}">{newFAQTitle}</a> <small>({n...
by steveCronin
Thu Dec 04, 2014 6:00 am
Forum: General discussions
Topic: undefined index
Replies: 2
Views: 2194

undefined index

I'm using a pattern from faq.php to retrieve data $newFAQParams = $faq->getNewFAQList(); var_dump($newFAQParams); var_dump(isset($newFAQParams['url'])); var_dump(array_key_exists('url', $newFAQParams)); if (!isset($newFAQParams['error'])) { $tpl->parseBlock( 'newRightBox', 'newFAQList', array( 'newF...
by steveCronin
Wed Dec 03, 2014 6:30 pm
Forum: General discussions
Topic: faq date questions
Replies: 3
Views: 2286

Re: faq date questions

perfect - thank-you

so is the date of the earliest revision the best available date equivalent to the 'birthdate' of a FAQ?
by steveCronin
Wed Dec 03, 2014 6:28 pm
Forum: General discussions
Topic: a question on comments?
Replies: 2
Views: 5670

Re: a question on comments?

never mind this question - I get it now... sorry for the disruption..
by steveCronin
Wed Dec 03, 2014 9:35 am
Forum: General discussions
Topic: a question on comments?
Replies: 2
Views: 5670

a question on comments?

when a FAQ is commented on - does that trigger a revision record.. how can I get a list of comments on a FAQW
by steveCronin
Wed Dec 03, 2014 9:10 am
Forum: General discussions
Topic: data model
Replies: 1
Views: 1508

data model

just getting started with pmf... where would you direct me to find a model of the database... pdf?
by steveCronin
Wed Dec 03, 2014 1:23 am
Forum: General discussions
Topic: faq date questions
Replies: 3
Views: 2286

faq date questions

can you clarify how I might get these to work: faqCreatedDate -- the untouched original date a faq was created faqModifiedDate -- the date the faq record itself was last modified (not by managing child records) faqLastCommentDate -- the date of the last comment for a faq faqLastVoteDate -- the date ...