Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

SEO

Asked Modified Viewed 6,044 times
J
jak17
J
jak17 10
  • Member, joined since
  • Contributed 155 posts on the community forums.
  • Started 46 threads in the forums
  • Started this discussions
asked
Member

I have a question. yesterday and today Google PageRank was updated. Sites that started up at the same time as mine such as art4fusion.com and leomessi.com.pl both got pagerank 2. they also use php-fusion. My site, PolishGoals.com has 32,650 unique views and 500 users. the forum is much more active then theirs, and I have more news articles. They only have 10,000 and 1,500 unique views, respectively.

My site got a pagerank of... 0. It's been online for 2 months. What's up with that? Any particular reasons? I decided to change the theme today, maybe that will help. does anyone have a clue as to why those sites which are visited less often then mine have pageranks of 2 and mine only has a 0??
0 replies

21 posts

T
The Sun
T
Everything revolves around The Sun!
  • Member, joined since
  • Contributed 55 posts on the community forums.
  • Started 10 threads in the forums
answered
Member

how are you seeing the pagerank?
0 replies
V
V I R U S
V
My signature is to damn big for you to see/Homdax.
  • Member, joined since
  • Contributed 80 posts on the community forums.
  • Started 17 threads in the forums
answered
Member

www.yacy.ru
0 replies
T
The Sun
T
Everything revolves around The Sun!
  • Member, joined since
  • Contributed 55 posts on the community forums.
  • Started 10 threads in the forums
answered
Member

What is that link to?
0 replies
V
V I R U S
V
My signature is to damn big for you to see/Homdax.
  • Member, joined since
  • Contributed 80 posts on the community forums.
  • Started 17 threads in the forums
answered
Member

Enter there your page link (middle of screen) and it will show you your PR.
0 replies
A
afif
A
afif 10
  • Member, joined since
  • Contributed 183 posts on the community forums.
  • Started 12 threads in the forums
answered
Member

well, my site has 100000 unique views, 580 users and more than 1400 forum posts,
and i got google pagerank 3,

http://www.smsps.edu.my/news.php
0 replies
T
The Sun
T
Everything revolves around The Sun!
  • Member, joined since
  • Contributed 55 posts on the community forums.
  • Started 10 threads in the forums
answered
Member

I cannot understand a word on that page. Is there a pagerank in English?
0 replies
J
jak17
J
jak17 10
  • Member, joined since
  • Contributed 155 posts on the community forums.
  • Started 46 threads in the forums
  • Started this discussions
answered
Member

just get a google toolbar and you'll have it.

NOW can someone answer my question?!?!?!
0 replies
N
Nemke
N
Nemke 10
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 3 threads in the forums
answered
Junior Member

google toolbar doens't always show correct information, try using some other service.......i'm using www.mypagerank.net.....
0 replies
A
asakapa123
A
  • Newbie, joined since
  • Contributed 1 post on the community forums.
answered
Newbie

There are problems with google these days the toolbar gives wrong PR.
Edited by asakapa123 on 09-05-2008 14:09,
0 replies
V
VoiD_BY
V
VoiD_BY 10
  • Newbie, joined since
  • Contributed 5 posts on the community forums.
  • Started 1 thread in the forums
answered
Newbie

Use pageranktool.net, it show pagerank on all datacenters
PR don't depends on visitors and viewings your site.
(sorry for my english :)
0 replies
K
KonickMultimedia
K
Free Online Games: http://www.gamescut.com
  • Member, joined since
  • Contributed 76 posts on the community forums.
  • Started 9 threads in the forums
answered
Member

i know whats wrong. You get pagerank on http://yoursite.com, but PHP Fusion redirects to http://yoursite.com/news.php, so it will show 0 pagerank

I suggest you to remove that redirect in index.php ... Its very SEO unfriendly
0 replies
V
VoiD_BY
V
VoiD_BY 10
  • Newbie, joined since
  • Contributed 5 posts on the community forums.
  • Started 1 thread in the forums
answered
Newbie

The redirect very badly influences indexation by search engines, but PR here at anything
0 replies
J
Josso
J
Josso 10
–––
Without faith, nothing is possible. With it, nothing is impossible
  • Senior Member, joined since
  • Contributed 309 posts on the community forums.
  • Started 1 thread in the forums
answered
Senior Member

Quote

f1r3bl00d wrote:
i know whats wrong. You get pagerank on http://yoursite.com, but PHP Fusion redirects to http://yoursite.com/news.php, so it will show 0 pagerank

I suggest you to remove that redirect in index.php ... Its very SEO unfriendly

I totally agree. :)
0 replies
A
AusiMods
A
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
answered
Junior Member

In my own opinion although the method may not be suitable in the eyes of some the following is the ideal answer to the current index.php problem.
I have used this on all client sites and found that it works well.
Use it if you want or learn from it whatever takes your fancy :)


//redirect($settings['opening_page']);
if(file_exists($settings['opening_page'])) {
   include_once $settings['opening_page'];
}
else {
   require_once THEMES."templates/header.php";
   opentable("Welcome");
   echo '<div align="center">It seems there is a misconfiguration setting and this page is not available at this time<br> Please use the navigation links to browse the site.</div>';
   closetable();
   require_once THEMES."templates/footer.php";
}



Warning: This code is from current client development files for version 7 you will need to alter the header and footer includes to use this in version 6 sites.
0 replies
J
Josso
J
Josso 10
–––
Without faith, nothing is possible. With it, nothing is impossible
  • Senior Member, joined since
  • Contributed 309 posts on the community forums.
  • Started 1 thread in the forums
answered
Senior Member

It should look like this (cause you can't include a "GET"-page. eg: viewpage.php?id=5)

//redirect($settings['opening_page']);
if(file_exists($settings['opening_page']) && !strstr($settings['opening_page'],"?")) {
include_once $settings['opening_page'];
}
else {
require_once THEMES."templates/header.php";
opentable("Welcome");
echo '<div align="center">It seems there is a misconfiguration setting and this page is not available at this time<br> Please use the navigation links to browse the site.</div>';
closetable();
require_once THEMES."templates/footer.php";
}


But you have to include maincore.php (for getting the $settings) and you then you already have included maincore.php. (You include it in index.php and in news.php)
:@
Edited by Josso on 11-05-2008 14:40,
0 replies
— 3 months later —
J
jak17
J
jak17 10
  • Member, joined since
  • Contributed 155 posts on the community forums.
  • Started 46 threads in the forums
  • Started this discussions
answered
Member

3 months later and my site now has a PageRank of 5. Looks like php-fusion being bad for your pagerank is a myth.

My site is 5 months old and has a PR of 5. :)
I dont think i'll ever understand Google.
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Quote

jak17 wrote:
3 months later and my site now has a PageRank of 5. Looks like php-fusion being bad for your pagerank is a myth.

My site is 5 months old and has a PR of 5. :)
I dont think i'll ever understand Google.

Well, you probably hadn't submitted the URL to Google. Ever think of that? Just because your site exists does NOT mean Google knows about it. You have to submit it to Google here. But if any page on your site shows up on Google, DON'T resubmit it! But Google may have been indexing a site such as PHPFusion (it doesn't matter which site, as long as it had a link to your domain), and it followed a link to your site and indexed it. So now it has been entered into Google's database, and that's why you don't need to resubmit it.

A quick note: resubmitting your URL to Google AFTER Google has your domain in it's database will NEVER EVER get your site indexed faster.


I should know these things - hence my username. ;)
0 replies
J
jak17
J
jak17 10
  • Member, joined since
  • Contributed 155 posts on the community forums.
  • Started 46 threads in the forums
  • Started this discussions
answered
Member

lol I submitted my site to google a week after it was registered and it showed up in the search 3 days later.

Maybe the large amount of backlinks that I have boosted my pagerank? Pretty much all of them are related. I have a soccer site, and hence my backlinks are from soccer sites. I think that boosts the PR a lot. Getting irrelevant links hurts your PR more than it helps it in my opinion :/ I think it makes the links look worthless in the eyes of Google, as they are evidently there to only boost PR rather than to help users find familiar sites.
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Quote

jak17 wrote:
lol I submitted my site to google a week after it was registered and it showed up in the search 3 days later.

Maybe the large amount of backlinks that I have boosted my pagerank? Pretty much all of them are related. I have a soccer site, and hence my backlinks are from soccer sites. I think that boosts the PR a lot. Getting irrelevant links hurts your PR more than it helps it in my opinion :/ I think it makes the links look worthless in the eyes of Google, as they are evidently there to only boost PR rather than to help users find familiar sites.

It all depends. But if your link is posted in a lot of places that "I" constantly index, then "I'll" be led to that page over and over, and as a result the PR will be boosted. But if there are a few scattered links here and there, chances are it won't do anything.
0 replies

Category Forum

General Discussion

Labels

None yet

Statistics

  • Views 0 views
  • Posts 21 posts
  • Votes 0 votes
  • Topic users 12 members

12 participants

A
A
  • Junior Member, joined since
  • Contributed 31 posts on the community forums.
  • Started 1 thread in the forums
G
G
www.gojuryu.net
Online since 1998 & running PHP-Fusion since 2004
  • Member, joined since
  • Contributed 105 posts on the community forums.
  • Started 16 threads in the forums
J
J
Josso 10
–––
Without faith, nothing is possible. With it, nothing is impossible
  • Senior Member, joined since
  • Contributed 309 posts on the community forums.
  • Started 1 thread in the forums
V
V
My signature is to damn big for you to see/Homdax.
  • Member, joined since
  • Contributed 80 posts on the community forums.
  • Started 17 threads in the forums
A
A
afif 10
  • Member, joined since
  • Contributed 183 posts on the community forums.
  • Started 12 threads in the forums
A
A
  • Newbie, joined since
  • Contributed 1 post on the community forums.
N
N
Nemke 10
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 3 threads in the forums
T
T
Everything revolves around The Sun!
  • Member, joined since
  • Contributed 55 posts on the community forums.
  • Started 10 threads in the forums
J
J
jak17 10
  • Member, joined since
  • Contributed 155 posts on the community forums.
  • Started 46 threads in the forums
  • Started this discussions
K
K
Free Online Games: http://www.gamescut.com
  • Member, joined since
  • Contributed 76 posts on the community forums.
  • Started 9 threads in the forums
V
V
VoiD_BY 10
  • Newbie, joined since
  • Contributed 5 posts on the community forums.
  • Started 1 thread in the forums
G
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet