Search found 40 matches
- Wed Mar 17, 2010 4:28 pm
- Forum: Modules/Add-Ons
- Topic: [solved] - sort of - Cataloger images not loading
- Replies: 2
- Views: 1123
Re: Cataloger images not loading
Oooook. Now it's working and I didn't do anything else to fix it. Possibly the upgrade fixed it? Sorry i don't have a more solid fix if you're experiencing similar issues.
- Wed Mar 17, 2010 4:20 pm
- Forum: Modules/Add-Ons
- Topic: [solved] - sort of - Cataloger images not loading
- Replies: 2
- Views: 1123
Re: Cataloger images not loading
Ok, I updated to the latest version (0.7.7) and now there's the same problem but I get an error message at least when this happens. It says: "Warning: copy(D:\Hosting\2273593\html\uploads/images/catalog/aaa_src_1.jpg) [function.copy]: failed to open stream: Permission denied in D:\Hosting\2273...
- Wed Mar 17, 2010 3:38 pm
- Forum: Modules/Add-Ons
- Topic: [solved] - sort of - Cataloger images not loading
- Replies: 2
- Views: 1123
[solved] - sort of - Cataloger images not loading
My client is using a CMS I set up and they are loading images into the Cataloger. Suddenly we cannot add any new images. When you add an image, it just ignores you. There's no warning or error messages. You load the image under item's Image options, and then it comes back with nothing loaded. Th...
- Wed Feb 17, 2010 11:34 pm
- Forum: Modules/Add-Ons
- Topic: [solved] Passing Variables from Frontend Users to UDTs
- Replies: 7
- Views: 2376
Re: Passing Variables from Frontend Users to UDTs
Ok, I got the solution through working out with a friend. Here it is and it works for anyone else trying to do this:
$extravar = $_REQUEST["m1_input_email"];
mail($extravar,'Profile Updated','Your profile has been updated');
Thanks for everyone's help!
$extravar = $_REQUEST["m1_input_email"];
mail($extravar,'Profile Updated','Your profile has been updated');
Thanks for everyone's help!
- Wed Feb 17, 2010 8:58 pm
- Forum: Modules/Add-Ons
- Topic: [solved] Passing Variables from Frontend Users to UDTs
- Replies: 7
- Views: 2376
Re: Passing Variables from Frontend Users to UDTs
That didn't work unfortunately. I then tried this: global $gCms; $email = $gCms->smarty->get_template_vars('email'); mail('myemail@yahoo.com','Application Approved','Your Application has been approved $email.'); I got the email and it said "Your Application has been approved $email." I e...
- Wed Feb 17, 2010 2:59 pm
- Forum: Modules/Add-Ons
- Topic: [solved] Passing Variables from Frontend Users to UDTs
- Replies: 7
- Views: 2376
Re: Passing Variables from Frontend Users to UDTs
The email field in FEU is $email
- Wed Feb 17, 2010 6:07 am
- Forum: Modules/Add-Ons
- Topic: feuser login with username {solved}
- Replies: 2
- Views: 921
Re: feuser login with username
Go to the Frontend User's Preferences and the first option should be what you're looking for.
- Tue Feb 16, 2010 5:52 am
- Forum: Modules/Add-Ons
- Topic: [solved] Passing Variables from Frontend Users to UDTs
- Replies: 7
- Views: 2376
Re: Passing Variables from Frontend Users to UDTs
ok, so this is the UDT I put in not making a change to your addition: global $gCms; $email = $gCms->smarty->get_template_vars('feu_email'); mail('$email','Application Approved','Your Application has been approved.'); I know that $email is the FEU variable used to get the user's email. I'm not sure ...
- Fri Feb 12, 2010 5:13 pm
- Forum: Modules/Add-Ons
- Topic: [solved] Passing Variables from Frontend Users to UDTs
- Replies: 7
- Views: 2376
[solved] Passing Variables from Frontend Users to UDTs
I need to retrieve the $email variable from Frontend Users for a UDT. UDT's don't seem to like the Smarty Functions given in the FUE module help page, but I'm not very well-versed as to how to use these. Can soomeone please show me what I should put in the UDT to grab the variable?
- Thu Feb 11, 2010 3:00 pm
- Forum: Modules/Add-Ons
- Topic: User Email variable in FrontEndUsers?
- Replies: 9
- Views: 2098
Re: User Email variable in FrontEndUsers?
I'm not sure i understand. I placed "mail('$email_addr','Application Approved','Your Application has been approved.');" in a UDT and attached that UDT to an event. If I replace the "$email_addr" with a real email, it works. I found that $email gives me the user email, so that'...
- Thu Feb 11, 2010 6:40 am
- Forum: Modules/Add-Ons
- Topic: User Email variable in FrontEndUsers?
- Replies: 9
- Views: 2098
Re: User Email variable in FrontEndUsers?
I'm trying to use the Frontend User's email property.
- Thu Feb 11, 2010 2:28 am
- Forum: Modules/Add-Ons
- Topic: User Email variable in FrontEndUsers?
- Replies: 9
- Views: 2098
Re: User Email variable in FrontEndUsers?
I tried {get_template_vars} but it simply tells me what the vars are set as "email = none@nothing.com". It doesn't actually give the variable. I also made the email address the username and tried mailing to $username without success. Could it be that the variables aren't passed along wh...
- Thu Feb 11, 2010 2:10 am
- Forum: Modules/Add-Ons
- Topic: User Email variable in FrontEndUsers?
- Replies: 9
- Views: 2098
Re: User Email variable in FrontEndUsers?
Email address is not set as username.
- Wed Feb 10, 2010 5:35 am
- Forum: Modules/Add-Ons
- Topic: User Email variable in FrontEndUsers?
- Replies: 9
- Views: 2098
Re: User Email variable in FrontEndUsers?
I just tried using this as an User Defined Tag and it didn't work. I'm just trying to send an email to the user when their group has been changed so i want this UDT to work on the Frontend User Management Event "OnUpdateUser". Here's the UTD i made. Can someone tell me what's wrong with...
- Wed Feb 10, 2010 4:47 am
- Forum: Modules/Add-Ons
- Topic: User Email variable in FrontEndUsers?
- Replies: 9
- Views: 2098
User Email variable in FrontEndUsers?
Does anyone know what the user email variable is in FrontEndUsers? I can't seem to find it and the "$email" or $useremail" don't seem to work. I'm trying to create a User Defined Tag that mails to the user.