Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Error while first start after installation
Post: RE: Error while first start after installation

make this changes in .htaccess AFTER installation or rename temp.htaccess to .htaccess
kirillaristov Installation & Setup 10 23,454 2013-01-24, 18:02:39
    Thread: Error while first start after installation
Post: RE: Error while first start after installation

I found root of the problem. FollowSymLinks turned off by default on my hosting.
kirillaristov Installation & Setup 10 23,454 2012-11-12, 03:53:12
    Thread: Error while first start after installation
Post: Error while first start after installation

I have installed get-simple on my new hosting, tried fist load and got 500 error.. I made little change in htaccess - from "Options -Indexes" to "Options -Indexes -MultiViews +FollowSymLinks" and it r...
kirillaristov Installation & Setup 10 23,454 2012-11-12, 03:12:08
    Thread: Function: tagCloud
Post: Function: tagCloud

Code: -- function tagCloud(){ $myPages=simplexml_load_string(menu_data('',true)); $minFont=14; // change to min font size $maxFont=20; // change to m...
kirillaristov Scripts & Components 20 54,903 2010-04-24, 01:11:12
    Thread: Disable page with Choose Theme
Post: Disable page with Choose Theme

I often using page with theme components, but for open its I must twice click: Theme -> Edit Components. When Im tired to do it, I opened admin/theme.php; comment all code and add Quote: -- header ...
kirillaristov Developer Discussions 1 5,430 2010-04-17, 01:54:47
    Thread: Replace Ereg to Preg_match
Post: Replace Ereg to Preg_match

I have find it in GS v. 2.01 Replace ereg to preg_match, because the ereg is deprecated function. admin/changedata.php; line 23 current code: Code: -- if ((!ereg(str_replace('http://www.', '', $SIT...
kirillaristov Developer Discussions 1 5,735 2010-03-24, 14:12:04
    Thread: Missing letter in php-script
Post: Missing letter in php-script

You not fixed it in 2.01! Turn ON debug mode and you will see many errors in admin/component.php line 55
kirillaristov Developer Discussions 7 16,890 2010-03-24, 12:49:13
    Thread: Turned off HTMLeditor and wanna delete unnecessary files
Post: Turned off HTMLeditor and wanna delete unnecessary...

I have turned off HTMLEditor in admin->settings and I won't plan to use it in future. Which files can I delete from GS folders? Now head in admin's pages is Code: -- #metadata_wind...
kirillaristov Off Topic 2 11,051 2010-03-05, 02:55:59
    Thread: Replace Echo to Return
Post: Replace Echo to Return

I think, will be better, if each function RETURN variable in main code, but do not ECHO. Because you will operate with return value in main code. Simple ex: I have removed link in header to main page...
kirillaristov Developer Discussions 0 3,929 2010-02-27, 07:01:45
    Thread: .html in url
Post: .html in url

I recommend remove link to main page from menu when current page is main. (/admin/inc/theme_functions.php, lines 365-371) Code: -- if ($url_nav == 'index' and $currentpage == 'index') $full_nav ...
kirillaristov Off Topic 3 17,010 2010-02-27, 02:57:04
    Thread: .html in url
Post: .html in url

My solution only works if you are using single-level navigation, I have tested it in GetSimple v2.0 For first you must enable pretty urls in admin -> settings, then edit admin/inc/theme_functions.php,...
kirillaristov Off Topic 3 17,010 2010-02-27, 00:54:18
    Thread: Overlook determine global variable
Post: Overlook determine global variable

cool! :)
kirillaristov General Questions and Problems 5 15,655 2010-02-26, 13:26:03
    Thread: Overlook determine global variable
Post: Overlook determine global variable

no, you determine $inter in first IF, but in last ELSE the $inter is null. See last ELSE Code: -- if (!$a) { if ($urls != '') $inter = 'index.php?id='; else ...
kirillaristov General Questions and Problems 5 15,655 2010-02-26, 13:11:20
    Thread: Missing letter in php-script
Post: Missing letter in php-script

GetSimple v2.0; admin/components.php, line 55: I should think so, its right part of code: Code: -- $ct = 0; $coArray = array(); foreach ($ids as $id) { if ( ($title[$ct] != null) && ($value[$ct...
kirillaristov Developer Discussions 7 16,890 2010-02-26, 12:31:58
    Thread: Too much convert functions - unpredictable result with non-english
Post: Too much convert functions - unpredictable result ...

You are using this queue of convert in admin/setting.php, line 60 Code: -- $SITENAME = htmlentities(stripslashes(strip_tags(html_entity_decode($_POST['sitename'], ENT_QUOTES)))); -- The combination ...
kirillaristov Developer Discussions 0 3,493 2010-02-26, 11:52:11
    Thread: Replace Ereg to Preg_match
Post: Replace Ereg to Preg_match

Replace ereg to preg_match, because the ereg is deprecated function. admin/inc/template_function.php; function check_email_address (); line 382 new code: Code: -- function check_email_address($email...
kirillaristov Developer Discussions 2 8,817 2010-02-26, 10:17:06
    Thread: Overlook determine global variable
Post: Overlook determine global variable

In GetSimple v2 I have found overlook determine global variable: admin\inc\theme_functions.php; function get_page_url (); line 74: I have add global $inter; Without it the page title in header is inc...
kirillaristov General Questions and Problems 5 15,655 2010-02-26, 09:52:49