https://github.com/anushbmx/techstream-v3
Backend code that runs techstream.org
https://github.com/anushbmx/techstream-v3
Last synced: 2 months ago
JSON representation
Backend code that runs techstream.org
- Host: GitHub
- URL: https://github.com/anushbmx/techstream-v3
- Owner: anushbmx
- License: gpl-2.0
- Created: 2015-08-03T16:14:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-01-06T08:19:01.000Z (over 1 year ago)
- Last Synced: 2025-02-07T15:45:18.573Z (4 months ago)
- Language: PHP
- Homepage: http://techstream.org
- Size: 590 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
The Backend script that runs http://techstream.org
MVC Framework
=============In house crafted framework on MVC architecture
Settings
========In Nginx add the following to 'default' file inside sites-avalible
location /x/public/ {
if (!-e $request_filename)
{
rewrite ^/x/public/(.+)$ /x/public/index.php?url=$1 last;
}
error_page 404 /index.php;
}For Apache Server
Options -MultiViews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]Configuring
===========Create a file
settings-local.php
and copy the contents inside settings-local.sample. Fill in the values and hit run.