|
|
Due to the volume of spam happening on our forums, posting is now restricted to verified members only. If you're not verified, drop us a note with your username.
|
|
Home > FlexCMS Support Forum > Recent Messages
FlexCMS Support Forum
Recent Messages
|
|
|
|
| May 25, 2011 @ 11:04pm | Wolf,
Interesting questions. Have you tried granting that permission ("Post Messages and Create Topics") to the Guests level? I don't know whether it will work or not, but that's a good place to start.
David |
|
|
|
| |
|
|
|
|
Guest access for forums | May 25, 2011 @ 8:22pm | Hey Dave, Otter,
I have two questions about the Forums which I didn't see asked (though may have missed it)...
I have a client who would like to allow everyone, including GUESTS to post to the forums. The permissions for them are all set at "0 - Everyone", but Guests still receive a msg saying they must first login before posting.
Question #1 After glancing at the code, I'm thinking two modules need to be changed:
Code
inc-mb-thread_post.php inc-mb-thread_compose.php |
|
In particular, lines where the following appears:
Code
if ($Permissions[201] != 'y') { ... etc. |
|
Question #2 I'm guessing this will probably allow all guests to modify and delete other guests code as a result?
Anything else that should be considered? (oops, three questions - LOL)
Thanks, Wolf |
|
|
|
| |
|
|
|
|
| May 15, 2011 @ 8:05pm | Wolf,
You could go through the .sql file that's now there in the installation folder (created by the installation package) and remove all instances of "Type=MyISAM" and see if that does anything for you. You'll probably have to make that file read only so the installer doesn't overwrite it on the next run through.
Failing that, you could also take a database dump from an existing site and I can give you a license key that will work for "http://localhost/flex".
It's possible it's just not going to work. I've had it working on a couple occasions, but those localhost server packages make a number of changes to things like PHP and MySQL that sometimes are too much to overcome.
David |
|
|
|
| |
|
|
|
|
Installation under PHP Version 5.3.5 | May 15, 2011 @ 7:53pm | Hi David,
I'm trying to install FlexCMS v3.2.1 - May 11, 2010 as a local laptop installation under Windows XP.
During the install I received the normal (successful) messages:
Writing Test Files: Main directory test file written successfully Images directory not present (no write test required) Test files written successfully.
Installation Location: http://localhost/flex License Level: Free
Database Successfully Connected! Running MySQL Version 5.5.8 Directories Created: 55 Files Created: 1061
Then, when Flex goes to split the files in install.php I receive the following PHP error message:
Deprecated: Function split() is deprecated in C:xampphtdocsflexinstall.php on line 626 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM' at line 1
The line in question is: $FileLines = split("n", $FileContentsString);
In this version of PHP, split() is depreciated. So I tried using explode() instead: $FileLines = explode('n' , $FileContentsString);
But I now recieve this error message: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM; INSERT INTO `cl-EventDates` (`RecordNumber`, `EventID`, `DateCode`' at line 1
Can you think of alternate suggestions? I've tried various other functions, but with similar results.
Thanks in advance!
Cheers, Wolf
|
|
|
|
| |
|
|
|
|
| May 13, 2011 @ 9:47am | Hello,
That feature doesn't currently exist in FlexCMS. It's been mentioned by others as something they'd like so you may see it in a future version.
David |
|
|
|
| |
|
|
|
|
how to add comments to article/news | May 13, 2011 @ 5:09am | how to add comments to article/news? |
|
|
|
| | | |
|
|
|
|
Results after upgrade to 3.2.1 | May 11, 2011 @ 4:49pm | After upgrading, there was no error message and it went through the process of sending, but then I never received the newsletter email. So back to the original fix editing inc-nl-admin-newsletter_sendfinal.php and everything works again. |
|
|
|
| |
|
|
|
|
File Name | May 11, 2011 @ 3:16pm | For anyone with a godaddy host and getting this error, the file that needs modified is inc-nl-admin-newsletter_sendfinal.php
around line 82 replace this:
Code
$MessageHeaders = 'From: "'.$Settings['SiteName'].'" <'.$Settings['ContactEmail'].'>'."\r\n"; $MessageHeaders .= "MIME-Version: 1.0\r\n"; $MessageHeaders .= "Content-Type: multipart/alternative;\r\n boundary=\"".$BoundaryID."\"\r\n\r\n"; $MessageHeaders .= $PlainTextMessage; $MessageHeaders .= "--".$BoundaryID."\r\n". "Content-Type: text/plain; charset=ISO-8859-1\r\n". "Content-Transfer-Encoding: base64\r\n\r\n"; $MessageHeaders .= chunk_split(base64_encode($PlainTextMessage)); $MessageHeaders .= "--".$BoundaryID."\r\n". "Content-Type: text/html; charset=ISO-8859-1\r\n". "Content-Transfer-Encoding: base64\r\n\r\n"; $MessageHeaders .= chunk_split(base64_encode($HTMLMessage)); } else { $Message = "\n".$StrippedMessage."\n\n\n\n".$Settings['SiteName']."\n".$BaseURL."\n\n\n".$MsgText[5][28].":\n".$MainURL."/newsletter/unsubscribe_confirm/".$row4['Email']."/".$row4['ConfirmationCode']; $MessageHeaders = 'From: "'.$Settings['SiteName'].'" <'.$Settings['ContactEmail'].'>'."\r\n"; $MessageHeaders .= 'MIME-Version: 1.0'."\r\n".'Content-Type: text/plain; charset="iso-8859-1"'."\r\n".'Content-Transfer-Encoding: 7bit'."\r\n\r\n"; $MessageHeaders .= $Message; } if (mail($row4['Email'], $StrippedTitle, "", $MessageHeaders, '-f'.$Settings['ContactEmail'])) {
|
|
with this:
Code
$MessageHeaders = 'From: "'.$Settings['SiteName'].'" <'.$Settings['ContactEmail'].'>'."\r\n"; $MessageHeaders .= 'MIME-Version: 1.0' . "\r\n"; $MessageHeaders .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
} else { $Message = "\n".$StrippedMessage."\n\n\n\n".$Settings['SiteName']."\n".$BaseURL."\n\n\n".$MsgText[5][28].":\n".$MainURL."/newsletter/unsubscribe_confirm/".$row4['Email']."/".$row4['ConfirmationCode']; $MessageHeaders = 'From: "'.$Settings['SiteName'].'" <'.$Settings['ContactEmail'].'>'."\r\n"; $MessageHeaders .= 'MIME-Version: 1.0'."\r\n".'Content-Type: text/plain; charset="iso-8859-1"'."\r\n".'Content-Transfer-Encoding: 7bit'."\r\n\r\n"; $MessageHeaders .= $Message; } ini_set('sendmail_from', $Settings['ContactEmail']); if (mail($row4['Email'], $StrippedTitle, $HTMLMessage, $MessageHeaders)) {
|
|
Again this is flexcms 3.1, I am going to upgrade to 3.2.1 and will post if the same changes need made after the upgrade |
|
|
|
| |
|
|
|
|
| May 10, 2011 @ 8:52pm | Hey Grady,
Great looking site, thanks for sharing, and for using FlexCMS.
David |
|
|
|
|
|
|
| MEMBERS
|
|
|