Its all ok. I found error. I write $id_camp=$REQUEST['id_camp'] instead $id_camp=$_REQUEST['id_camp']
stupid me
Thank you anyway for help
Search found 17 matches
- Sun Mar 01, 2009 2:02 pm
- Forum: Developers Discussion
- Topic: URL question - passing variables in url
- Replies: 4
- Views: 1920
- Sun Mar 01, 2009 1:54 pm
- Forum: Developers Discussion
- Topic: URL question - passing variables in url
- Replies: 4
- Views: 1920
Re: URL question - passing variables in url
ofcourse. here it is SCRIPT_NAME = /alijansa/index.php app_name = CMS sitename = Alijansa lang = encoding = UTF-8 gCms = Object cgsimple = Object ccuser = Object feu_smarty = Object content_id = 55 page = edit-camp page_id = edit-camp page_name = edit-camp page_alias = edit-camp position = 00009 fri...
- Sun Mar 01, 2009 11:54 am
- Forum: Developers Discussion
- Topic: URL question - passing variables in url
- Replies: 4
- Views: 1920
URL question - passing variables in url
I wish to add my small database application in cms made simple and i do it using user defined tag. For every page i made user tag and made pages in content part. Everything works good except when i must put another variable to url, for example for editing camp, something like index.php?page=edit-cam...
- Mon Nov 24, 2008 2:44 pm
- Forum: Developers Discussion
- Topic: encrypt/decrypt user password in database
- Replies: 2
- Views: 3488
Re: encrypt/decrypt user password in database

- Fri Nov 21, 2008 5:44 pm
- Forum: Developers Discussion
- Topic: encrypt/decrypt user password in database
- Replies: 2
- Views: 3488
encrypt/decrypt user password in database
Pls help me. Some user attack my web site and they used my password to take admin account and they change my admin password and others password and now i can't access admin part of site. I have access to my phmypadmin and database on the web site. Could someone tell me how i could change password of...
- Fri May 30, 2008 8:18 am
- Forum: Developers Discussion
- Topic: Question about CreateFrontendLink
- Replies: 0
- Views: 1099
Question about CreateFrontendLink
Hi, i am trying to modify uploads module. I wish to show on one page all users and when someone clicks on one user to show all his uploaded files. My problem is how to find out value when someone click on link of some user I was created link on this way $onerow->author_link =$this->CreateFrontendLin...
- Mon Mar 31, 2008 2:36 pm
- Forum: Modules/Add-Ons
- Topic: uploads module - how to show only uploaded files by upload author
- Replies: 1
- Views: 938
Re: uploads module - how to show uploaded files only about one author
I solved problem by making new template and using it. Only difference is that I put one if command. Code is <!-- Start Upload Display Template --> {if isset($input_filter) } {$startform} {$prompt_filter}{$input_filter}{$hidden_params}{$input_submit} {$endform} <br/> {$matches} {$matchestext} {/if} <...
- Mon Mar 31, 2008 1:54 pm
- Forum: Modules/Add-Ons
- Topic: uploads module - how to show only uploaded files by upload author
- Replies: 1
- Views: 938
uploads module - how to show only uploaded files by upload author
I made page for FEU to upload files. That page consists of upload form and uploaded files. Does someone knows how to make tag to show only files uploaded by that user without making group for every user. I have tried to use this options from help: # (optional) selectvalue="" - When using t...
- Sun Mar 30, 2008 7:40 pm
- Forum: Modules/Add-Ons
- Topic: uploads module and delete
- Replies: 4
- Views: 1712
Re: uploads module and delete
thank you.
- Sun Mar 30, 2008 7:27 pm
- Forum: Modules/Add-Ons
- Topic: uploads module and delete
- Replies: 4
- Views: 1712
Re: uploads module and delete
I see that I could delete files from admin part of site but could I make link delete when I show files to other members of FEU group using tag like this
{cms_module module='Uploads' category='all' mode='summary'}
or could I use some other tag to delete files from web site for users.
{cms_module module='Uploads' category='all' mode='summary'}
or could I use some other tag to delete files from web site for users.
- Sun Mar 30, 2008 1:57 pm
- Forum: Modules/Add-Ons
- Topic: uploads module and delete
- Replies: 4
- Views: 1712
uploads module and delete
I made one group in the FEU module for uploading files on the web site, also made page on the site for uploading files and one page for viewing the files. All working perfect about uploading but I wish to give options to the user to delete his files. Is it some easy way to do that? sorry on my bad e...
- Tue Oct 23, 2007 8:46 pm
- Forum: Developers Discussion
- Topic: How to redirect to my home page from forget password in the FEU
- Replies: 1
- Views: 1171
Re: How to redirect to my home page from forget password in the FEU
I think that I am solve the problem. In file FrontEndUsers.module.php
replace
with
replace
Code: Select all
$this->myRedirect( $id, 'default', $returnid );
Code: Select all
$this->RedirectContent( $returnid );
- Mon Oct 22, 2007 11:16 pm
- Forum: Developers Discussion
- Topic: How to redirect to my home page from forget password in the FEU
- Replies: 1
- Views: 1171
How to redirect to my home page from forget password in the FEU
When user ends process of forget password (sending mail to user, then going to site, then user must enter his new password) he goes on login page with form with username and password. I wish to make that user goes on home page or some other page on the site because I put login form in header of the...
- Sun Oct 21, 2007 10:43 pm
- Forum: Developers Discussion
- Topic: informaton about user from FrontEndUsers module
- Replies: 2
- Views: 1715
- Sun Oct 21, 2007 10:06 am
- Forum: Developers Discussion
- Topic: informaton about user from FrontEndUsers module
- Replies: 2
- Views: 1715
informaton about user from FrontEndUsers module
I am making some kind of mailing pages for sending mail using FrontEndUSers module. How to find out mail and other information from users which is login in front end of site? Thanks on any help. p.s. I have seen earlier some tag which display all information about variables but I cant found it again...