Zend 2 in combination with Netbeans and WAMP - php

I have succesfully installed and deployed the Zend skeleton application however when netbeans open the page it doesn't show the actual page of Zend but it shows the Index of /testzendwithwamp and i have no clue what the problem is.
I am using WAMP and i copy the full project map into the www folder of C:/wamp/www as i was told and as it works with other php sites. For some reason however this won't work with Zend 2 now i assume that it has something to do with the fact that Netbeans/WAMP has no clue which .php file to load but i have no clue how to fix it does anyone have experience with this that could help me please? i'm kind of stuck

Related

Zend Skeleton framework not displaying using Php

I am working through the ZEND Skeleton installation described here
I am running it on an Apache server (in my home network) on Ubuntu 16.10
When I switched off the server yesterday the installation was working correctly, and displaying the expected Zend pages, as per the documentation.
To clarify - I need to know why the previously working installation on Apache has stopped rendering the pages in Php
I bookmarked these links in my browser. When I booted the server this morning and went to those links I get the result shown in the image below:-
Local browser URL (192.168.1.201/zendtest1/)
Zend Skeleton index
It appears that in switching off and on the machine the Zend installation has stopped accessing Php to render out the page in the browser.
Does anyone have any experience of this, or any suggestion as to what may have occurred?
The document root of a ZF2/ZF3 project is public, so you should use one of the strategies exposed in the quick start to either:
set the proper document root on your server
use the php development server
use vagrant and a VM
use docker
You could also access the address with typing /public at the end, that will probably not work at some point for your assets though. Then you will need to fix your basepath.

Zend framework application to apache2 webserver

This is probably a noob question but i'm really new to this thing (zend application & apache2 servers)
previous developers have given me the source code for the project they did and he said that it was created with Zend framework. I've managed to run it on my computer (Windows 7) under XAMPP server. If I go to http://****(mylocalcomputer)/ it will work. But once I copy all (3 folders) of them on the Ubuntu web server we have, it's not working. I've tried pointing the directory (configuring /etc/apache2/sites-enabled/default000) to the public folder like the ones I did on XAMPP httpd.conf, but it's still not working...
After trying it in chrome, I go to inspect element, and going thru console, it's telling me all the files mentioned with 404 not found errors. But when I browse with winscp to the directories, I can find those files. Help please... thanks in advance...
SOLVED this problem...I just have to carefully configure all the Aliases and Directory Root properly. THANKS to this website, I was able to check all the possible causes and errors of that default000 file!

How can I get a Zend Framework project to run on IIS?

I am trying to get the Zend Framework (ver 9 Studio) to deploy and actually run on my local IIS server.
I have created a very simple little app using the built-in wizard. It works fine if I run it on the Apache server that comes with Zend. But I tried to copy the files over and run it on IIS, and I get errors.
It appears that it is missing the links to the libraries. I've tried manually isolating and grabbing the missing libraries and putting them into the /library folder. This is a good start but I still get other errors down the road.
I found a tutorial out there that comes with an example of a Zend Project that runs in IIS. But, it pretty much has the same problems as the project I created. More missing libraries. The tutorial includes some neat new tricks like a web.config that is supposed to replace the need for the .htaccess that Apache uses.
That's how far I've made it. This is all very frustrating. Does anyone have a simple example like that tutorial promised? If not, just some good information would be helpful.
you need the rewrite module, Rob Allen has a little tutorial to help. The biggest problem is usually the rewrite module, because you have to install it seperately.

How do i set up Zend Server on Mac?

I have a mac, and want to set up Zend Server. I am not a php developer but experimenting and when in stalled it and all, i can access the administration control etc, but when i try to add my own code to the rood documents folder, it says it can't find the site. Im not sure if it is the right place to put it, but its located in the same folder as the zend server symlink.
Are there any other tweaks I'm supposed to do? I just installed using the dog installer package that zend has for the mac.
Any help would be awesome.
I think what you need is a screen cast to better understand the concept, so here is one:
http://www.youtube.com/watch?v=097GoCeZm2U

zend framework not working in ubuntu

I have installed Ubuntu 10.10 on my laptop. Happy about my accomplishment i have proceeded on to installing zend framework.
I've downloaded the files, extracted them in my /opt directory, made a link /opt/zend and included /opt/zend/library in my php include_path. I have also configured php-cli's include_path. I have enabled mod_rewrite.
I create my first project, i don't have vhosts enabled (i do not wish to create vhosts for every project), i'm fine with adding /public to my path.
So i have my first project created with zend tool, i test it in my browser it works. I install the Netbeans zend plugin and i create my first controller. I try to view it in my browser, says not found. That is weird.
I download my other projects made in zend, same problem. The index page is loaded but when i try to view other controllers i get a not found error. Could somebody shed some light here? I have no clue what could be the problem.
All my other zend projects are working fine on any shared hosting i use, no configuration needed whatsoever(except database).
Seems that ubuntu's default install of apache is somehow not working with zend...unless you edit your 000-default file under /etc/apache2/sites-enabled. For more details follow this link
Just remember to change every line Allow None to Allow All

Categories