Login     Sign up
Jcow Pro 5.1.1103014
tuya (@tuya)
Join date: Mar 5th 2011
Community posts: 49
View Profile
Send Message

Jcow Pro 5.1.1103014

How do I change link "my homepage"?
I want to add " /index.php?p= "

161 months ago
john mor (@johninhell)
Join date: Oct 15th 2010
Community posts: 159
View Profile
Send Message

[quote=tuya]Jcow Pro 5.1.1103014

How do I change link "my homepage"?
I want to add " /index.php?p= " [/quote]

Try this..

Goto my\config.php
Find the code
$ubase = $uhome.'/index.php?p=';
Put "//" sign before the code, that means it will look like
//$ubase = $uhome.'/index.php?p=';
Next from the code
//$ubase = $uhome.'/';
delete "//",that means it will look like
$ubase = $uhome.'/';

159 months ago
tuya (@tuya)
Join date: Mar 5th 2011
Community posts: 49
View Profile
Send Message

I have another problem

.my_jcow_home(). Where is this code, i want to change

because main page looks like internet explorer

[url]http://www.####.com/index.php?p=feed[/url]

but in mozilla

[url]http://www.####.com/feed[/url]

159 months ago
john mor (@johninhell)
Join date: Oct 15th 2010
Community posts: 159
View Profile
Send Message

u mean ur main page :- like

http://community.jcow.net
is showing as :-

http://community.jcow.net/index.php?p=feed

&

http://community.jcow.net/feed

????

159 months ago
tuya (@tuya)
Join date: Mar 5th 2011
Community posts: 49
View Profile
Send Message

when I click on the website logo
i don't have problem internet explorer
[url]http://community.jcow.net/index.php?p=feed[/url]
it opens up internet explorer

&
Mozilla is also a problem.
[url]http://community.jcow.net/feed[/url]
in mozilla opens the wrong

mozilla 'index.php?p=feed' does not open

I changed this code
[code]<?php
if ($client['id']) {
$home = url('dashboard');
}
else {
$home = uhome();
}
echo '<a href="'.my_jcow_home().'"><img src="'.uhome().'/themes/default/logo.png" /></a>';
?>
</td>[/code]

so
[code]
<?php
if ($client['id']) {
$home = url('feed');
}
else {
$home = uhome();
}
echo '<a href="'.$home.'"><img src="'.uhome().'/themes/default/logo.png" /></a>';
?>[/code]
thanks

159 months ago