1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php
$db_config = array( 'host' => 'localhost', 'username' => 'root', 'password' => 'Rw1iI8v5bOzsVDE5', 'db'=> 'kptv_site', 'port' => 3306, 'prefix' => '', 'charset' => 'utf8mb4');
$private_key = "asdad12!2!!@#";
//$db_config['db'] = "kptv_testsite"; //$db_config['username'] = "kptv_testsite"; //$db_config['password'] = "aimei2Ieph5ieng7"; //$ROUTE_PREFIX = "radio/admin2/";
$ROUTE_PREFIX = "kptv/admin2/"; $basePath = "C:/xampp/htdocs/kptv/"; $temp = "C:/xampp/htdocs/kptv/admin2/upload_temp/"; $base_url = "http://85.9.62.212/";
//$basePath = "/var/www/sites/testsite.kptv.ro/public_html/radio/"; //$temp_upload_dir = "/var/www/sites/testsite.kptv.ro/public_html/radio/images/temp/"; //$base_url = "http://testsite.kptv.ro/radio";
$paths = array( "images_temp" => $basePath . "images/temp/", "news_images" => $basePath . "images/stiri/", "albums_images" => $basePath . "images/albums/", "photo_gallery" => $basePath . "images/galerie/", "rock_legends" => $basePath . "images/articole/", "playlist_images" => $basePath . "images/playlists/", "top20_images" => $basePath . "images/top20/", );
$urls = array( "images_temp"=>$base_url . "/images/temp/", "news_images"=>$base_url . "/images/stiri/", "albums_images"=>$base_url . "/images/albums/", "photo_gallery" => $base_url . "/images/galerie/", "rock_legends" => $base_url . "/images/articole/", "playlist_images" => $base_url . "/images/playlists/", "top20_images" => $base_url . "/images/top20/", ); ?>
|