Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ogzcakar/oopBlog
PHP-OOP yapısı ile Blog
https://github.com/ogzcakar/oopBlog
Last synced: 3 months ago
JSON representation
PHP-OOP yapısı ile Blog
- Host: GitHub
- URL: https://github.com/ogzcakar/oopBlog
- Owner: ogzcakar
- License: mit
- Created: 2016-11-25T10:41:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-25T10:41:37.000Z (about 8 years ago)
- Last Synced: 2024-08-01T19:39:36.321Z (6 months ago)
- Language: CSS
- Size: 678 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - ogzcakar/oopBlog - PHP-OOP yapısı ile Blog (CSS)
README
# oopBlog
PHP ile OOP yapısını kullanarak hazırlanmış Blog projesi.
# Proje İçeriği
Kullanıcı Paneli:
- Kategoriler - Kategori İçerikleri
- Yazılar - Sayfalama - Yazı İçeriği - Demo Link - Download Link - Yorum Yapma
- Facebook & Twitter & Youtube Linkleri - Son Yorumlar
Yönetim Paneli:- Kategoriler - Kategori Ekle - Kategori Güncelle - Kategori Sil
- Yazılar - Yazı Ekle - Yazı Güncelle - Yazı Sil
- Yorumlar - Yorum Sil# Kurulum
App/System/config.php içerisinde bulunan :
- dizin ayarını düzenleyin.
``` php
define ('url' , 'http://'. $_SERVER['SERVER_NAME']);
```- Veritabanı ayarlarını düzenleyip SQL dosyasını aktarın.
``` php
$config['db'] = ([
'host' => 'localhost',
'name' => '',
'user' => '',
'pass' => ''
]);
```- Kişileştirmek için Facebook , Twitter ve Youtube adreslerini düzenleyin.
``` php
define ('facebookUrl' , 'https://www.facebook.com/ogzcakar');
define ('twitterUrl' , 'https://www.twitter.com/ogzcakar');
define ('youtubeUrl' , '#');
```# Projenin Anlatımı & Demosu
Anlatım : [oopBlog Anlatımı](http://www.ogzcakar.net/oopblog)
Demo : [oopBlog](http://www.ogzcakar.net/demo/oopBlog/) - [oopBlog Yönetim Paneli](http://www.ogzcakar.net/demo/oopBlog/admin)