Archive

Archive for April, 2009

SEO Credential and Our methods

April 29th, 2009

We propose to provide SEO service for the real estate site using our existing expertise. We propose that the site be optimized for all the inner pages and location based searches. Here is the detail.

How we do it.


We use only legitimate and manual methods. We do not use automated or robotic methods to achieve SEO. Here is the list of the SEO services we offer.

1. Analyze the site for SEO worthiness and suggest changes

2. Create blogs and generate back links.

3. Join relevant forums and create signature backlinks.

4. Post on Social Bookmarking sites.

5. Provide back links from our existing list of relevant websites (additional charges apply).

6. Manual Directory submission.

7. Online Press releases ( additional charge apply)

8. Analyze and identify the relevant keywords. Find which keywords people search. Optimize ALL inner pages for that keyword.

The above represent a part of the effort we put on SEO effort. Complete list to be provided once we finalize the deal.

Our SEO Credentials

We have brought several pages on the #1 spot in google. Here is list ( Indian Grocery Store Locator #1 out of 242,000 means If you type ” Indian Grocery Store Locator” in google. com it results in 242,000 pages and our page is #1).

http://diggsamachar.com

1. Indian Grocery Store Locator #1 out of 242,000
2. Indian ADR – #1 out of 4,250,000
3. Chinese ADR – #2 out of 766,000

http://referencedesigner.com

1. Allegro PCB Tutorial #1 out of 9,160
2. PADS Tutorial #2 out of 570,000
3. SI Tutorial #2 out of 4,340,000

There are many more, but this will give you some idea.

We should note that the SEO for generic term like “Real Estate” etc. is not possible. However, we will try our best and optimize for more specific terms.We can also provide traffic at additional cost.

Programming

Adding Google Analytics in dzoic Handshakes

April 27th, 2009

Question : Where the heck should I add Google Analytics in dzoic handshakes.

Answer :

you can add it to..

/themes/[your template folder]/templates/source/footer.tpl

i dont know exact location of footer template but it should be somewhere smiler just look for footer..

Update

I get the following error when I do that

Fatal error: Smarty error: [in footer.tpl line 25]: syntax error: unrecognized tag ‘var’ (Smarty_Compiler.class.php, line 583) in /home/dehati/public_html/smarty/Smarty.class.php on line 1095

For example, if you are using handshake plain add it in

/themes/handshakes_plain/templates/source/footer.tpl

Add the analytics code just above .

Programming ,

DZOIC – Showing only members with photos

April 25th, 2009

DZOIC – Showing only members with photos

The Default dzoic plain theme shows 5 recent members. However, these 5 members may or may not have photos. We want to show up only those members with photos. Here is the simple modificatoin.

Open
modules/recent.php
Original

AND m.mem_id = p.mem_id
AND m.verified=’1′
ORDER BY p.joined DESC
LIMIT 0,5″;

Change to

AND m.mem_id = p.mem_id
AND m.verified=’1′
AND p.photo !=’awaiting.gif’
ORDER BY p.joined DESC
LIMIT 0,5″;

Now you will see only those recent members with photos. Notice the addition of line

AND p.photo !=’awaiting.gif’

Programming , ,

Adding Join Button to Member Login Section of DZOIC Handshake

April 23rd, 2009

Someone asked me to add a Join link to the member login section in the handshake plane theme of the DZOIC Hand shake. Here was what I did.


Uncategorized

Changing width of dzoic handshake pagewidth

April 23rd, 2009

I am writing this to know how to change the page width of the dzoic from standard (about 760 pixels) to say 960 pixels.

Here is the information I have

OPEN /themes/yourtheme/gfx/style.css

Modify:
.page{
width: 960px;
}

.handler{
width: 960px;
margin: 0 auto;
padding: 0;
}

I will try and let you know if this was succesful.

OK Here is what I did. I changed the /themes/handshakes_plain/gfx/style.css as follows

Original Code

.handler{
width:782px;
margin:0 auto;
padding:0;
}
.page{
background-color: #FFFFFF;
text-align:left;
float:left;
width:782px;
border-right: 1px solid #C4C7CC;
border-left: 1px solid #C4C7CC;

Modified Code

.handler{
width:960px;
margin:0 auto;
padding:0;
}
.page{
background-color: #FFFFFF;
text-align:left;
float:left;
width:960px;
border-right: 1px solid #C4C7CC;
border-left: 1px solid #C4C7CC;

Basically I changed the width from 782 to 960. It increased the total width. However the first column width is still unchanged.

I tried
Original

.columnWide{
float:left;
width:555px;

Changed

.columnWide{
float:left;
width:733px;

This changed the width of the first column. The site looks a little bit better, I guess. Note that we will have to keep checking if it changed something else somewhere.

Uncategorized

List of sites developed

April 21st, 2009

Websites
1. http://obamat-shirt.us
1. http://slinfratech.com
2. http://mariahupgcollege.org/
3. http://rksmirzapur.org/

Portals

http://diggsamachar.com

http://votedlinks.com

http://panchtatva.org

Forums

http://diggsamachar.com/adrforum

http://referencedesigner.com/forum

Uncategorized