I'm getting an error on www.realestateresourcecenter.com when I go to add a link.... We keep trying to reinstall the script from scratch and to see what we are missing, but it just keeps happening:
Fatal error: Call to undefined function: dowsncodes() in /home/realesta/public_html/classes/onelink.php on line 2039
Your second message indicates there may be some issues with switching attachments off as well, probably also related to the recent speed-increasing changes... but I can't reproduce that by switching attachments off. Are you getting the message on the suggest link page before or after submitting? Any other switches off that are on by default? Edit: Noticed that the attachments option was mistakenly appearing when the switch is off, fixed that.
In your admin panel under templates, open your "Show Links in Category" template.
By default this page shows all regular and reciprical links. It looks like you've modified this template so that it only shows recip links. The category you showed us has a "regular" link in it. You cant see it because your template is only set up to show reciprical links.
The area of the template in question is below
<IF {RECIPTOTAL}> <table cellpadding="5" cellspacing="10"> <!-- BEGIN RECIP LINKS --> ... bunch of stuff here ... <!-- END RECIP LINKS --> </table> </IF>
This checks to see if their are any reciprical links. If there are then it makes a table.
The script then cycles through everything between the the begin and end lines untill all reciprical links are shown.
If you want to show regular links then you need to go back to the default template, or just copy and paste the code used for reciprical links and change it to regular, like this.
<IF {REGULARTOTAL}> <table cellpadding="5" cellspacing="10"> <!-- BEGIN REGULAR LINKS --> ... bunch of stuff here ... <!-- END REGULAR LINKS --> </table> </IF>
I really thought I would get some better support or faster answers since I have the paid version.... You guys are really taking forever here.... It takes me about a day to ask a question and get an answer and I have been having the same trouble for days now...
As you can see, there is no <!-- BEGIN REGULAR LINKS --> section -- you've ordered it to only show reciprocal links by going through and specifically removing all of the HTML that was there for regular links. A quick glance or any file comparison tool will show you that it drastically differs from the default version. The script will continue doing whatever you specially edit it to force it to do... it can't show something when you remove all of the HTML related to that thing.
Well, what I did was download the file again, and simply upload it.... The problem did not fix itself... I then edited the file and changes recip to regular, and now it has started working, but the entire site is still buggy.... I cannot move a link from one catagory to another.. I also am having problems adding new catagories....
It would be nice, if I could simply pay for a fix...... Someone to go in and modify and make sure all features are working properly.... If someone goes in there and atleast spends 20 minuets testing, they will realise that it is not working properly...
0/5
1
2
3
4
5
This thread is closed, so you cannot post a reply.
Comments on Keep Getting Error
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
I'm getting an error on www.realestateresourcecenter.com when I go to add a link.... We keep trying to reinstall the script from scratch and to see what we are missing, but it just keeps happening:
Fatal error: Call to undefined function: dowsncodes() in /home/realesta/public_html/classes/onelink.php on line 2039
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
This was a recent bug when you have WSN Codes off -- get the latest files from the downloads area (or just switch WSN Codes on if you prefer).
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
I just took the files yesturday? Are they newer then that?
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
How do I switch WSN codes "on"? -----------
nevermind, I found it,,,, let me see if this works now..
________________
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
Now I have gotten to the submission page but get this error on submit:
Fatal error: Cannot instantiate non-existent class: attachment in /home/realesta/public_html/addeditfuncs.php on line 279
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
It seems a little buggy ---- I think a listing went in to the wrong catagory?
Do you have paid support / or paid modifications?
I'd like to have someone go in and make sure it is all working properly.
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
www.realestateresourcecente.../Real_Estate_Agents/Nevada
Link is there but not visible?
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
Your second message indicates there may be some issues with switching attachments off as well, probably also related to the recent speed-increasing changes... but I can't reproduce that by switching attachments off. Are you getting the message on the suggest link page before or after submitting? Any other switches off that are on by default? Edit: Noticed that the attachments option was mistakenly appearing when the switch is off, fixed that.
You can't see your link because you've modified your template to not show anything for non-reciprocal links: www.realestateresourcecente...s/default/displaylinks.tpl
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
Where do I change that reciprical link setting?
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
Would you want to do some paid support?
Forum Regular
Usergroup: Customer
Joined: Feb 19, 2004
Location: Michigan
Total Topics: 57
Total Comments: 185
In your admin panel under templates, open your "Show Links in Category" template.
By default this page shows all regular and reciprical links. It looks like you've modified this template so that it only shows recip links. The category you showed us has a "regular" link in it. You cant see it because your template is only set up to show reciprical links.
The area of the template in question is below
<IF {RECIPTOTAL}>
<table cellpadding="5" cellspacing="10">
<!-- BEGIN RECIP LINKS -->
...
bunch of stuff here
...
<!-- END RECIP LINKS -->
</table>
</IF>
This checks to see if their are any reciprical links. If there are then it makes a table.
The script then cycles through everything between the the begin and end lines untill all reciprical links are shown.
If you want to show regular links then you need to go back to the default template, or just copy and paste the code used for reciprical links and change it to regular, like this.
<IF {REGULARTOTAL}>
<table cellpadding="5" cellspacing="10">
<!-- BEGIN REGULAR LINKS -->
...
bunch of stuff here
...
<!-- END REGULAR LINKS -->
</table>
</IF>
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
I now have downloaded the original template and re-uploaded it...... This did NOT fix the problem....
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
I really thought I would get some better support or faster answers since I have the paid version.... You guys are really taking forever here.... It takes me about a day to ask a question and get an answer and I have been having the same trouble for days now...
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
The forum is a place for users, email is for more urgent matters, but you've already been told the problem and how to correct it.
You did not overwrite with the default template, since going to your site one can see that your template is this: www.realestateresourcecente...s/default/displaylinks.tpl
As you can see, there is no <!-- BEGIN REGULAR LINKS --> section -- you've ordered it to only show reciprocal links by going through and specifically removing all of the HTML that was there for regular links. A quick glance or any file comparison tool will show you that it drastically differs from the default version. The script will continue doing whatever you specially edit it to force it to do... it can't show something when you remove all of the HTML related to that thing.
You've also got some seemingly random stuff like sitting around in your template,
Member
Usergroup: Customer
Joined: Mar 18, 2006
Total Topics: 2
Total Comments: 17
Well, what I did was download the file again, and simply upload it.... The problem did not fix itself... I then edited the file and changes recip to regular, and now it has started working, but the entire site is still buggy.... I cannot move a link from one catagory to another.. I also am having problems adding new catagories....
It would be nice, if I could simply pay for a fix...... Someone to go in and modify and make sure all features are working properly.... If someone goes in there and atleast spends 20 minuets testing, they will realise that it is not working properly...