JInventory: Difference between revisions

From CLONWiki
Jump to navigation Jump to search
Created page with "editCable.php: if ($_REQUEST['action'] == 'save' || $_REQUEST['action'] == 'saveAsNew') { // check for required fields // if no errors, insert info from all gui fields i..."
 
Boiarino (talk | contribs)
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== system packages installed on RHEL9 (clonweb) ==
yum install php
yum install mysqlnd
yum install php-Smarty
yum install php-pear
pear install Pager
== system packages installed on RHEL7 (clon10new) ==
yum install php
yum install php-masterminds-html5  ???
yum install php-mysql
yum install php-Smarty
yum install php-pear-Pager
/etc/httpd/conf.d/webserver.conf:
<IfModule prefork.c>
    StartServers      8
    MinSpareServers    5
    MaxSpareServers  20
    ServerLimit      75
    MaxClients      75
    MaxRequestsPerChild  80
</IfModule>
ServerName clon10new.jlab.org
DocumentRoot    /www/clonwiki0/html/
ServerAdmin boiarino@jlab.org
UseCanonicalName On
LogLevel warn
ExtendedStatus On
PHPINIDir "/etc/httpd/conf.d"
DirectoryIndex index.php
RewriteEngine  On
ScriptAlias /cgi-bin/ "/www/clonwiki0/htbin/"
<Directory /www/clonwiki0/html>
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>
systemctl restart httpd
== Problem observed ==
* Sergey B.: it was not proper 'write' permission to templates_c, blank page appeared; interestingly, if for templates/example _main.tpl newer then templates_c/%%5C^5C1^5C1AB388%%_main.tpl.php, blank page displayed and there is no error message !!!
== some stuff ==
editCable.php:
editCable.php:
  if ($_REQUEST['action'] == 'save' || $_REQUEST['action'] == 'saveAsNew')
  if ($_REQUEST['action'] == 'save' || $_REQUEST['action'] == 'saveAsNew')
  {
  {
   // check for required fields
   // check for required fields
   // if no errors, insert info from all gui fields into database
   // if no errors, insert info from all gui fields into database
  }
  }
command was used to copy loc5 name to the coord:
update Item LEFT OUTER JOIN Loc5 ON ITM_Loc5Id = LOC5_ID set ITM_Coord=LOC5_Name where LOC5_Name='bck.slot 21';

Latest revision as of 15:20, 3 April 2025

system packages installed on RHEL9 (clonweb)

yum install php
yum install mysqlnd
yum install php-Smarty
yum install php-pear
pear install Pager

system packages installed on RHEL7 (clon10new)

yum install php
yum install php-masterminds-html5  ???
yum install php-mysql
yum install php-Smarty
yum install php-pear-Pager

/etc/httpd/conf.d/webserver.conf:

<IfModule prefork.c>
   StartServers       8
   MinSpareServers    5
   MaxSpareServers   20
   ServerLimit      75
   MaxClients       75
   MaxRequestsPerChild  80
</IfModule>
ServerName clon10new.jlab.org
DocumentRoot    /www/clonwiki0/html/
ServerAdmin boiarino@jlab.org
UseCanonicalName On
LogLevel warn
ExtendedStatus On
PHPINIDir "/etc/httpd/conf.d"
DirectoryIndex index.php
RewriteEngine   On
ScriptAlias /cgi-bin/ "/www/clonwiki0/htbin/"
<Directory /www/clonwiki0/html>
   Options Indexes FollowSymLinks
   AllowOverride None
   Require all granted
</Directory>


systemctl restart httpd


Problem observed

  • Sergey B.: it was not proper 'write' permission to templates_c, blank page appeared; interestingly, if for templates/example _main.tpl newer then templates_c/%%5C^5C1^5C1AB388%%_main.tpl.php, blank page displayed and there is no error message !!!


some stuff

editCable.php:

if ($_REQUEST['action'] == 'save' || $_REQUEST['action'] == 'saveAsNew')
{
  // check for required fields
  // if no errors, insert info from all gui fields into database
}

command was used to copy loc5 name to the coord:

update Item LEFT OUTER JOIN Loc5 ON ITM_Loc5Id = LOC5_ID set ITM_Coord=LOC5_Name where LOC5_Name='bck.slot 21';