Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 199 online users. » 0 Member(s) | 197 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
|
|
|
Config homepage? |
Posted by: oscar - 01-17-2018, 02:44 PM - Forum: UserSpice 4.3 and Below
- Replies (1)
|
|
HI, I'm trying to change the page-after-login.
I'm working on 4.2.11 (*)
I've read in users/login.php about a "Config::get('homepage')" but I didn't find where to set it.
Alternativley, I've tryed to modify the custom_login_script.php, to add an admin-related logic: dashboard for admin and my application home for standard users, with no success.
(*) I'm trying to get a stable-beta-version of my own project. After that, I'll try to port my "Validity Time" addon on latest github version. But I'm also new with git, and so it will be a long, slow process...
Thanks!!
|
|
|
Backup failure |
Posted by: stig - 01-16-2018, 10:04 AM - Forum: UserSpice 4.3 and Below
- Replies (4)
|
|
Dear Friends,
I have recently installed UserSpice on a CentOS machine. While testing the overall system, I have hit into a wall with the backup functionality. I get the below errors and I have tested with different paths.
Destination path could not be created due to unknown error.
Backup path already exists or could not be created.
Any help would be much appreciated.
Thank you,
John
|
|
|
https on cirtain pages |
Posted by: Busy Tech - 01-13-2018, 01:30 PM - Forum: UserSpice 4.3 and Below
- Replies (3)
|
|
hello i have created and android app which is a webview of my UserSpice website.
a glitch in android has occurred so that https sites dont show.
i have force https enabled and i don't want to turn it off.
is there a way to disable force https on cirtain pages?
|
|
|
Possible bug: Ignoring zero's at the end of form fields |
Posted by: kaaregb - 01-11-2018, 08:44 AM - Forum: UserSpice 4.3 and Below
- Replies (7)
|
|
Hi, I have this problem which I wonder if it could be a bug:
When reading values from a sent form with "Input::get('fieldname')", any zero's ("0") at the end of the field are ignored. To test this, try adding a zero to a "Cron Name" field in the cron manager listing. It looks ok, but when you loade the page again, you see that the zero hasn't been saved to the database.
When using "$_POST['fieldname']" to read the values from a form, it works fine.
Do you see any solution to this problem?
Best regards
Kaare Grytting Bye :-)
|
|
|
DB insert and charset |
Posted by: MHALL1 - 01-10-2018, 08:22 AM - Forum: UserSpice 4.3 and Below
- Replies (3)
|
|
Hi,
I have a 'trading name' input box and if the '&' symbol is entered, this is written to the database as '& amp;'.
I then run a check that if the current value doesn't match what's in the DB, update the entry.
Currently it always thinks that they don't match (even though the do if I dump the variable).
If I update the & amp; to &; in phpMyAdmin the issue goes away.
Is there a way I can force either the insert or update classes to write it as & rather than '& amp;'?
Hope that makes sense,
Cheers
|
|
|
Fatal error after install |
Posted by: NailenBarkins - 01-09-2018, 08:43 PM - Forum: UserSpice 4.3 and Below
- Replies (3)
|
|
Hi,
after instalation i got this message:
<pre> Code: Warning: require_once(/home/www/uctenka.eu/www/users/helpers/helpers.php): failed to open stream: No such file or directory in /home/www/uctenka.eu/subdomains/coinstock3/users/init.php on line 24
Fatal error: require_once(): Failed opening required '/home/www/uctenka.eu/www/users/helpers/helpers.php' (include_path='.') in /home/www/uctenka.eu/subdomains/coinstock3/users/init.php on line 24
</pre>
On the line 24 is code: Code: require_once $abs_us_root.$us_url_root.'users/helpers/helpers.php';
I try add this code:
<pre>Code: echo "<pre>";
var_dump($abs_us_root);
var_dump($us_url_root);
echo "</pre>";
</pre>
I got the same message. var_dump contein this:
<pre>Code: string(24) "/home/www/uctenka.eu/www"
string(1) "/"
</pre>
Where could be problem? Thanks
Nailen
|
|
|
Manually Add User |
Posted by: anduse - 01-09-2018, 08:31 PM - Forum: UserSpice 4.3 and Below
- Replies (1)
|
|
In admin_users.php:
<pre> Code: if($settings->auto_assign_un==1) {
$validation->check($_POST,array(
'username' => array(
'display' => 'Username',
'required' => true,
'min' => $settings->min_un,
'max' => $settings->max_un,
'unique' => 'users',
),
'fname' => array(
'display' => 'First Name',
'required' => true,
</pre>
...
If auto_assign_un==1 'username' should not be checked as it is in join.php, isn't it?
Elsewise it will throw 'Username is required'
|
|
|
Moving Domain |
Posted by: waynebr - 01-08-2018, 08:24 PM - Forum: Off-topic Discussions
- Replies (6)
|
|
Hi - First thanks for Userspice i'm finding it very useful. I have userspice set up on a domain and want to be able to copy it for use on a separate domain as a backup. I have copied across the database and all the files but it dosn't work. What do I need to change to transfer to a new domain?
|
|
|
|