· 6 years ago · Jul 16, 2019, 03:12 PM
1<?php
2defined('BASEPATH') OR exit('No direct script access allowed');
3
4/*
5|--------------------------------------------------------------------------
6| Base Site URL
7|--------------------------------------------------------------------------
8|
9| URL to your CodeIgniter root. Typically this will be your base URL,
10| WITH a trailing slash:
11|
12| http://example.com/
13|
14| WARNING: You MUST set this value!
15|
16| If it is not set, then CodeIgniter will try guess the protocol and path
17| your installation, but due to security concerns the hostname will be set
18| to $_SERVER['SERVER_ADDR'] if available, or localhost otherwise.
19| The auto-detection mechanism exists only for convenience during
20| development and MUST NOT be used in production!
21|
22| If you need to allow multiple domains, remember that this file is still
23| a PHP script and you can easily do that on your own.
24|
25*/
26$config['base_url'] = 'http://pimping-auto.cryptdough.co.uk';
27
28/*
29|--------------------------------------------------------------------------
30| Index File
31|--------------------------------------------------------------------------
32|
33| Typically this will be your index.php file, unless you've renamed it to
34| something else. If you are using mod_rewrite to remove the page set this
35| variable so that it is blank.
36|
37*/
38//$config['index_page'] = 'index.php';
39$config['index_page'] = "index.php";
40
41/*
42|--------------------------------------------------------------------------
43| Cookie Prefix
44|--------------------------------------------------------------------------
45|
46| Used to prefix all cookie names.
47|
48*/
49
50$config['cookieprefix'] = "ci_fgscom";
51
52/*
53|--------------------------------------------------------------------------
54| URI PROTOCOL
55|--------------------------------------------------------------------------
56|
57| This item determines which server global should be used to retrieve the
58| URI string. The default setting of 'REQUEST_URI' works for most servers.
59| If your links do not seem to work, try one of the other delicious flavors:
60|
61| 'REQUEST_URI' Uses $_SERVER['REQUEST_URI']
62| 'QUERY_STRING' Uses $_SERVER['QUERY_STRING']
63| 'PATH_INFO' Uses $_SERVER['PATH_INFO']
64|
65| WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded!
66*/
67$config['uri_protocol'] = 'REQUEST_URI';
68
69/*
70|--------------------------------------------------------------------------
71| URL suffix
72|--------------------------------------------------------------------------
73|
74| This option allows you to add a suffix to all URLs generated by CodeIgniter.
75| For more information please see the user guide:
76|
77| http://codeigniter.com/user_guide/general/urls.html
78*/
79$config['url_suffix'] = '';
80
81/*
82|--------------------------------------------------------------------------
83| Default Language
84|--------------------------------------------------------------------------
85|
86| This determines which set of language files should be used. Make sure
87| there is an available translation if you intend to use something other
88| than english.
89|
90*/
91$config['language'] = 'english';
92
93// For the Change Language option
94$config['available_languages'] = array(
95 "English" => "english"
96);
97
98/*
99|--------------------------------------------------------------------------
100| Default Character Set
101|--------------------------------------------------------------------------
102|
103| This determines which character set is used by default in various methods
104| that require a character set to be provided.
105|
106| See http://php.net/htmlspecialchars for a list of supported charsets.
107|
108*/
109$config['charset'] = 'UTF-8';
110
111/*
112|--------------------------------------------------------------------------
113| Enable/Disable System Hooks
114|--------------------------------------------------------------------------
115|
116| If you would like to use the 'hooks' feature you must enable it by
117| setting this variable to TRUE (boolean). See the user guide for details.
118|
119*/
120$config['enable_hooks'] = FALSE;
121
122/*
123|--------------------------------------------------------------------------
124| Class Extension Prefix
125|--------------------------------------------------------------------------
126|
127| This item allows you to set the filename/classname prefix when extending
128| native libraries. For more information please see the user guide:
129|
130| http://codeigniter.com/user_guide/general/core_classes.html
131| http://codeigniter.com/user_guide/general/creating_libraries.html
132|
133*/
134$config['subclass_prefix'] = 'MY_';
135
136/*
137|--------------------------------------------------------------------------
138| Composer auto-loading
139|--------------------------------------------------------------------------
140|
141| Enabling this setting will tell CodeIgniter to look for a Composer
142| package auto-loader script in application/vendor/autoload.php.
143|
144| $config['composer_autoload'] = TRUE;
145|
146| Or if you have your vendor/ directory located somewhere else, you
147| can opt to set a specific path as well:
148|
149| $config['composer_autoload'] = '/path/to/vendor/autoload.php';
150|
151| For more information about Composer, please visit http://getcomposer.org/
152|
153| Note: This will NOT disable or override the CodeIgniter-specific
154| autoloading (application/config/autoload.php)
155*/
156$config['composer_autoload'] = FALSE;
157
158/*
159|--------------------------------------------------------------------------
160| Allowed URL Characters
161|--------------------------------------------------------------------------
162|
163| This lets you specify which characters are permitted within your URLs.
164| When someone tries to submit a URL with disallowed characters they will
165| get a warning message.
166|
167| As a security measure you are STRONGLY encouraged to restrict URLs to
168| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
169|
170| Leave blank to allow all characters -- but only if you are insane.
171|
172| The configured value is actually a regular expression character group
173| and it will be executed as: ! preg_match('/^[<permitted_uri_chars>]+$/i
174|
175| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
176|
177*/
178$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
179
180/*
181|--------------------------------------------------------------------------
182| Enable Query Strings
183|--------------------------------------------------------------------------
184|
185| By default CodeIgniter uses search-engine friendly segment based URLs:
186| example.com/who/what/where/
187|
188| By default CodeIgniter enables access to the $_GET array. If for some
189| reason you would like to disable it, set 'allow_get_array' to FALSE.
190|
191| You can optionally enable standard query string based URLs:
192| example.com?who=me&what=something&where=here
193|
194| Options are: TRUE or FALSE (boolean)
195|
196| The other items let you set the query string 'words' that will
197| invoke your controllers and its functions:
198| example.com/index.php?c=controller&m=function
199|
200| Please note that some of the helpers won't work as expected when
201| this feature is enabled, since CodeIgniter is designed primarily to
202| use segment based URLs.
203|
204*/
205$config['allow_get_array'] = TRUE;
206$config['enable_query_strings'] = FALSE;
207$config['controller_trigger'] = 'c';
208$config['function_trigger'] = 'm';
209$config['directory_trigger'] = 'd';
210
211/*
212|--------------------------------------------------------------------------
213| Error Logging Threshold
214|--------------------------------------------------------------------------
215|
216| You can enable error logging by setting a threshold over zero. The
217| threshold determines what gets logged. Threshold options are:
218|
219| 0 = Disables logging, Error logging TURNED OFF
220| 1 = Error Messages (including PHP errors)
221| 2 = Debug Messages
222| 3 = Informational Messages
223| 4 = All Messages
224|
225| You can also pass an array with threshold levels to show individual error types
226|
227| array(2) = Debug Messages, without Error Messages
228|
229| For a live site you'll usually only enable Errors (1) to be logged otherwise
230| your log files will fill up very fast.
231|
232*/
233$config['log_threshold'] = 0;
234
235/*
236|--------------------------------------------------------------------------
237| Error Logging Directory Path
238|--------------------------------------------------------------------------
239|
240| Leave this BLANK unless you would like to set something other than the default
241| application/logs/ directory. Use a full server path with trailing slash.
242|
243*/
244$config['log_path'] = '';
245
246/*
247|--------------------------------------------------------------------------
248| Log File Extension
249|--------------------------------------------------------------------------
250|
251| The default filename extension for log files. The default 'php' allows for
252| protecting the log files via basic scripting, when they are to be stored
253| under a publicly accessible directory.
254|
255| Note: Leaving it blank will default to 'php'.
256|
257*/
258$config['log_file_extension'] = '';
259
260/*
261|--------------------------------------------------------------------------
262| Log File Permissions
263|--------------------------------------------------------------------------
264|
265| The file system permissions to be applied on newly created log files.
266|
267| IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal
268| integer notation (i.e. 0700, 0644, etc.)
269*/
270$config['log_file_permissions'] = 0644;
271
272/*
273|--------------------------------------------------------------------------
274| Date Format for Logs
275|--------------------------------------------------------------------------
276|
277| Each item that is logged has an associated date. You can use PHP date
278| codes to set your own date formatting
279|
280*/
281$config['log_date_format'] = 'Y-m-d H:i:s';
282
283/*
284|--------------------------------------------------------------------------
285| Error Views Directory Path
286|--------------------------------------------------------------------------
287|
288| Leave this BLANK unless you would like to set something other than the default
289| application/views/errors/ directory. Use a full server path with trailing slash.
290|
291*/
292$config['error_views_path'] = '';
293
294/*
295|--------------------------------------------------------------------------
296| Cache Directory Path
297|--------------------------------------------------------------------------
298|
299| Leave this BLANK unless you would like to set something other than the default
300| application/cache/ directory. Use a full server path with trailing slash.
301|
302*/
303$config['cache_path'] = '';
304
305/*
306|--------------------------------------------------------------------------
307| Cache Include Query String
308|--------------------------------------------------------------------------
309|
310| Whether to take the URL query string into consideration when generating
311| output cache files. Valid options are:
312|
313| FALSE = Disabled
314| TRUE = Enabled, take all query parameters into account.
315| Please be aware that this may result in numerous cache
316| files generated for the same page over and over again.
317| array('q') = Enabled, but only take into account the specified list
318| of query parameters.
319|
320*/
321$config['cache_query_string'] = FALSE;
322
323/*
324|--------------------------------------------------------------------------
325| Encryption Key
326|--------------------------------------------------------------------------
327|
328| If you use the Encryption class, you must set an encryption key.
329| See the user guide for more info.
330|
331| http://codeigniter.com/user_guide/libraries/encryption.html
332|
333*/
334$config['encryption_key'] = 'sd768lkjqegouidyasjklbw8921jlhbda89y12879efsdf6sd6fsdf6sad67f67sdf6fsdkjfhsdfsd98f87sdfs8d79f7s7d8fsdfsd
335sdf09sd8f0ertertertertertert7gggyyteujasdghlkugduiqwgeuqwgdyufqwdtyfqwdfqwdhdajshgf68sdf';
336
337/*
338|--------------------------------------------------------------------------
339| Session Variables
340|--------------------------------------------------------------------------
341|
342| 'sess_driver'
343|
344| The storage driver to use: files, database, redis, memcached
345|
346| 'sess_cookie_name'
347|
348| The session cookie name, must contain only [0-9a-z_-] characters
349|
350| 'sess_expiration'
351|
352| The number of SECONDS you want the session to last.
353| Setting to 0 (zero) means expire when the browser is closed.
354|
355| 'sess_save_path'
356|
357| The location to save sessions to, driver dependent.
358|
359| For the 'files' driver, it's a path to a writable directory.
360| WARNING: Only absolute paths are supported!
361|
362| For the 'database' driver, it's a table name.
363| Please read up the manual for the format with other session drivers.
364|
365| IMPORTANT: You are REQUIRED to set a valid save path!
366|
367| 'sess_match_ip'
368|
369| Whether to match the user's IP address when reading the session data.
370|
371| WARNING: If you're using the database driver, don't forget to update
372| your session table's PRIMARY KEY when changing this setting.
373|
374| 'sess_time_to_update'
375|
376| How many seconds between CI regenerating the session ID.
377|
378| 'sess_regenerate_destroy'
379|
380| Whether to destroy session data associated with the old session ID
381| when auto-regenerating the session ID. When set to FALSE, the data
382| will be later deleted by the garbage collector.
383|
384| Other session cookie settings are shared with the rest of the application,
385| except for 'cookie_prefix' and 'cookie_httponly', which are ignored here.
386|
387*/
388$config['sess_driver'] = 'files';
389$config['sess_cookie_name'] = 'ci_session';
390$config['sess_expiration'] = 7200;
391
392//$config['sess_save_path'] = LUCKYF . 'junk/ci_sessions/';
393$config['sess_save_path'] = sys_get_temp_dir();
394$config['sess_match_ip'] = FALSE;
395$config['sess_time_to_update'] = 300;
396$config['sess_regenerate_destroy'] = FALSE;
397
398/*
399|--------------------------------------------------------------------------
400| Cookie Related Variables
401|--------------------------------------------------------------------------
402|
403| 'cookie_prefix' = Set a cookie name prefix if you need to avoid collisions
404| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
405| 'cookie_path' = Typically will be a forward slash
406| 'cookie_secure' = Cookie will only be set if a secure HTTPS connection exists.
407| 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript)
408|
409| Note: These settings (with the exception of 'cookie_prefix' and
410| 'cookie_httponly') will also affect sessions.
411|
412*/
413$config['cookie_prefix'] = '';
414$config['cookie_domain'] = '';
415$config['cookie_path'] = '/';
416$config['cookie_secure'] = FALSE;
417$config['cookie_httponly'] = FALSE;
418
419/*
420|--------------------------------------------------------------------------
421| Standardize newlines
422|--------------------------------------------------------------------------
423|
424| Determines whether to standardize newline characters in input data,
425| meaning to replace \r\n, \r, \n occurrences with the PHP_EOL value.
426|
427| This is particularly useful for portability between UNIX-based OSes,
428| (usually \n) and Windows (\r\n).
429|
430*/
431$config['standardize_newlines'] = FALSE;
432
433/*
434|--------------------------------------------------------------------------
435| Global XSS Filtering
436|--------------------------------------------------------------------------
437|
438| Determines whether the XSS filter is always active when GET, POST or
439| COOKIE data is encountered
440|
441| WARNING: This feature is DEPRECATED and currently available only
442| for backwards compatibility purposes!
443|
444*/
445$config['global_xss_filtering'] = FALSE;
446
447/*
448|--------------------------------------------------------------------------
449| Cross Site Request Forgery
450|--------------------------------------------------------------------------
451| Enables a CSRF cookie token to be set. When set to TRUE, token will be
452| checked on a submitted form. If you are accepting user data, it is strongly
453| recommended CSRF protection be enabled.
454|
455| 'csrf_token_name' = The token name
456| 'csrf_cookie_name' = The cookie name
457| 'csrf_expire' = The number in seconds the token should expire.
458| 'csrf_regenerate' = Regenerate token on every submission
459| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks
460*/
461$config['csrf_protection'] = TRUE;
462$config['csrf_token_name'] = 'csrf_fgscom';
463$config['csrf_cookie_name'] = 'csrf_fgscom_name';
464$config['csrf_expire'] = 7200;
465$config['csrf_regenerate'] = FALSE;
466$config['csrf_exclude_uris'] = array(
467 "Cronnycron.*+",
468);
469
470
471
472/*
473|--------------------------------------------------------------------------
474| Output Compression
475|--------------------------------------------------------------------------
476|
477| Enables Gzip output compression for faster page loads. When enabled,
478| the output class will test whether your server supports Gzip.
479| Even if it does, however, not all browsers support compression
480| so enable only if you are reasonably sure your visitors can handle it.
481|
482| Only used if zlib.output_compression is turned off in your php.ini.
483| Please do not use it together with httpd-level output compression.
484|
485| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
486| means you are prematurely outputting something to your browser. It could
487| even be a line of whitespace at the end of one of your scripts. For
488| compression to work, nothing can be sent before the output buffer is called
489| by the output class. Do not 'echo' any values with compression enabled.
490|
491*/
492$config['compress_output'] = FALSE;
493
494/*
495|--------------------------------------------------------------------------
496| Master Time Reference
497|--------------------------------------------------------------------------
498|
499| Options are 'local' or any PHP supported timezone. This preference tells
500| the system whether to use your server's local time as the master 'now'
501| reference, or convert it to the configured one timezone. See the 'date
502| helper' page of the user guide for information regarding date handling.
503|
504*/
505$config['time_reference'] = 'local';
506
507/*
508|--------------------------------------------------------------------------
509| Rewrite PHP Short Tags
510|--------------------------------------------------------------------------
511|
512| If your PHP installation does not have short tag support enabled CI
513| can rewrite the tags on-the-fly, enabling you to utilize that syntax
514| in your view files. Options are TRUE or FALSE (boolean)
515|
516| Note: You need to have eval() enabled for this to work.
517|
518*/
519$config['rewrite_short_tags'] = FALSE;
520
521/*
522|--------------------------------------------------------------------------
523| Reverse Proxy IPs
524|--------------------------------------------------------------------------
525|
526| If your server is behind a reverse proxy, you must whitelist the proxy
527| IP addresses from which CodeIgniter should trust headers such as
528| HTTP_X_FORWARDED_FOR and HTTP_CLIENT_IP in order to properly identify
529| the visitor's IP address.
530|
531| You can use both an array or a comma-separated list of proxy addresses,
532| as well as specifying whole subnets. Here are a few examples:
533|
534| Comma-separated: '10.0.1.200,192.168.5.0/24'
535| Array: array('10.0.1.200', '192.168.5.0/24')
536*/
537$config['proxy_ips'] = '';
538
539
540
541////////Extra CONFIGS
542
543
544
545
546
547$config['base_url_js'] = "http://pimping-auto.cryptdough.co.uk/";
548$config['site_url_js']= "http://pimping-auto.cryptdough.co.uk";
549$config['cronkey'] = '' ; //enter a key/password to protect the cron url
550
551///ChatBro - chat
552
553$config['chatBro'] = array(
554'active' =>FALSE , /// or FALSE // if you want to show the chat or not
555#js options
556'domain' => 'pimping-auto.cryptdough.co.uk',
557
558 ###
559 /*
560 go to http://www.chatbro.com/en/account/ > Create new chat
561After you create the chat , you have a page with options
562Go to
563Users authentication
564Turn on 'Single Sign-On'
565Turn on 'Spoofing protection'
566Then will show a key like this ahdre78-9b369-jhwqe-asdas-123213
567Disable other chat logins
568On Internal methods , deactivate all (Vk,FB,G+,Telegram)
569
570 */
571'key' => 'a--CHAT---Bro---key',
572'encodedChatId' => '',
573'ChatId' => 1111,
574
575);
576
577
578
579
580
581//Template : cooladmin (more soon...)
582
583$config['template_design'] = 'cooladmin';
584$config['template_path'] = 'http://pimping-auto.cryptdough.co.uk/assets/themes/cooladmin';
585
586//lottery settings
587
588$config['lottery'] = array (
589
590'coin' =>'bitcoin', //dogecoin,litecoin, etc - as are saved in faucets array
591'start_prize' => 10,
592'percent_prize' => 0.8 , # 0.8 = 80% , 0.5 = 50%. etc / the percent given to winners from total amount of the round
593'frequency' => 'hourly', # or 'hourly'
594
595'min_tickets' => 100, //if the total amount of tickets on current lottery round is under min_tickets will be NO draw. and the prize is kept for next draw
596
597'tickets_tasks' => rand(1,5) , // random tickets for doing shortlink in task page
598'tickets_faucet' => rand(1,5) , // random for faucet claim
599'tickets_offerwall' => rand(1,5) ,
600
601);
602///$games
603$config['dice_house'] = 2; //Dice House edge
604
605
606///webminer
607$config['webminer'] = array (
608 // https://webminepool.com/keys
609 'publickey' => 'SK_YAa224BL7h4fAxKSJiJYK',
610 'privatekey' => 'PK_-----',
611
612 'prefix' => 'FGS', // some prefix in case you have more sites
613 'coin' => 'btc', // the coin that webminer pay
614 'min_hashes' => 13000, // min hashes need to be claimed
615 'rate' => 1 , // the amount of satoshi of 'coin' paid for 'min_hashes' selected above!
616 # example : at current rate 81 sat btc/ 1M hashes -> rate is 1sat / 12345 hashes . So we set 'min_hashes' to 12345 , 'rate' to 1, and user get the full reward for what he mine. If we set a higher number, he need more hashes for same reward => profit for site .
617
618);
619
620//experience (xp)
621$config['xp'] = array(
622'autofaucet' => 1, // xp for every auto faucet claim ( xp x timer)
623'faucet' =>3, // xp for every faucet claim without shortlink
624'faucetshortlink' => 5, //xp for every faucet claim with shortlinks
625'tasks' =>3, //xp for every task (shortlink)
626
627'offerwall' => 1 , //xp for every token in offerwall
628);
629
630 //emails
631$config['password_reset'] = array(
632'email' => 'noreply@faucetgamescript.com',
633'name' => 'Demo FaucetGameScript',
634);
635
636
637
638///faucets vars
639$config['url_for_shortlink'] = 'pimping-auto.cryptdough.co.uk';
640$config['faucet_proxy_warnings'] =5; // show X warning of using proxy/vpn on faucet claim before block account
641$config['faucet_c2f'] =25; // captcha 2 fails no. will block withdraw
642$config['faucet_claims_c2f'] =10; // faucetclaims before show 2nd captcha.
643$config['faucet_claims_daily'] = 20; // this limit is global, Not for every coin.
644$config['task_shortlink_time'] = 300; // in sec # max time allowed to user to visit the shortlink in Tasks
645
646$config['referral_commission'] =15; // -> (15 = 15% , 25= 25% etc)
647$config['iphub_key'] ="MjYxMzpyMTFZaGZVRHJKV3dWY0FSWFhneEp0UnNDQzdyQm9OQw==";
648
649
650
651
652///ADMIN
653
654$config['admin_password_timer'] = 15; // minutes -- time until you need to enter again the password to acces the admin panel
655$config['coin_remove'] =TRUE; // TRUE- will give a option to remove the coin stats from database in admin panel
656$config['log_per_page'] =50;
657
658
659//site captcha
660$config['captcha_dev'] = TRUE; // when its on TRUE , captcha will be ignored, use it for test only , for running site use FALSE
661
662//solvemedia details
663
664$config['solvemedia_challengekey'] ="YoWKXQWBQFN2QaBcJ33.RSK7rrBR34Qg"; // c-key / public
665$config['solvemedia_privkey'] ="LoXZIJ3VwlSlow89ByHDIioCyhGa3xA"; // v-key / private
666$config['solvemedia_hashkey'] ="99X5VDyDq0DJbt9ZiYHMCVWmIVDCQOm4"; // h-key / private
667
668//recaptcha v2
669
670$config['recaptcha_sitekey'] ="6LdVzGEUAAAAAL4FUB4PaJxtk5DCxmQd6IG1ae6G"; // public
671$config['recaptcha_privatekey'] ="6LdVzGEUAAAAAK4RXlbJbpBhxXfLNLPurqe1Y474"; // private