FraGoTe/admin-dashboard-zend

Not able to install getting error

Closed this issue · 10 comments

I just copy your files and put them in myzend folder....

Host has been created....

( ! ) Fatal error: Uncaught exception 'RuntimeException' with message 'Unable to load ZF2. Run php composer.phar install or define a ZF2_PATH environment variable.' in C:\websites\myzend\init_autoloader.php on line 53
( ! ) RuntimeException: Unable to load ZF2. Run php composer.phar install or define a ZF2_PATH environment variable. in C:\websites\myzend\init_autoloader.php on line 53
i just put your files into myzend folder. Host has been defined.

this was the first step which i used...

and when i install zf2 in myzend folder by installing composer then i can open only......

zf2 front end

please help me it is very important for me.... please

It seems to be a composer problem ... can you check you composer version (composer -v) ?

c:\websites\myzend> php composer.phar self-update
Updating to version 1e27ff5e22df81e3cd0cd36e5fdd4a3c5a031f4a.
Downloading: 100%
Use composer self-update --rollback to return to version 7adc41d02c3536b3e19a6b9
06cf0c4cf6d3beb70

after this if i will use "c:\websites\myzend> php composer.phar install" command then after installation i can see only zf2 skeleton application front end.

Can you send an image?

after putting your files in myzend folder

https://cloud.githubusercontent.com/assets/8590118/4092468/eff80fc4-2f92-11e4-9f48-cb46720b4793.png

after using command

c:\websites\myzend> php composer.phar self-update
c:\websites\myzend> php composer.phar install

I can see
https://cloud.githubusercontent.com/assets/8590118/4092507/5a631f34-2f93-11e4-9443-7d8c684774a5.png

Ohh there are the available routes check https://github.com/FraGoTe/admin-dashboard-zend/blob/master/module/Dashboard/config/module.config.php but I didn't upload the database I'll upload it tonight.

'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Zend\Mvc\Router\Http\Literal',
                'options' => array(
                    'route' => '/',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action' => 'index',
                    ),
                ),
            ),
            // The following is a route to simplify getting started creating
            // new controllers and actions without needing to create a new
            // module. Simply drop new controllers in, and you can access them
            // using the path /dashboard/:controller/:action
            'dashboard' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/dashboard',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'Index',
                        'action' => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'default' => array(
                        'type' => 'Segment',
                        'options' => array(
                            'route' => '/[:controller[/:action]]',
                            'constraints' => array(
                                'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                            ),
                            'defaults' => array(
                            ),
                        ),
                    ),
                ),
            ),
            'dash_login' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/dashboard/login',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'login',
                        'action' => 'index',
                    ),
                ),
            ),
            'dash_logout' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/dashboard/logout',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'login',
                        'action' => 'logout',
                    ),
                ),
            ),
            'dash_index' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/dashboard',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'index',
                        'action' => 'index',
                    ),
                ),
            ),
            'dash_role' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/dashboard/role',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'role',
                        'action' => 'index',
                    ),
                ),
            ),
            'dash_user' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/dashboard/user',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'user',
                        'action' => 'index',
                    ),
                ),
            ),
            'dash_user_list' => array(
                'type' => 'Segment',
                'options' => array(
                    'route' => '/dashboard/user/list/id[/:id]',
                    'constraints' => array(
                        'id'     => '[0-9]+',
                    ),
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'user',
                        'action' => 'list',
                    ),
                ),
            ),
            'dash_user_edit' => array(
                'type' => 'Segment',
                'options' => array(
                    'route' => '/dashboard/user/edit/id[/:id]',
                    'constraints' => array(
                        'id'     => '[0-9]+',
                    ),
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'user',
                        'action' => 'edit',
                    ),
                ),
            ),
            'dash_user_del' => array(
                'type' => 'Segment',
                'options' => array(
                    'route' => '/dashboard/user/delete/id[/:id]',
                    'constraints' => array(
                        'id'     => '[0-9]+',
                    ),
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'user',
                        'action' => 'delete',
                    ),
                ),
            ),
            'dash_role_list' => array(
                'type' => 'Segment',
                'options' => array(
                    'route' => '/dashboard/role/list/id[/:id]',
                    'constraints' => array(
                        'id'     => '[0-9]+',
                    ),
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'role',
                        'action' => 'list',
                    ),
                ),
            ),
            'dash_role_edit' => array(
                'type' => 'Segment',
                'options' => array(
                    'route' => '/dashboard/role/edit/id[/:id]',
                    'constraints' => array(
                        'id'     => '[0-9]+',
                    ),
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'role',
                        'action' => 'edit',
                    ),
                ),
            ),
            'dash_role_del' => array(
                'type' => 'Segment',
                'options' => array(
                    'route' => '/dashboard/role/delete/id[/:id]',
                    'constraints' => array(
                        'id'     => '[0-9]+',
                    ),
                    'defaults' => array(
                        '__NAMESPACE__' => 'Dashboard\Controller',
                        'controller' => 'role',
                        'action' => 'delete',
                    ),
                ),
            ),
        ),
    ),

please update all files with database after that i will download all the files... thank you so much for your support dear friend.... please do it as soon as possible because it is very important to me... please

hi FraGoTe, please update i am waiting................ please

I just upload it greetings.

After Installation what will be the process to open admin

Regards,

Saurabh Sharma
Inventra Technologies Pvt. Ltd.

*India | *Singapore | Germany | UAE | China
T: +91-9873937577
Site: http://www.inventratech.com

Note: Privileged/Confidential information may be contained in this message
and may be subject to legal privilege. Access to this e-mail by anyone
other than the intended is unauthorized. If you are not the intended
recipient (or responsible for delivery of the message to such person), you
may not use, copy, distribute or deliver to anyone this message (or any
part of its contents ) or take any action in reliance on it. In such case,
you should destroy this message, and notify us immediately. If you have
received this email in error, please notify us immediately by e-mail or
telephone and delete the e-mail from any computer. If you or your employer
does not consent to internet e-mail messages of this kind, please notify us
immediately. All reasonable precautions have been taken to ensure no
viruses are present in this e-mail. As our company cannot accept
responsibility for any loss or damage arising from the use of this e-mail
or attachments we recommend that you subject these to your virus checking
procedures prior to use. The views, opinions, conclusions and other
information expressed in this electronic mail are not given or endorsed by
the company unless otherwise indicated by an authorized representative
independent of this message.

On 1 September 2014 03:37, Francis Gonzales notifications@github.com
wrote:

I just upload it greetings.


Reply to this email directly or view it on GitHub
#1 (comment)
.