CoreBOSBB
CP Setup - Printable Version

+- CoreBOSBB (https://discussions.corebos.org)
+-- Forum: Development (https://discussions.corebos.org/forumdisplay.php?fid=18)
+--- Forum: coreBOS Development (https://discussions.corebos.org/forumdisplay.php?fid=4)
+---- Forum: coreBOS CP (https://discussions.corebos.org/forumdisplay.php?fid=12)
+---- Thread: CP Setup (/showthread.php?tid=9)

Pages: 1 2 3


CP Setup - Ekim - 05-17-2014

First of All, Greetings;
I am a post grad student in Toronto working on tailored web sites for my clients. One of my client requested me to create him a student management system. After lots of research and after 4 different set-ups.(Z0ho+J0tForm-Sug@rCRM-Suit@CRM-VTig@rv6.0)

What took me here is the requirement for the students to fill in their information into the system instead of a office lady.
My client wants the students to see their quotations, schedules, documents and also wants them to fill their profiles; this is where I get stuck with all other systems.

But seems like the coreBOSCP handles that problem for me if I could just set it up properly.

My current situation is :
I set up the crm under my hosting in GoDD and also created one more subdomain for CP itself.
crm.mydomain.com
portal.mydomain.com
After I login; /portal/index.php/site/login
I get a error saying : The requested module does not exist in vtiger CRM.
I just clean set-up a coreBOS 5.4.0. and CP under a different folder and changed the variables in a few files where I see necessary. Couldnt find the documentation properly and couldnt figure out what this link wants me to do : <!-- m --><a class="postlink" href="http://corebos.org/documentation/doku.php?id=en:coreboscp:installconfig">http://corebos.org/documentation/doku.p ... tallconfig</a><!-- m -->

I also dont have the required files in these explanations.
-download the set of changes coreBOSCPWS.zip and uncompress the file from the root of your coreBOS install
-apply the patch file coreBOSCPWS.diff which is now in the root of you install
-execute the script coreBOSCPWS.sql in your database to get the required database changes

Sorry for this big explanation; is there anyone available to guide me in this journey? Because I have never worked with any CRM other than Zoho before. My main language is asp and asp.net C# so also php makes it harder for me to understand.

I can give all the required information if anyone is available to help me; I am stuck =/

Thanks Sincerely
Have a Great Weekend
Ekim


Re: CP Setup - joebordes - 05-17-2014

Ekim

I am on it. You are missing some files to get it working. I just haven't had the time to share those correctly. The thing is that there is a lot of added functionality in that code and I want to use the opportunity of sharing the code to correctly take it a part into logical pieces and document them as I share them. That way I hope to help others with an easier path and document utilities.

The whoel coreBOSCP project kind of just happened before I could take the correct steps to release it. I will put this top on my list and share it with you as soon as possible.

Thanks for you interest in the project.
Have a wonderful weekend also


Re: CP Setup - Ekim - 05-17-2014

Hi,
How long do you think it will take for you to prepare the documentations?

I am in a long run with this client; he also is my landlord and I gave him a 6 months time for other parts (accounting-homestay management) of the project. But quotation and profile parts needs to be done as soon as possible because students are waiting to register.

Maybe I can help out with documentation and making it more standalone for CP itself.
I told them that part is easy and will be finished until tuesday; based on the idea of a allready developed CP but if it is not ready for usage how long do you think it will take?

Thanks for your time and interest..
Cheers
Ekim


Re: CP Setup - joebordes - 05-18-2014

Hi,

I uploaded all the code yesterday. You can see the tickets on the bug tracker:

<!-- m --><a class="postlink" href="http://corebos.org/development">http://corebos.org/development</a><!-- m -->

The tickets go from 150 to 164, both included.

I have added some test code to validate functionality in coreBOSWS Development project (each referenced on the corresponding ticket)

To get it working you should be able to do this:
- git pull to update your code
- copy build/InstallRESTChanges.php to the root of your install
- execute InstallRESTChanges.php in the browser. this will update the database to register the new functions

you should be ready to go

I will spend the rest of the day documenting this in the wiki and testing it to make sure it is all working

I will update this ticket accordingly.

Please keep me informed of your progress


Re: CP Setup - joebordes - 05-18-2014

Hi,

I just finished testing the bulk of the changes. I uploaded some minor changes that will not affect functionality (but you should "git pull" to be up to date) and did some additional documentation.

It seems to be working correctly. Give it a try and get back to me with any problems you may find.


Re: CP Setup - Ekim - 05-18-2014

Ok I am starting with fresh installs for both sides.
Firstly setting up CRM CoreBOS 5.4


Re: CP Setup - joebordes - 05-18-2014

Perfect!!

You caught me posting a new comment on the subject:

I just finished releasing the coreBOSCP. I changed the license to GPLv3 and did rebranding to the new name.
It is the right time to download it and start.

Remember that the current version of coreBOS on github still doesn't have an upgrade file so you have to manually install the REST methods by copying build/InstallRESTChanges.php to the root and executing it.

coreBOS Webservice development project has examples of the new functionality and they are all documented in the bug tracker. I'm going to sleep now, but ask whatever you need and I will try to help.


Re: CP Setup - Ekim - 05-18-2014

I am already stuck
Here is the panel link :

<!-- m --><a class="postlink" href="http://canadagec.com/portal/index.php/site/login">http://canadagec.com/portal/index.php/site/login</a><!-- m -->

and user : <!-- e --><a href="mailto:ekimunal@hotmail.com">ekimunal@hotmail.com</a><!-- e -->
pass : ***

Which came to my e-mail but I cannot login with it?


Re: CP Setup - Ekim - 05-18-2014

Here is the rest changes BTW : <!-- m --><a class="postlink" href="http://crm.canadagec.com/InstallRESTChanges.php">http://crm.canadagec.com/InstallRESTChanges.php</a><!-- m -->


Re: CP Setup - joebordes - 05-18-2014

I get the error shown in the attached image.
Could it be that your php.ini is missing a timezone.
Note that the first thing the application does is set a timezone if none can be obtained from the operating system:

Right at the top of index.php

Code:
if(!date_default_timezone_get())
{
    // Set a fallback timezone if the current php.ini does not contain a default timezone setting.
    // If the environment is setup correctly, we won't override the timezone.
    date_default_timezone_set("UTC");
}

the error message also states that the timezone could be written incorrectly....