A few issues with new Pro Version 1.2.... - eSyndiCat User Forums
eSyndiCat User Forums esyndicat directory software esyndicat support

Go Back   eSyndiCat User Forums > eSyndiCat Directory Software [FREE] > Common Questions

Common Questions Latest releases, patches, bugfixes and changes in eSyndiCat Directory Software free version. Feel really frustrated after having spent several hours trying to figure out what went wrong with your directory? Wait no more! Click the link above and post your issues. Right here. Right now.

Reply
 
Thread Tools Display Modes
Old 05-05-2006   #1
blaze2u
 
Join Date: Apr 2006
Posts: 36
blaze2u has disabled reputation
Default A few issues with new Pro Version 1.2....

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!!
__________________
Regards,

-- Mitch --
++++++++++++++++++++++++++++
Onsale Now!
The best place to find any item On
Sale Now! List your onsale item now!
++++++++++++++++++++++++++++
blaze2u is offline   Reply With Quote
Old 05-05-2006   #2
eddy2099
 
Join Date: Mar 2006
Posts: 127
eddy2099 has disabled reputation
Default

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.
eddy2099 is offline   Reply With Quote
Old 05-05-2006   #3
Vasily B.
Administrator
 
Vasily B.'s Avatar
 
Join Date: Sep 2005
Posts: 9,252
Vasily B. is on a distinguished roadVasily B. is on a distinguished roadVasily B. is on a distinguished roadVasily B. is on a distinguished roadVasily B. is on a distinguished roadVasily B. is on a distinguished road
Default

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 ***
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 ***
Code:
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
__________________
Subrion CMS - free open source php content management system
Business Directory Script - powerful php business directory software, Yellow Pages Script - the most advanced yellow pages php software
Vasily B. is offline   Reply With Quote
Old 05-05-2006   #4
blaze2u
 
Join Date: Apr 2006
Posts: 36
blaze2u has disabled reputation
Default

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
__________________
Regards,

-- Mitch --
++++++++++++++++++++++++++++
Onsale Now!
The best place to find any item On
Sale Now! List your onsale item now!
++++++++++++++++++++++++++++
blaze2u is offline   Reply With Quote
Old 05-07-2006   #5
blaze2u
 
Join Date: Apr 2006
Posts: 36
blaze2u has disabled reputation
Default

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.
__________________
Regards,

-- Mitch --
++++++++++++++++++++++++++++
Onsale Now!
The best place to find any item On
Sale Now! List your onsale item now!
++++++++++++++++++++++++++++
blaze2u is offline   Reply With Quote
Old 05-08-2006   #6
Vasily B.
Administrator
 
Vasily B.'s Avatar
 
Join Date: Sep 2005
Posts: 9,252
Vasily B. is on a distinguished roadVasily B. is on a distinguished roadVasily B. is on a distinguished roadVasily B. is on a distinguished roadVasily B. is on a distinguished roadVasily B. is on a distinguished road
Default

anyway, we are glad to help you
__________________
Subrion CMS - free open source php content management system
Business Directory Script - powerful php business directory software, Yellow Pages Script - the most advanced yellow pages php software
Vasily B. is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
New Pages feature issues Shannon Hutcheson Modifications 27 04-12-2010 04:21 PM
Version 1.2 - Some Bugs or issues Insider Bug Reports 10 08-14-2006 03:33 AM
Issues with FREE version nexicom Installation and Updates 4 05-22-2006 05:43 AM
Captcha Issues with v1.2 eddy2099 Installation and Updates 17 05-15-2006 09:10 AM


All times are GMT. The time now is 02:25 PM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Testimonials | Articles | Support | Documentation | Privacy Policy | License | Affiliates | Contact Us | SEO Resources