Blog

CNERIS

CNERIS

Website URL: http://www.cneris.com

 

Make sure and checked the following: 

mail preferences -> viewing -> And check "display unread messages with bold font"? 

also, this may help: Try to "rebuild" mailbox (in this case the inbox)? 

Why not try to "disable" mail? or delete its' preference file? 

For valuable work on creation of sites you need a good comfortable editor necessarily. There are many requiring paid products for this purpose, but we would like to select free of charge very functional and at the same time of simple in the use editor - Codelobster PHP Edition .

      Let us consider some important possibilities and advantages of this program:

 

  • All code highlights depending on a type, the also mixed code is thus supported, so the area of HTML will be highlighted as HTML, PHP as PHP, and Javascript as Javascript in a the same file. Thre is possibility of choice from color schemes, including popular IDEs.
  • Powerful autocompletion for HTML, PHP, CSS and Javascript, including HTML5 and CSS3. For PHP the structure of project is fully recognized, and the complete list of methods falls out in the proper places.
  • HTML/CSS inspector on the type of Firebug, which allows easily to correlate the selected elements of page with a code and proper style.
  • Context help on all supported languages. By pressing F1 key the page with detailed description for current tag, attribute or function will be opened.
  • PHP debugger. PHP debugger allows to execute PHP scripts incrementally, watching the values of all variables in every line.
  • SQL manager allows to produce all necessary actions with a database - to add, delete, edit a structure and records in tables, to export data, execute SQL queries. Highlighting and autocompletion works for SQL files also.
  • Support of FTP allows to work straight with a remote server and to do all necessary changes with files;
  • The portable option allows to use editor without the preliminary installation.
  • Other useful utilities: pair highlighting, possibility of blocks selection, collapsing, tooltips, navigation on descriptions of functions and included files at withholding of the key of CTRL, viewing of structure of files and project, preview in a browser, book-marks, and all other standard possibilities for work with a code.

Also there are special plugins for work with

 

  • CMS: Drupal, Joomla, Magento
  • PHP frameworks: CakePHP, CodeIgniter, Symfony, Yii, Laravel
  • JavaScript: JQuery, Node.js, AngularJS, BackboneJS, MeteorJS
  • WordPress blogging engine
  • Smarty and Twig template engines

 

Developer Codelobster Software
Web Site http://www.codelobster.com/
Language English, Russian, German, Spanish, French, Portuguese


Article provided by Codelobster

Monday, 15 January 2018 22:54

phpbb, new users can not post

Question: New users are registered, but seems they can not post.

Answer: Try the following indications.

1) Permissions

Check the following

Admin panel

permissions

groups forum permissions

registered users

the forums

standard access

 

2) Languages

If you're not using the default British English language you need to make sure you've upload the correct style imageset for the one you are using.

If you're using US English you can duplicate the imageset/en folder and rename it to /en_us

Wednesday, 10 January 2018 21:39

SPF record, preventing mailing spam

What is a SPF record?

The Sender Policy Framework (SPF) is an anti-spam system built on top of the existing DNS and Email Internet Infrastructure.

Spammers were impersonating domains to make offers look like they were coming from Amazon or other reputable places, but when you would click through they’d steal your credit card and run up a bill at the local Chuck E Cheese (which is where I presume mob members go to eat).

What does a SPF record do?

An SPF record defines which IP addresses are allowed to send email on behalf of a particular domain. This is tricker than it sounds as many companies have multiple different Email Service Providers for different purposes.

Common different uses:

Transactional emails from mailing systems

Internal notifications

Internal email

External email

PR/Marketing emails

Further complicating the situation is that while a company might have a name like SafeEmailSender, there is nothing stopping them from having an email sending domain like wookie-fighter.com.

What does a SPF record prevent?

Having strict SPF rules allows you to control who can send email on behalf of your domain. A good way to think of this is the reverse: who would gain by sending email on behalf of your domain.

See SPF record examples

http://www.openspf.org/SPF_Record_Syntax

In PrestaShop 1.6.x we can use theme configurator module available in your dashboard. So, with brand new responsive theme it is no longer necessary to alter any file. You have to follow instructions below:

Log in to shop dashboard and then open  "preferences > themes" exactly as i show on image: preferences > themes

On the right side  click on "theme configurator" button: Theme configurator button (It is also available from "modules > modules" section)

On theme configurator module page, scroll page down and at the end of the first form you will find "display subcategories" option. Just switch its value to NO

From the SQL query editor, you will need to enter the code to make the price change. Below are a few sample codes to demonstrate increasing and decreasing prices by both specific amounts and percentages. 

 

Sample code to increase all prices by twenty percent (20%).

UPDATE ps_product_shop SET price = price*1.20

UPDATE ps_product SET price = price*1.20

 

Sample code to decrease all prices by 15 cents (.25).

UPDATE ps_product_shop SET price = price-.15

UPDATE ps_product SET price = price-.15

 

Sample code to increase all prices by fifty cents (.15).

UPDATE ps_product_shop SET price = price+0.50

UPDATE ps_product SET price = price+0.50

 

Sample code to decrease all prices by ten percent (10%)

UPDATE ps_product_shop SET price = price / 1.1

UPDATE ps_product SET price = price / 1.1

Module positions in the default template in Prestashop. default-bootstrap template

On Linux mailboxes are stored in directory specified in value to parameter PLESK_MAILNAMES_D in configuration file /etc/psa/psa.conf. By default the path is /var/qmail/mailnames (for both Qmail and Postfix). 

Thursday, 02 February 2017 21:23

Disable Spam Assassin Centos

chkconfig spamassassin off

Page 1 of 2