I have attempted to change the Display Name Format in the User Settings for DNN 7 with the following token:
[FIRSTNAME]
But for some reason DNN isn't displaying it like that anywhere across the site. It's still displaying it like [LASTNAME], [FIRSTNAME].
How do I fix this without manually having to go through thousands of automatically populated records?
For your existing users you will likely need to update it manually in the Database.
Not positive, but I believe DisplayName is on the User's Table, so you could update it there for each user using a t-sql statement.
Related
I would like to add to my Form on Liferay 7, 3 basic self compiled fields so that you can see the name, the surname and the date of birth. In addition, where can I insert these fields? In which file?
I’m using the form with workflow single approver.
ok as far as I know the portlet is configured in edit mode ..
in combination with this
Note: By default, form entries are stored in Liferay’s database using
JSON format. If you navigate to Form Settings (click the Options
(icon-options.png) button → Settings), you’ll see that the only
storage option is JSON. Keep in mind that developers can implement
their own storage types if JSON is not desirable. If they do, the
option will appear here in Form Settings. See the tutorial on custom
storage types (not yet written) for more information
and that How to use custom storage type for liferay 7 forms? , I would look in the database table of DDMContent class
https://dev.liferay.com/discover/portal/-/knowledge_base/7-0/creating-advanced-forms
After a database migration to another server "Mail" fields are missing.
e.g To, From, Additional Headers, Message Body etc are not there??
The form information is there.
I know this is plugin related I sent a message to contact form 7 message boards with no response yet.
Thanks for your help.
I figured out that it was to do with exporting the database to sql, then using find and replace on my URLs (to point to new URL upon migration), resets the "mail" section of contact form 7 leaving fields blank.
It also reseted the wysiwig content of another plugin called "Accordions" leaving it blank.
Workaround I used was to export the content using "Wordpress Importer" then re-imported files on new migrated site.
I know this is an old question, but I would like to suggest this plugin to fix this missing field error:
https://wordpress.org/plugins/fix-contact-form-7-blank-fields/
I want to add a row in my parse database from the website but I am not able to do so.
I basically want to add details using the parse online data browser.
I log in to parse open my app and go to my database where my data is stored I select a database and when I click "+Row" it creates a row with everything filled "(undefined)" and I am not able to change the column values.
Can someone tell me how to do it?
I need to show a message when a user's last login was before the last time we update a module.
I can get the users last login using a cookie (if need be) but I can't seem to find a way of extracting the date a module was last updated/uploaded.
I am able to create a moduelINfo object which has some date fields but their all MinValue
is there a way of either:
1) Retrieving the date a module was uploaded
2) Automatically saving the date as a portal/moduleSetting when we upload or compile the module (ChrisToc)
3) Some other means of testing whether a user's last visit was before the last update.
Thanks
You will probably end up having to do this by looking directly at the Database, in the DESKTOPMODULES table, to see when the LastModifiedOnDate column is updated for the module in question. I don't know that DNN keeps track of module versions like it does with the platform itself (DNN uses the Versions table)
I'm currently working with a client right now that clicked to update a plugin on WordPress. He's unaware of what plugin it was that he updated because he's clicked update in the past for other plugins and they just updated, so he paid little attention to what it was he clicked.
His site is still up, but when I try to get into the back end using /wp-admin I'm hit with a message that states:
Database Update Required
WordPress has been updated! Before we send you on your way, we have to update your database to the newest version.
The update process may take a little while, so please be patient.
Update Wordpress Database
When I click on the button that says "Update WordPress Database" it does nothing. The browser spins and then shows me a blank white page with Wordpress at the top. I'm at a loss because I can't even login, it doesn't give me the option.
Any thoughts on what is happening? Thanks a bunch in advance for the assistance.
This is due to a missmatch between the databases versions you said you are using in the settings.
Please follow this steps:
Go to /wp-include/ folder and open the version.php.
Find the value for $wp_db_version, and write it down.
Now, open your database, check in the table called wp_options
Find the db_version value:
SELECT option_value FROM yourdatabase.wp_options WHERE option_name = 'db_version';
Those two values must be the same. Change it in the version.php file, not the database.
Source: http://wpquestions.com/question/showChrono/id/4151
Restarting php-fpm service helped me, it clears cache on restart
sudo service php5-fpm restart
Hope that helps some folks out there.
Try clearing your browser cache
The option db_upgraded isn’t getting set by the upgrade process.
Try this: go to /wp-admin/options.php. Fill the field db_upgraded with a 0 (zero). Hit Save Changes.
This is due to a missmatch between the databases versions you said you are using in the settings.
Please follow this steps:
Go to /wp-include/ folder and open the version.php.
Find the value for $wp_db_version, and write it down.
Open your database, check in the table called wp_options
Find the db_version value:
SELECT option_value FROM yourdatabase.wp_options WHERE option_name = 'db_version';
Those two values must be the same. Change it in the version.php file, not the database.