Tag Archives: ip

Multi-user page content


Have You ever needed a place, where every site user has it's own content, and You don't need to make hundreds of pages to achieve that?
In that case all You need is an Online Editable Page. Something pretty familiar if You've used the program for enought time. But how to make users able to use it for their own purposes?

Here is the preparation process:

  1. Add an Online Editable Page
  2. In Online Editable Page Settings (tab) check "User-Dependent Content". 
  3. If you wish, You can check the other two options as well.
  4. Add from macros EDITABLE AREA. It's the key (and main page tool) for entire idea to work.
  5. You can use the macros to put some extra info, like the USERS macro that will allow all user pages to be accessible.
  6. Again optional - you can protect the page so users see only their own page and content (in this case the USERS macro won't work).
  7. Once the Online Editable Page is prepared, go online and log in as Admin. 
  8. Give the users you want to be able to edit their own pages "Edit" access to this page
  9. Enjoy (maybe better test before that to be sure You indeed will enjoy).

 

 Some extra info about the admin:

  • As admin you can edit other users editable areas. Just log in to the page and select the user. Page content will change to selected user's one.
  • Default (all users) option will change to all users, that haven't changed their content to something else, but use the common one. For the other users changes has to be done per user.

Print  posted by atanas   General tags:  editable page • multiple • content • users   permalink
4.3 3

My PC uses an ISP with dynamic IP addressing, can I register?


EZGenerator checks your IP address upon registration.

Internet Service Providors with dynamic IP addressing do not pose a problem for you to register (or re-register) your EZGenerator software.


Print  posted by ief   Install/Registration tags:  IP • registration • limitation • license   permalink
0 0

Page Redirect


to redirect page (after few seconds) to different page, you can use html redirect (you can add this code in page settings --> advanced --> page scripts)

< meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html">

The above HTML redirect code will redirect your visitors to another web page instantly. The content="0; may be changed to the number of seconds you want the browser to wait before redirecting.


Print  posted by miro   General tags:  redirect • scripts   permalink
0 0

Scroll to given element on the page.


 

Some examples about how to scroll to a given page element.

All this code must be wrapped into <script type="text/javascript>custom code stays here</script> tags.

 

Scroll to the element on page load:

 

$(window).load(function() {

$('html, body').animate({ scrollTop: $("<selector>").offset().top},2000);

});

 

Scroll to the element on page ready:

 


$(document).ready(function() {

$('html, body').animate({ scrollTop: $("<selector>").offset().top},2000);

});

 

Scroll to the element on click:

 


$("<selector>").click(function{

$('html, body').animate({ scrollTop: $("<selector>").offset().top},2000);

});

 

2000 - Time in milliseconds (1000 ms = 1 s) that the animation needs to complete. Reduce the amount for quicker and increase for slower motion.

 

More info about the <selector> and how to use it here: JQuery selectors - how to select items on page properly

 

Print  posted by atanas   Jquery/Ajax tags:  javascript • scroll • top   permalink
5 1


[home] [prev]  1 [2]6-9 of 9


CATEGORIES



TAGS


RECENT ENTRIES