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?
Search found 11 matches
- Fri Dec 05, 2014 5:48 pm
- Forum: General discussions
- Topic: scope of updatable files when an update occurs
- Replies: 3
- Views: 2847
- Fri Dec 05, 2014 12:10 am
- Forum: General discussions
- Topic: undefined index
- Replies: 2
- Views: 2684
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'];
...
}
I figured this out..
Here's the 'magic' that I wasn't seeing:
foreach ($resultArray as $row) {
$resultArray['url'][] = $row['url'];
...
}
- Thu Dec 04, 2014 8:17 pm
- Forum: General discussions
- Topic: scope of updatable files when an update occurs
- Replies: 3
- Views: 2847
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...)
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...)
- Thu Dec 04, 2014 8:49 am
- Forum: General discussions
- Topic: strange graphic issues
- Replies: 1
- Views: 1997
strange graphic issues
what is the usual cause of the screenshot I have attached?
- Thu Dec 04, 2014 6:28 am
- Forum: General discussions
- Topic: undefined index
- Replies: 2
- Views: 2684
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>({newFAQVisitCount})</small></li>
[/newFAQList]
</ol>
here's a ...
<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>({newFAQVisitCount})</small></li>
[/newFAQList]
</ol>
here's a ...
- Thu Dec 04, 2014 6:00 am
- Forum: General discussions
- Topic: undefined index
- Replies: 2
- Views: 2684
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 ...
$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 ...
- Wed Dec 03, 2014 6:30 pm
- Forum: General discussions
- Topic: faq date questions
- Replies: 3
- Views: 2907
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?
so is the date of the earliest revision the best available date equivalent to the 'birthdate' of a FAQ?
- Wed Dec 03, 2014 6:28 pm
- Forum: General discussions
- Topic: a question on comments?
- Replies: 2
- Views: 6176
Re: a question on comments?
never mind this question - I get it now... sorry for the disruption..
- Wed Dec 03, 2014 9:35 am
- Forum: General discussions
- Topic: a question on comments?
- Replies: 2
- Views: 6176
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
- Wed Dec 03, 2014 9:10 am
- Forum: General discussions
- Topic: data model
- Replies: 1
- Views: 1823
data model
just getting started with pmf... where would you direct me to find a model of the database... pdf?
- Wed Dec 03, 2014 1:23 am
- Forum: General discussions
- Topic: faq date questions
- Replies: 3
- Views: 2907
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 ...
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 ...