, Guest!
Already a Member? Login or Register.

Menu



Showcase


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

Previous Page Next Page

User Help > General Support Requests > A couple of usability enhancements (Go To Message)
cberks
 
A couple of usability enhancementsMarch 10, 2008 @ 8:57pm
Could you please point me to the appropriate code files so i can examine and perhaps make slight modifications to

a) on manage articles screen where it has VIEW, EDIT links to also include a DELETE link

b) on the calendar event input screen have the start time check box pre-checked so that user can uncheck if necessary but default is checked

also

are you planning to add recurring events (ie each month, each week, each 3rd Wednesday) to future releases

and finally

I have a license for FLEXCMS which is installed on a hosting service and it is used for a church website -- the longterm strategy for the church (maybe be very long!!) is to eventual move to FLEXCXMS hosted by WEBOTTER - am I correct in assuming that if and when they want to do that it would just be a matter of signing up for a hosting agreement and sending a FLEXCMS website dump to them to restore on their hosting service . . .

Regards, Chris
User Help > General Support Requests > Problems uploading images (Go To Message)
otter
 
March 4, 2008 @ 11:51am
Please send an email to our helpdesk (support@flexcms.com) with admin access username/pw for your site and we'll be happy to assist you from there.

Thanks!

Kel aka otter
User Help > General Support Requests > Problems uploading images (Go To Message)
fjordbak1
 
Problems uploading imagesMarch 4, 2008 @ 11:33am
Our website www.orphanageemmanuel.com has recently been moved to a new server. After the move I cannot upload images. I can add text without problems, but when I try to upload an image I get this error message:
Your image could not be uploaded. It isn't a valid GIF, JPEG or PNG image. Please go back and select another file. (1)

The image IS a valid jpg image and it is not too large.

How can I solve this problem?

Rikke
User Help > General Support Requests > How do i change header (Go To Message)
linns
 
February 20, 2008 @ 3:41pm
Thanks for the quick answer will maybe get back to you soon for that
User Help > General Support Requests > How do i change header (Go To Message)
DCSun
 
February 20, 2008 @ 3:30pm
Yes, you can add your own photo, but it will take some skills in a graphics program such as PhotoShop. You would cut out the section where the photo is currently, then drop your new photo in behind on a new layer.

We also offer template customization services that can create a version of the photo top template with your photo and a color scheme of your choosing. The cost for something like that would be $40. Please contact if you're interested.


David
User Help > General Support Requests > How do i change header (Go To Message)
linns
 
How do i change header February 20, 2008 @ 3:00pm
I am using the photo templates on one of my site and wondered if i can change that to add my own photo
User Help > General Support Requests > No control panel (Go To Message)
DCSun
 
February 18, 2008 @ 9:36pm
Hello,

Yes, we've seen this a few other places recently too. I believe it's a change that occurred in a recent release of either PHP itself or one of the major server packages (if it's the same problem).

Open up your index.php file, and find this line (should be line 192):
Code

$CookieData = $HTTP_COOKIE_VARS[$CookieName];
and replace it with this:
Code

$CookieData = $_COOKIE[$CookieName];


Then save and upload back to your website. Let us know if that works for you.


David
User Help > General Support Requests > No control panel (Go To Message)
eelavan2000
 
No control panelFebruary 18, 2008 @ 6:33pm
Hi i have a problem that my site does not have any control panel. i tried in 2 deifferent sites. both have same problem. just check this is and help me

http://www.pet-fish.info/news/index.php/index.html

User Help > General Support Requests > Payment Received / Order Shipped (Go To Message)
DCSun
 
February 17, 2008 @ 7:59pm
David,

Everything for the paid and shipped emails will come from the inc-ec-admin-store-orders-modify-save.php file, not inc-ec-idx.php. But either way, aside from the one I mentioned in the inc-ec-idx.php file where it would have the wrong one, there's nothing I can see that would prevent it from adding the from address.

David
User Help > General Support Requests > Payment Received / Order Shipped (Go To Message)
David
 
February 17, 2008 @ 7:38am
David,

I've checked the e-mail field in eCommerce setting (and in the MySQL table as well) and there is no value. The code I have in the inc-ec-idx.php module is the following:

// send emails
$Message = $MsgText[9][338]."\n\n\n".$ContentsPrint."\n".$TaxesSection."\n".$SHTitle.': '.$CurrencyBefore.number_format($TotalShipping,$ecSettings['PriceDecimals'], $ecSettings['DecimalSymbol'], $ecSettings['ThousandsSep']).$CurrencyAfter.' ('.$row6['Description'].")\n\n".$MsgText[9][253].': '.$CurrencyBefore.number_format($OrderTotal,$ecSettings['PriceDecimals'], $ecSettings['DecimalSymbol'], $ecSettings['ThousandsSep']).$CurrencyAfter."\n\n\n".$MsgText[9][246].':'."\n".$ShippingAddressPrint."\n\n\n\n".$MsgText[0][142].','."\n".$Settings['SiteName']."\n".$IndexURL;
//By David - mail($UserEmail, $MsgText[9][339].' '.$OrderID, $Message, 'From: "'.$Settings['SiteName'].'" <'.$ecSettings['OrdersEmail'].'>','-f'.$Settings['ContactEmail']);
mail($UserEmail, $MsgText[9][339].' '.$OrderID, $Message, 'From: "'.$Settings['SiteName'].'" <'.$ecSettings['OrdersEmail'].'>');

$Message = $MsgText[9][340]."\n\n\n".$ContentsPrint."\n".$TaxesSection."\n".$SHTitle.': '.$CurrencyBefore.number_format($TotalShipping,$ecSettings['PriceDecimals'], $ecSettings['DecimalSymbol'], $ecSettings['ThousandsSep']).$CurrencyAfter.' ('.$row6['Description'].")\n\n".$MsgText[9][253].': '.$CurrencyBefore.number_format($OrderTotal,$ecSettings['PriceDecimals'], $ecSettings['DecimalSymbol'], $ecSettings['ThousandsSep']).$CurrencyAfter."\n\n\n".$MsgText[9][246].':'."\n".$ShippingAddressPrint."\n\n------------------------------\n\n".$MsgText[9][341];
//By David - mail($ecSettings['OrdersEmail'], $MsgText[9][339].' '.$OrderID, $Message, 'From: "'.$Settings['SiteName'].'" <'.$ecSettings['OrdersEmail'].'>','-f'.$ecSettings['OrdersEmail']);
mail($ecSettings['OrdersEmail'], $MsgText[9][339].' '.$OrderID, $Message, 'From: "'.$Settings['SiteName'].'" <'.$ecSettings['OrdersEmail'].'>');


Maybe I'm just missing something here.

//David

Previous Page Next Page





Try & Buy FeedForAll - Easy to use RSS Feed Creator - great for iTunes users!

MEMBERS




All Contents, Code, Scripts and Technologies Copyright 2003-2009 FlexCMS.
All Rights Reserved. Software License Agreement

Processing Time: 0.08411 seconds.
 
Management Login

Powered By FlexCMS
Powered By FlexCMS