- Change the default SSH 22 port
- Use strong password
- Using SSH key authentication instead of password authentication
- Use The Latest Software Versions
- Monitor Your VPS Server Logs
- Set up email notifications for any warnings and errors
- Set Up Your Firewall
- Make Sure Your Server Is Malware-protected
- Protect Against Brute-force Attacks
- Use SSL Certificates For Everything
OJS homepage thumbnail
Copy and paste the code below to index journal template to get homepage thumbnail.
{**CCDN thumbnail**}
{assign var="thumb" value=$currentJournal->getLocalizedSetting('journalThumbnail')}
{if $thumb}<img class="media-object" width="250px" src="{$publicFilesDir}/{$journalFilesPath}/{$thumb.uploadName|escape:"url"}"{if $altText} alt="{$altText|escape}"{/if}>{/if}
How to get article and PDF view count on OJS3
- Article statistics showing 0 abstract views and 0 PDF downloads
- How to get total galley view count and display in issue.tpl
- How to get total galleys downloads count
- OJS Usage Statistics
Add following code to your desired template normally article_summary.tpl and/or article_details.tpl
{assign var=galleys value=$article->getGalleys()}
{translate key="article.abstract"} View: {$article->getViews()}
{if $galleys}
{foreach from=$galleys item=galley name=galleyList}
{$galley->getGalleyLabel()} downloads: {$galley->getViews()}
{/foreach}
{/if}
How to create joomla Super Administrator account using phpMyAdmin
SQL code for use with Joomla Joomla 2.5 Joomla 3.x Joomla 4.x
INSERT INTO 'jos_users'
('name', 'username', 'password', 'params', 'registerDate', 'lastvisitDate', 'lastResetTime')
VALUES ('Administrator2', 'admin2',
'd2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199', '', NOW(), NOW(), NOW());
INSERT INTO 'jos_user_usergroup_map' ('user_id','group_id')
VALUES (LAST_INSERT_ID(),'8');
Please check your table prefix jos_ . The above will create Super Administrator with username “admin2” and password “secret”. After logging in change your details.
If failed above, try below syntex
INSERT INTO `jos_users` (`id`, `name`, `username`, `email`, `password`, `block`, `sendEmail`, `registerDate`, `lastvisitDate`, `activation`, `params`, `lastResetTime`, `resetCount`, `otpKey`, `otep`, `requireReset`) VALUES (1000000, 'tempsuperuser1', 'tempsuperuser1', 'youremail1@yourjoomlawebsite.com', MD5('temppassword'), '0', '0', '0000-00-00 00:00:00', '0000-00-00 00:00:00', '', '', '0000-00-00 00:00:00', '0', '', '', '0');
INSERT INTO `jos_user_usergroup_map` (`user_id`, `group_id`) VALUES ('1000000', '8');
The above will create Super Administrator with username “tempsuperuser1” and password “temppassword”. After logging in change your details.
Password = You can choose other password
——————————————————
– admin = 433903e0a9d6a712e00251e44d29bf87:UJ0b9J5fufL3FKfCc0TLsYJBh2PFULvT
– secret = d2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199
– OU812 = 5e3128b27a2c1f8eb53689f511c4ca9e:J584KAEv9d8VKwRGhb8ve7GdKoG7isMm
OJS journal Checklist
Journal Identity
- Journal title *Required
- Journal initials *Required
- Journal Abbreviation
Publishing Details
These details may be included in metadata provided to third-party archival bodies.
- Publisher
- Online ISSN
- Print ISSN
Key Information
Provide a short description of your journal and identify editors, managing directors and other members of your editorial team.
- Journal Summary
- Editorial Team
Description
Include any information about your journal which may be of interest to readers, authors or reviewers. This could include your open access policy, the focus and scope of the journal, copyright notice, sponsorship disclosure, history of the journal, a privacy statement, and inclusion in any LOCKSS or CLOCKSS archival system.
- About the Journal
Contact
Principal Contact
Enter contact details, typically for a principal editorship, managing editorship, or administrative staff position, which can be displayed on your publicly accessible website.
- Name *Required
- Email *Required
- Phone
- Affiliation
- Mailing Address *Required
Technical Support Contact
A contact person who can assist editors, authors and reviewers with any problems they have submitting, editing, reviewing or publishing material.
- Name *Required
- Email *Required
- Phone
Website Settings
- Logo
- Favicon
- Journal thumbnail
A small logo or representation of the journal that can be used in lists of journals. - Homepage Image
Upload an image to display prominently on the homepage. - Additional Content
Anything entered here will appear on your homepage. - Page Footer
Enter any images, text or HTML code that you’d like to appear at the bottom of your website. - Sidebar
- « Previous Page
- 1
- …
- 34
- 35
- 36
- 37
- 38
- …
- 92
- Next Page »