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 561 online users.
» 0 Member(s) | 559 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

 
  $jQuery is not defined error from helpers.php
Posted by: muhammedc - 04-26-2017, 12:14 PM - Forum: UserSpice 4.3 and Below - Replies (2)

In the helpers.php file the following function exists:

function display_errors($errors = array()){
$html = '<ul class="bg-danger">';
foreach($errors as $error){
if(is_array($error)){
echo "<br>";
$html .= '<li class="text-danger">'.$error[0].'</li>';
$html .= '<script>$jQuery("#'.$error[0].'").parent().closest("div").addClass("has-error");</script>';
}else{
$html .= '<li class="text-danger">'.$error.'</li>';
}
}
$html .= '</ul>';
return $html;
}

When I call this function, I always get $jQuery is not defined error. Why would this occur? What am I missing?

I am calling the function using the following code:

<?php echo resultBlock($errors,$successes);
if (!$form_valid && Input::exists()){
echo display_errors($validation->errors());
}
?>


  Hi from Jeff
Posted by: Jeff - 04-25-2017, 09:40 AM - Forum: New to UserSpice? - No Replies

Hi everyone. I have been 'playing' around with PHP and Wordpress plugins for a few years.

After hosting a few websites and being hacked a few times I am more conscious of the need for security etc, and I hope to learn a few things from UserSpice.

At the moment I do not have any active websites so I am testing UserSpice using Ampps installed on Windows 10. Look forward to open discussions which will lead to improving what looks like a very exciting piece of software.


  How to Use Userspice to Handle User Payments to Each Other
Posted by: phpnovice - 04-24-2017, 11:44 AM - Forum: Documentation - No Replies

I really hope so sir… Thanks for your swift reply. However, I have a question regarding a site I am developing for a client and I know the system can do it but I don’t know how to utilize the inbuilt power of this amazing system… The website is hosted on wordpress, http://www.doubleincome.co

I want to do the following:

I want to design a website that is member driven. My members help each other by making payments to each other. When they register, I want to to use Userspice system to handle their registration and prepare their profile. But I want to do the following:

After User Registration:
I want a user to fill a form with his name, the amount of money he transferred to the other user and a file upload showing the prove of payment… Maybe bank draft.

The Other User Has an Approve or Disapprove Button
Once the other user whom the payment is made to has seen the payment, He or She can click on approve. If not he or she will click on disapprove.

The Admin Notification
The form will communicate to the admin, and the two users. The admin can also come in and settle issues between the two users. If one user failed to make payments, the admin will delete the user.

Is this possible with Userspice? Will this system do this for me? Thanks for your kind reply.


  Hello Beautiful People, I'm Gabriel
Posted by: phpnovice - 04-24-2017, 10:50 AM - Forum: New to UserSpice? - Replies (7)

I am very excited to be part of this forum.... And I especially love Userspice... Please answer to my questions and tolerate my ignorance. Thanks.


  HTTP Error 500
Posted by: dalbitresb12 - 04-23-2017, 10:46 PM - Forum: UserSpice 4.3 and Below - Replies (1)

Hi, I have the same problem of this guy.
I tried to install UserSpice and everything was OK, but then when I tried to load UserSpice/index.php, I got a HTTP 500 Error. I don't know what to do. I've tried erasing everything and reinstalling but it didn't worked.

Can you help me please?

//Sorry if there's any misspelling, my native language isn't english.


  Help - Cant figure out why update not working when using dropdown box
Posted by: muhammedc - 04-22-2017, 03:24 PM - Forum: UserSpice 4.3 and Below - Replies (4)

Hi

Code: https://pastebin.com/PREbU7j3

I cant seem to figure out why the data in the dropdown boxes dont update the db if they are changed. Im sure im missing something and maybe just need a new pair of eyes... any ideas?

On a different note - Can we use validation class with drop down box data and when those items are changed, can we display the successes?

Thanks


  Custom Page Title
Posted by: bitsoft - 04-22-2017, 09:21 AM - Forum: UserSpice 4.3 and Below - Replies (4)

Hi,

How can I have a custom page title per page? It is currently set from

Code:
usersc/includes/head_tags
, however, if I want each page to have its own page title, how can I achieve this?


  UserSpice stable version
Posted by: system - 04-22-2017, 07:04 AM - Forum: UserSpice 4.3 and Below - Replies (3)

I have made manual installation on one of my test servers and it seems working fine, however I have few doubts regarding this release which needs your confirmation.

I can see on https://userspice.com/ the latest release is 4.2.6 however the package which I have downloaded from https://github.com/mudmin/UserSpice4/archive/master.zip displays version as 4.2.5 in /users/includes/user_spice_ver.php

May I know which is the latest stable release version and from where we can download the package ?

Also, When I access "Edit Account Info" I am getting error Parse error: syntax error, unexpected 'else' (T_ELSE) in /{PATH}/{TO}/{DIR}/users/user_settings.php on line 217. On further debugging I found that there is "}" missing on line 208 of /users/user_settings.php Is this a known bug ?


  Hi Dan from Danny
Posted by: vincmeister - 04-22-2017, 12:05 AM - Forum: New to UserSpice? - Replies (1)

Hi Dan,
I'm Danny. Thanks for doing a great work on userspice. Just installed and want to learn more about it

Regards,
Danny


  Changing ReCAPTCHA Key
Posted by: tradeJmark - 04-21-2017, 05:56 PM - Forum: Documentation - Replies (5)

I've finally decided to get it over with and get myself a ReCAPTCHA Key, but since there's no field in the settings for it, I manually added it to the keys database table. That doesn't seem to make the ReCAPTCHA message in the footer go away. Have I done this the right way? If not, what is the correct way?
Thanks,
Tim