The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.2.25 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/portal.php 39 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 1,007
» Latest member: kavitasinghji
» Forum threads: 1,324
» Forum posts: 7,788

Full Statistics

Online Users
There are currently 541 online users.
» 0 Member(s) | 539 Guest(s)
Bing, Google

Latest Threads
UserSpice Alpha Testing a...
Forum: News Center
Last Post: ivinsons
11-08-2024, 06:13 PM
» Replies: 13
» Views: 42,475
UserSpice 4.4 Development
Forum: News Center
Last Post: Amelie12
09-21-2024, 12:23 PM
» Replies: 4
» Views: 15,199
Welcome to the new UserSp...
Forum: News Center
Last Post: ivinsons
08-25-2024, 07:39 AM
» Replies: 2
» Views: 27,918
How to use hasPerm
Forum: UserSpice 4.4
Last Post: mudmin
07-20-2019, 02:45 PM
» Replies: 1
» Views: 13,755
Session issue? What I sho...
Forum: UserSpice 4.4
Last Post: Parth
07-17-2019, 05:06 PM
» Replies: 4
» Views: 14,502
Email Error
Forum: UserSpice 4.4
Last Post: Brandin
07-17-2019, 04:47 PM
» Replies: 1
» Views: 6,623
{ Missing Text } after up...
Forum: UserSpice 4.4
Last Post: Brandin
07-16-2019, 04:23 PM
» Replies: 22
» Views: 53,638
Best Practice Info
Forum: New to UserSpice?
Last Post: Brandin
07-16-2019, 11:55 AM
» Replies: 1
» Views: 13,490
Force to use 2FA -always-
Forum: UserSpice 4.4
Last Post: Brandin
07-12-2019, 12:43 PM
» Replies: 1
» Views: 6,636
e-mail not verifying
Forum: UserSpice 4.4
Last Post: LBC
07-10-2019, 11:34 AM
» Replies: 31
» Views: 76,232

 
  Responsive
Posted by: KyleJ1445566 - 10-07-2018, 12:20 AM - Forum: UserSpice 4.4 - Replies (5)

Hello,

I am completely new to userspice. and I am wondering how do I make my userspice site responsive, because on mobile devices, then it looks a mess, but on desktop/laptops it looks brilliant. here is a link to the website, so that you can see what i mean www.ncmaphia.co.uk/members-area



Any help would be appreciated and thanks in advance.


  create a log
Posted by: mcharlesworth - 10-04-2018, 04:12 PM - Forum: UserSpice 4.3 and Below - Replies (2)

So I could use some help, I want to make a page in my program that every 2 hours durning the day, starting at the time they say they woke up (which can be adjustable), has them select there location from a list of pre determined locations then save that to a log, with a time stamp. Would that be possible? 

Thanks
   Myles


Photo Custom User Profile
Posted by: jcarter - 10-03-2018, 05:01 PM - Forum: UserSpice 4.3 and Below - Replies (6)

Hello, I want to thank anyone who helps me in advance. 

     So I would like my users to be able to upload there own profile images. Then for it to display in the profile.php page. Is this possible? could someone explain why or why not to me?

Thanks!
     -James Carter


  Unable to update a field in a custom table
Posted by: eforbes - 10-02-2018, 11:56 PM - Forum: UserSpice 4.3 and Below - Replies (2)

In the edit_profile.php, i modified it to update a payment field in a Members table but it is not updating.

         //Update Payment Type
        if ($userdetails->payment_type != $_POST['payment_type']){
            $payment_type = ucfirst(Input::get("payment_type"));
            $fields=array('payment_type'=>$payment_type);
            $validation->check($_POST,array(
                'payment_type' => array(
                    'display' => 'Payment Type',
                    'required' => true,
                    'min' => 1,
                    'max' => 255
                )
            ));
            if($validation->passed()){
                $db->update('users',$userId,$fields); I changed it to this ->([b]$db->update('member',$userId,$fields)[/b]
                $successes[]='Payment Type updated.';
                                logger($user->data()->id,"User","Changed payment_type from $userdetails->payment_type to $payment_type.");
            }else{
                //validation did not pass
                foreach ($validation->errors() as $error) {
                    $errors[] = $error;
                }
            }
        }else{
            $payment_type=$userdetails->payment_type;
        }


What am i doing wrong?


  UserSpice should be simpler for beginners
Posted by: bodhi smaran - 09-30-2018, 06:31 PM - Forum: UserSpice 5 - Roadmapping the Future - Replies (1)

UserSpice is a great software and I imagine how much effort and attention has already been applied in its development.
You can see that it was done by dedicated people that loves collaborating with the community.

But I imagine that its initial use could be simplified.

The videos explain how to change php programs to direct the login result to your application page.
A lot of changes.

I think there should be some configuration file where you put the name of your home page that will be loaded after a successful login.
Just this: You change the configuration file and do not need to change the UserSpyce programs.

I hope to be collaborating for this great tool with my suggestion.

Best regards

Smaran


  What to expect?
Posted by: clansing - 09-28-2018, 03:57 PM - Forum: UserSpice 4.4 - Replies (1)

Do you guys have a release date in mind that you are working towards?

What can we expect from 4.4 in terms of differences?


Photo Changing Header and Footer Colors
Posted by: mark - 09-27-2018, 06:11 PM - Forum: UserSpice 4.3 and Below - Replies (6)

Hi. I'm sorry if this has been covered elsewhere. I searched the forums but didn't find an answer.

I need to change the colors of the header and footer areas of the page (please see the attached image).  The rest of the colors on the site are perfect, so selecting a different Sitewide CSS won't work. I just need to lighten these areas up a bit. 

Any help pointing me to the files and sections I need to change would be GREATLY appreciated. 

Thank you for your help,
Mark

[Image: UScolorquestion.jpg]


  Accessing mysql functions with UserSpice
Posted by: eforbes - 09-26-2018, 09:08 PM - Forum: UserSpice 4.3 and Below - Replies (1)

My backend developer wants to know if it is possible to call mysql functions and possibly stored procedures within UserSpice.


Thumbs Up Subscription Integration
Posted by: nschoultz - 09-24-2018, 06:37 PM - Forum: UserSpice 5 - Roadmapping the Future - Replies (10)

Hopefully the right place (And I have not missed a duplicate thread).

I have just started using UserSpice and love the simplicity of it!! What I would love to see in a future version is the ability for a user to purchase credits via Stripe or PayPal that can be used to upgrade their membership on the site.

I was digging through the forums and did notice there was a user who created SubSpice which tried to achieve this. I need to play around with that package more, however it would be great to see it as part of the Userspice Core.

Keep up the good work guys. Really loving UserSpice for the little time I have been using it so far Smile

Nathan


  Sending a signup link by email
Posted by: eforbes - 09-24-2018, 02:55 PM - Forum: UserSpice 4.3 and Below - Replies (7)

Hey guys!  I am trying to figure out how to send a signup link to someone's email and when they click on the link, it will take them to the registration page. 
After they have registered, I want to be linked by my user id to the new users.

I know this is not a programming tutorial forum.  Just need some insight as to how i could do it in userspice.