Mucore xampp 1.7.1/1.7.7 problems
ok .... with 1.7.1 i have problems with slow loading but working status and ranking codes (for example at the top-left part of the screen there is server status and top-right there is top5 ranking but all the pages are loading slow ... how to fix this ?
with 1.7.7 i have the opposite problems .... fast loading but status and ranking codes are not working ... how to fix at least one of these ?
ohh and forgot to say ... 1.0.8 core :)
Re: Mucore xampp 1.7.1/1.7.7 problems
If you use ODBC method on config
be sure db host is empty
like $core['db_host'] = "";
for rest errors, set debug to 1 on config.php
$core['debug'] = '1';
log in admincp, then go the page and make ss of errors.
3 Attachment(s)
Re: Mucore xampp 1.7.1/1.7.7 problems
Tests uploaded with debug mode enabled on 1.7.7
Re: Mucore xampp 1.7.1/1.7.7 problems
Quote:
Originally Posted by
Delcho Spasov
Tests uploaded with debug mode enabled on 1.7.7
add to index.php of ur template/NAME/there
Code:
<?php
mssql_connect($core['db_host'],$core['db_user'],$core['db_password']);
mssql_select_db($core['db_name']);
?>
and test
Re: Mucore xampp 1.7.1/1.7.7 problems
still the same as on the 3rd pic (test2.jpg)
is there a way just to fix the slow loading on 1.7.1 ?
Re: Mucore xampp 1.7.1/1.7.7 problems
Quote:
Originally Posted by
Delcho Spasov
still the same as on the 3rd pic (test2.jpg)
is there a way just to fix the slow loading on 1.7.1 ?
what method you use to connect to the db? because if odbc, server status need to be rewrited to ADODB or PDO or odbc_connect
and for the slow loading i told you, if u use odbc, leave host empty, its the most common mistake by server owners which may result web to load slow.
Else its ur hosting/or and bad code.
Normally original default template load fast as h...
Re: Mucore xampp 1.7.1/1.7.7 problems
i thought the entire thing with the empty host is to fix the 1.7.7 page effect with the status ... sry for the misunderstanding ^^
im kinda new to these things :)
ok now it worked thx alot pal :)