Home Private Messages Search
CPG Dragonfly™ CMS Dedicated Server & Bandwidth Sponsored by DedicatedNOW
Toggle Content
 
Forums ⇒ DragonflyCMS ⇒ Add-Ons & Blocks ⇒ [solved] Link to Register user doesn't work


[solved] Link to Register user doesn't work
Need help creating a block or add-on, or you have created or modified a block/add-on that works in Dragonfly CMS and it meets the CPG Security Requirements? Do you have feedback about a specific add-on? Here is the place to post. Read the announcements here first!.
Go to page 1, 2  Next
Post new topic    Reply to topic    Printer Friendly Page     Forum Index ⇒  Add-Ons & Blocks

View previous topic :: View next topic  
Author Message
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 8:49 am
Post subject: [solved] Link to Register user doesn't work

Hi!, i have a big prob..after this:
i moved my df site to my home site and udated df.
Ps. All works but no activation email link, that gives a white page and after says no users has that name in database.
to try:
the old site was pesmagazine.net
the new:
http://www.angel777.com/pesmagazine
Seem that only the generated activation link results broken or not correct

Thanks!


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 11:58 am
Post subject: Re: Link to Register user doesn't work

now i installed accountPluss and it's very good, i think i relved, but now the activation link it's not clickable i don't know why, lol


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
Dizfunkshunal
Platinum Supporter
Platinum Supporter

Offline Offline
Joined: Mar 23, 2006
Posts: 2064

PostPosted: Mon Oct 10, 2011 4:27 pm
Post subject: Re: Link to Register user doesn't work

Try this modules/you_account/registerphp

Change line 400
PHP:
$message .= _TOFINISHUSER."\n\n $finishlink\n\n"; //<- Is the activation link in email. DJMaze
to
PHP:
$message .= _TOFINISHUSER."<br /><a href=\"$finishlink\">$finishlink</a>"; //<- Is the activation link in email. DJMaze
let me know if it works

_________________
Diz Web Design Status: Open (Use of resources requires registration.)

Dizfunkshunal's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Multiple Setups


Last edited by Dizfunkshunal on Mon Oct 10, 2011 4:50 pm; edited 1 time in total
Back to top
View user's profile Send e-mail Visit poster's website Yahoo Messenger
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 4:36 pm
Post subject: Re: Link to Register user doesn't work

Not yet make that mod, but now
I received many mail erros like this:
(note: i tried to register myself and maybe works)

On /pesmagazine/index.php?name=Your_Account&file=register&reactivate=****&check_num=****************************
While executing query "DELETE FROM cms_users_pass
WHERE time < 1318169860"

the following error occured: Table '********.cms_users_pass' doesn't exist

In: /web/htdocs/www.angel777.com/home/pesmagazine/modules/Your_Account/register.php on line: 499

i put **** for censure numbers =)


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
Dizfunkshunal
Platinum Supporter
Platinum Supporter

Offline Offline
Joined: Mar 23, 2006
Posts: 2064

PostPosted: Mon Oct 10, 2011 4:51 pm
Post subject: Re: Link to Register user doesn't work

Your missing a table in the database. after you uploaded the files for accountplus did you got to you module admin and click on Your account module edit and click the upgrade link?

If you did the table aint there regardless run this sql query to add it
Code::
CREATE TABLE `YOUTABLEPREFIX_users_pass` (
  `id` int(11) NOT NULL auto_increment,
  `user_id` int(11) NOT NULL,
  `username` varchar(50) NOT NULL,
  `user_email` varchar(255) NOT NULL,
  `user_password` varchar(40) NOT NULL,
  `time` int(11) NOT NULL default '0',
  `new_username` varchar(50) NOT NULL,
  `new_email` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Change YOUTABLEPREFIX to your table prefix

_________________
Diz Web Design Status: Open (Use of resources requires registration.)

Dizfunkshunal's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Multiple Setups


Last edited by Dizfunkshunal on Mon Oct 10, 2011 5:07 pm; edited 1 time in total
Back to top
View user's profile Send e-mail Visit poster's website Yahoo Messenger
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 4:58 pm
Post subject: Re: Link to Register user doesn't work

mmm maybe no?! Very Happy edit and save the My account module?


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 5:00 pm
Post subject: Re: Link to Register user doesn't work

i will try thanks..if already done maybe i can broke something?xD


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
Dizfunkshunal
Platinum Supporter
Platinum Supporter

Offline Offline
Joined: Mar 23, 2006
Posts: 2064

PostPosted: Mon Oct 10, 2011 5:05 pm
Post subject: Re: Link to Register user doesn't work

if the table is there do not run that query! im editing the query to remove the drop statement. Your getting the error can no find table the table is not there but make sure its not there just for giggles us phpmyadmin

_________________
Diz Web Design Status: Open (Use of resources requires registration.)

Dizfunkshunal's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Multiple Setups
Back to top
View user's profile Send e-mail Visit poster's website Yahoo Messenger
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 5:30 pm
Post subject: Re: Link to Register user doesn't work

now i have this from error email reports:

On /pesmagazine/index.php?name=Your_Account
While executing query "INSERT INTO cms_users_pass
(id, user_id, username, user_email, user_password, time)
VALUES
(DEFAULT, '8036', '***users name***', '***users mail*****', '***************', '***********')"

the following error occured: Table '*********.cms_users_pass' doesn't exist

In: /web/htdocs/www.angel777.com/home/pesmagazine/modules/Your_Account/index.php on line: 105


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 5:59 pm
Post subject: Re: Link to Register user doesn't work

This error come out on lost password request also


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
Dizfunkshunal
Platinum Supporter
Platinum Supporter

Offline Offline
Joined: Mar 23, 2006
Posts: 2064

PostPosted: Mon Oct 10, 2011 6:10 pm
Post subject: Re: Link to Register user doesn't work

then the table is not there
need to add it run the query i put in above i edited it. it wont do no damage just add the table if its not there.

_________________
Diz Web Design Status: Open (Use of resources requires registration.)

Dizfunkshunal's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Multiple Setups
Back to top
View user's profile Send e-mail Visit poster's website Yahoo Messenger
Dizfunkshunal
Platinum Supporter
Platinum Supporter

Offline Offline
Joined: Mar 23, 2006
Posts: 2064

PostPosted: Mon Oct 10, 2011 8:25 pm
Post subject: Re: Link to Register user doesn't work

I just noticed something you using DF 9.2. if you just downloaded accountplus it may be for DF 9.3 you should upgrade DF Core before adding already upgraded modules.

_________________
Diz Web Design Status: Open (Use of resources requires registration.)

Dizfunkshunal's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Multiple Setups
Back to top
View user's profile Send e-mail Visit poster's website Yahoo Messenger
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 9:27 pm
Post subject: Re: Link to Register user doesn't work

Sorry but i have 9.3 but no update in sign

i have the same error..example
the table i think exist..but not works?
www.angel777.com/pesma...=pass_lost

Return the error, Sad


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
angel777
Nice poster
Nice poster

Offline Offline
Joined: Jan 10, 2007
Posts: 81
Location: Toscana Pistoia Italy
PostPosted: Mon Oct 10, 2011 11:07 pm
Post subject: Re: Link to Register user doesn't work

Dizfunkshunal wrote:
Your missing a table in the database. after you uploaded the files for accountplus did you got to you module admin and click on Your account module edit and click the upgrade link?

If you did the table aint there regardless run this sql query to add it
Code::
CREATE TABLE `YOUTABLEPREFIX_users_pass` (
  `id` int(11) NOT NULL auto_increment,
  `user_id` int(11) NOT NULL,
  `username` varchar(50) NOT NULL,
  `user_email` varchar(255) NOT NULL,
  `user_password` varchar(40) NOT NULL,
  `time` int(11) NOT NULL default '0',
  `new_username` varchar(50) NOT NULL,
  `new_email` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Change YOUTABLEPREFIX to your table prefix
i think i fixed the prob..xD thanks!!!


angel777's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Linux/NC/5.1.56/5.3.8/ 9.3
Back to top
View user's profile Visit poster's website MSN Messenger
Phoenix
• Many Posts •
• Many Posts •

Offline Offline
Joined: Apr 19, 2004
Posts: 8799
Location: Netizen
PostPosted: Mon Oct 10, 2011 11:30 pm
Post subject: Re: Link to Register user doesn't work

If you did not upgrade Your Account you will still have further problems.

If you click the edit link in admin.php?op=modules your version should be 2.0.1
Quote::
Editor's Note:
Installation notes:

* upload all directories and the two single files to root
* also advisable to upload the theme files to your current theme(s)
* upgrade the Your_Account module through admin modules to add table cms_users_pass and a couple of config flags

_________________
DonationsPro for DragonflyCMS, SMF, MyBB, vBulletin

Phoenix's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website Photo Gallery
Display posts from previous:   
Post new topic    Reply to topic    Printer Friendly Page    Forum Index ⇒  Add-Ons & Blocks
Page 1 of 2
All times are GMT
Go to page 1, 2  Next



Jump to:  


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum


 
   Toggle Content User Info

Welcome Anonymous

Nickname
Password
(Register)

   Toggle Content Last CVS commits
· Fixed .ico Expires header.
· Removed domain name from cookies so subdomains wont access them anymore.
· CSS and JS, case insensitives.
· CSS and JS, send correct HTTP 1.1 headers and fixed issues where themes and...
· Further security class improvements.
· 301 redirects on LEO changes
· Option to force 3xx http status codes
· Validate googlebot.com and google.com crawlers.
· CCBot
· Rss with etag and atom.

อ่านต่อ...

   Toggle Content Community

Support for DragonflyCMS in a other languages:

Deutsch
Español

   Toggle Content X-links
UltraEdit Browse Happy logo Firefox MySQL PostgreSQL Valid CSS! Valid XHTML 1.0! Unicode Encoded Badge NukeBiz Resources Raven DragonflyCMS Dedicated Now InsideSupport Lampe Berger

You are seeing squares or questionmarks on this page?

All content of this website is copyrighted by the Creative Commons NC-SA
The logos and trademarks used on this site are the property of their respective owners
We are not responsible for comments posted by our users, as they are the property of the poster.
Our server runs on a P3 1.2GHz with 512MB RAM with no accelerators
Support GoPHP5.org
Interactive software released under GNU GPL, Code Credits, Privacy Policy