PDA

View Full Version : A few issues with new Pro Version 1.2....


blaze2u
05-05-2006, 07:09 AM
Hi! Love the new version -- very cool and I am having fun! :) There are a few issues though and thought someone might be able to help me out.

For starters, the price plans only show the prices, not the titles of the prices, duration or descriptions. Is there a possible way to fix this? It is confusing if someone sees FREE, $5, $10, $25. They don't know what the prices are exactly for.

The reciprocal links field is very confusing to me, because if a person is paying for a sponsored ad or featured ad, then they shouldn't have to do a reciprocal link, should they? But if they don't, it says "You must fill out the reciprocal link." If I disable the reciprocal link check within the admin, then anyone can add their link without a reciprocal link. This doesn't make sense to me because people who pay shouldn't have to add a reciprocal link, whereas the free link submission should require this. Am I missing something here?

When working with pages in v1.2 Pro, I have the following problems:

1) If a word has an apostrophe such as "haven't", it displays the word like "haven\'t".

2) Url links do not work in the pages. It adds a homesite prefix to the url, such as http://www.link-to-wherever.com looks like:

http://www.mysite.com/"http://www.link-to-wherever.com/their-page.html/"

3)

tags do not work correctly in the pages either. They are being displayed as a
tag. So if I want to start a new paragraph, I have to substitue

tags with

.

Are there fixes for these issues? It's amazing to me how cool this script really is -- and how the only issues I could find were the ones I just mentioned above. I must have combed through the entire script in the last 36 hours straight too! (Ha!)

Great job folks and keep up the good work!!

eddy2099
05-05-2006, 09:10 AM
As for the price plan, I made the same mistake too and it is all because I did not read the instructions. After you add the price plan, it shows the tags to add to the language file. Once you add that, it would show up in the price plan.

Yes, I agree with the Reciprocal Links Fields comments. It be nice to have it as Free with Recip, Paid without Recip. Also since I would have something like 1 price plan as $5 for 1 month, there should be an option for the users to pay for another month or upgrade their plans.

Simon Gooffin
05-05-2006, 01:46 PM
Hi guys,
Thanks for positive words about our script :)

eddy2099 is right about plans. It seems you did not add new lines to your language file. Do this and you will have plans descriptions on your link submission page.

I also agree with you about reciprocal checking. Actually you could modify the script yourself. Please make the following changes

*** open suggest-link.php ***

*** find the following code ***
if ($gDirConfig['reciprocal_domain'])
{
if (get_domain($_POST['reciprocal']) != $link['domain'])
{
$error =true;
$msg .= " {$gDirLang['error_reciprocal_domain']}";
}
else
{
$link['recip_valid'] = check_reciprocal($tmp['reciprocal']);
if (!$link['recip_valid'])
{
$error = true;
$msg .= " {$gDirLang['error_reciprocal_link']}";
}
}
}
else
{
$link['recip_valid'] = check_reciprocal($tmp['reciprocal']);
if (!$link['recip_valid'])
{
$error = true;
$msg .= " {$gDirLang['error_reciprocal_link']}";
}
}

*** change it to the following ***

if (!$_POST['plan'])
{
if ($gDirConfig['reciprocal_domain'])
{
if (get_domain($_POST['reciprocal']) != $link['domain'])
{
$error =true;
$msg .= " {$gDirLang['error_reciprocal_domain']}";
}
else
{
$link['recip_valid'] = check_reciprocal($tmp['reciprocal']);
if (!$link['recip_valid'])
{
$error = true;
$msg .= " {$gDirLang['error_reciprocal_link']}";
}
}
}
else
{
$link['recip_valid'] = check_reciprocal($tmp['reciprocal']);
if (!$link['recip_valid'])
{
$error = true;
$msg .= " {$gDirLang['error_reciprocal_link']}";
}
}
}

This mod will allow you to check for reciprocal link when you do not submit sponsored link ;)

#2. Can you please provide me an url where you have a problem with ' apostrophe problem?
Let's solve these issues and later get back to the others ;)

blaze2u
05-05-2006, 05:08 PM
The apostrophe problem can be found at one of the new pages I created. I used the "view source" option and added the article by copying and pasting from my html editor. Just simple coding really -- such as

tags and
tags. But the

tags were acting like
tags, so if I wanted a double space, I had to change all the

tags to

tags.

Here is the link:

http://www.affiliateprogramshub.com/particles.html

blaze2u
05-07-2006, 09:43 PM
Edited: I actually found that there was another thread with the same problems, so I found some answers there. I suppose the whole quotation thing will have to be solved by copying and pasting in phpmyadmin for now. Thanks.

Simon Gooffin
05-08-2006, 09:30 AM
anyway, we are glad to help you