Define the structure used on the source dam of the website

I don’t know if it’s right to ask such a question, but it is related to programming, so it goes here.

I was provided with a zip file containing all the source data for the website, including the scripts used to create the database. I know that the site was created using a framework based on PHP, but not with what. I was asked to learn some basic information about the structure of the site and to be able to make at least small changes to the user interface.

The problem is that I do not recognize the framework used, although I am sure that the site was built using one. I know that this is not Zend, but about that.

The question is, what would you look from the source to determine the technology used to create the site, taking into account the product?

+6
php
source share
3 answers

You can do the following to try to determine the structure:

1) Check the folder structure for more famous frames

2) Check the hints in the headers of the HTTP response, comments in the source files, HTML output, license, etc.

Sometimes a site may not be created with a known structure, although it may seem that it uses it.

+4
source share

Get a website / application online and make us services like http://builtwith.com , which gives an idea of ​​the overall structure, web servers, etc.

0
source share

check it out, I just added this, and I think it works, now we can have an idea of ​​what constitutes such as facebook, gmail and yahoo mail.

https://wappalyzer.com/

0
source share

All Articles