Open Source Yii CMS - GXC CMS

Like It… :D

Thanks ametad. I have same error:

Declaration of WebUser::login() should be compatible with CWebUser::login($identity, $duration = 0)

And i use the solution of you. Just add $duration=0 in

    public function login($identity, $duration=0)


    {


            return parent::login($identity, $duration);


                            


    }

looks promising… ll have a look. keep the fire burning!

Hi,

I’m back again with a question, it is possible to achieve ajax validation on frontend forms using “main” type? I tried more options but nothing works so far, can you give me a hint? Perhaps using a “empty” type page with a form and then load with iframe will be a solution but i’m trying to avoid that if possible :unsure: .

Thanks,

Hi florin p,

With current structure, we cannot do ajax validate of a form in Block with the default ValidationUrl. The reason is because it appends HTML of previous blocks before render the block that has the form.

To solve this, you need to add the ValidationUrl in the form




?php $form=$this->beginWidget('CActiveForm', array(

        'id'=>'userregister-form',

         'enableClientValidation'=>false,

 		 'enableAjaxValidation'=>true,

            'clientOptions'=>array(

					'validationUrl'=>bu().'/ajax', //Point to any ajax page you want

                    'validateOnSubmit'=>true,

            ),   

        )); 

    ?>



And in the Ajax page, just call validation like usual:




	if(isset($_POST['ajax']) && $_POST['ajax']==='userregister-form')

            {

 					$model=new UserRegisterForm;

                    echo CActiveForm::validate($model);

                    Yii::app()->end();

            }



Hope this helps!

Have a nice day

Hi

want to use this promising CMS…but we need roadmap.

What are features and future features ?

Regards

Hi mr80,

Thanks a lot for your reply, works perfect this way. So I created a empty page layout with an ajax block which do the validaton. I never imagined to handle this way. Brilliant!

@abdes:

I must tell the truth that I’m an amateur in Open Source World and I really don’t have any roadmap. As far as I develop my sites, I will create or implement features for the cms. It will be great if you suggest a roadmap here. Maybe it will be good for everyone who wants to use this cms.

Regards

@florin p:

Glad it helps. If you finish your project with gxc-cms, please share it here. I really appreciate that. Have a nice day

I will extend a bit the core source to fit my needs, once I finish I will share here. Thank you!

hi,

sorry but the installation instruction is really confusing ; may U create a capture on how to install and upload it to youtube plz.

i’m not new in php but whatever i do just didn’t work.

mr80… just out of curiosity, what icon pack did you use for GXC CMS?

finally i get it right,

Now can U upload it’s UML and DB view(maps) and share it. it can be helpful for all and help developers develop it more powerful .

This is a great CMS. I’m testing it right now.

But how can I remove the frontend from urls?

I want to have an url like site.com/about-me

And about the multi-language selector in frontend? What are the links for that?

I installed this cms. Seems working fine but how shall i access the backend? username password is invalid? where can i get the uname and password to access backend.

  • Okai i got it from here

thanks

http://www.yiiframework.com/forum/index.php/topic/28652-open-source-yii-cms-gxc-cms/page__hl__in+tall+open+ource+yii+cm+gxc+cm+__st__100

hi mr80 your Cms is very Awesome , i like it.

i have question .

have your cms a good document(structure) ?

Hi

Where you have proper developer documentation of GXC CMS.

I wanted to write breadcrum blocks. can you tell me any ideas.

based on current page i need to generate breadcrumbs

Regards,

Asaithambi

@Asaithambi:

1/ Go to yoursite.com/backend/gii -> Then generate a new block in front_blocks

2/ Implement your block code in renderContent method.

Hi guys,

I am planning to upgrade the cms. This time, I will do my best to write document, enhance cms features and optimize for the speed. I really need to have your ideas/suggestions for features and application structure the next version.

I need advice for:

1/ Should I set a new forum or just need to discuss on current Yii forum? I need a place where we can discuss on bugs/features/tutorials about the cms.

2/ Which tools are good for documenting, version tracking?

3/ Do I need to rework on the homepage of the cms? Should I build a better demo of the cms?

Please post here or send me PM/ or email me. I really appreciate it.

Have a nice day!

Hi there,

I’ve looked at your CMS and it looks very promising, but there is one question I have:

How can I implement a module, which I have build on my own?

For example:

  • Create a new page in the CMS

  • Tell the new page to use an action of a controller in my own module?

Many thanks!