close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Login Redirect

Thread began 4/21/2011 10:53 am by frank423839 | Last modified 8/30/2011 1:00 pm by frank423839 | 1822 views | 3 replies

Jason ByrnesWebAssist

to accomplish this, you will need to add a new column to the users table to mark whether they have logged in before or not.

for the sake of example, lets cal the new column "loggedIn", set the default value to 0 so when they register this new column will be set to 0.

Next edit the security assist Authenticate user behavior on the login page.

On the third setp, you can select database columns to store in a session. click the plus button and select the loggedIn column.

You will also need to set the success redirect to be a PHP page, it should go to the main success page that you want most users to see if it is not the first login

on the success page, add the following code at line 1:

php:
<?php

@session_id();
if(
$_SESSION['loggedIn'] == "0"header("Location: firstLogin.php");
?>




on the firstLogin.php page, you will need to add an update record behavior to update the loggedIn column to 1, use the ID session created by the authenticate user behavior to tell it which record to update..

you should also add code to set the loggedIn session to 1:

php:
<?php

@session_start();
$_SESSION['loggedIn'] = 1;
?>

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...