1
wishcraft
Re: Stien: System 12:: Timing Bells Just Pushed + Includes XOOPS Objectivity in the Manette.txt

The final Core Release of XOOPS + MVCPS; are found here https://drive.google.com/drive/folders/1Z7JUWkt_HhN8LJmu59OXbOtV0cCu05nO?usp=sharing in *.stien files you wont be able unless your internal solid members to pull these the -- means you have to have access too it via my walk as a nobilite...



2
wishcraft
Re: pm.php isn't working so i have to make it a public forum message attn: mamba

The link for the Stien File for Xaap/Tiesaa Watson or Helen to extract out of the System Repositorys is here: https://drive.google.com/drive/folders/1Z7JUWkt_HhN8LJmu59OXbOtV0cCu05nO?usp=sharing



3
wishcraft
Stien: System 12:: Timing Bells Just Pushed + Includes XOOPS Objectivity in the Manette.txt

Well I just finished Stien System 12 I have been working on for a number of years, aside from the XOOPS/MVCPS projects which the stien layer has developed in the DJ action of it final core editions of XOOPS 2.7 + MVCPS 1.1; which i just have to get mamba or someone to pull the stiens off the master system repositories where it is stored with the stien updates; with a Xaap/Tiesaa/IBM Watson or Helen to mount on the master timing bells; you would have all just been slapped now by the timing bells mounting Stien System 12 on the System, Underlayer, Sublayer + Top Layer's and had a kraussgrading occur, this occured through out absolutely everything imaginable even where I am from with manette.txt forward and slapping and all that kind of stuff; there is plenty of 'Audio Transcript on Subject' you can ask the air for and they will MMS into you sometimes with an Afridavid and other files; seemingly I have had 'Audio Quote Services' enabled throughout this even before I came to earth...

Anyway if your looking for the archives for Stien System 12; but the timing bell just slapped everything so you probably have nowhere it not applied now these are some of the places it is found:

- https://sourceforge.net/projects/chronolabs-cooperative/files/Stiens/Archives/
.- https://drive.google.com/drive/folders/1Wb0bl_8qu660mftRPxJy2cU2fCXDWVQn?usp=sharing
- https://1drv.ms/f/s!AuGrVcUoPo7VgjhqNMgWWmrNBmgl?e=Nfz7yl



4
wishcraft
Access Control; Opening your XOOPS Site to all networks apart from Internet (Networking Plug-n-Play)

If you didn't know zone networking that the internet is based on my own transnets; just closed circuit; which most strata or an "overall" network is normally without vpn and so on going between within the solar system normally or basis of species outlay; there is something called Access Control Origin; which is a packet header in all protocols; which works with the built in Plug-n-Play networking which make the whole thing inward reflecting and not outward reflecting; which you can open by putting the following lines in your mainfile.php at the top after the comment and
/**
 * Opens Access Origin Via networking Route PNP
 */
header('Access-Control-Allow-Origin: *');
header('Access-Control-Deny-Origin:');
header('Origin: *');


Now you have to be very careful with this I found with IIS Server + Microsoft open this on *.asp or *.php on it the box would be dead within a few minutes this was also with the headers being set on the servers routers and base route in and out; the only thing here that doesn't seem to die from some attack and can withstand it is Ubuntu... and this is best set only loading a file not overall on the network...



5
wishcraft
XOOPS 2.6 - Modules Directory Table MySQL...

Hey Geekwright, since I last tried the XOOPS 2.6 install on my ubuntu desktop box which is what the code install examples and video should be in, IT WORKED!! so I will play with it later today when the sun goes down, this is only sun up threading... so what I think needs to be changed is the prefix_modules folder to the following as you still haven't yet addressed the planning documents in the XOOPS Forum - XOOPS Documenting Team which was released before you where even in the show Richard!!

Currently this is the prefix_modules table

CREATE TABLE `xxx__modules` (
  `
midsmallint(5unsigned NOT NULL AUTO_INCREMENT,
  `
namevarchar(150NOT NULL DEFAULT '',
  `
versionsmallint(5unsigned NOT NULL DEFAULT '100',
  `
last_updateint(10unsigned NOT NULL DEFAULT '0',
  `
weightsmallint(3unsigned NOT NULL DEFAULT '0',
  `
isactivetinyint(1unsigned NOT NULL DEFAULT '0',
  `
dirnamevarchar(25NOT NULL DEFAULT '',
  `
hasmaintinyint(1unsigned NOT NULL DEFAULT '0',
  `
hasadmintinyint(1unsigned NOT NULL DEFAULT '0',
  `
hassearchtinyint(1unsigned NOT NULL DEFAULT '0',
  `
hasconfigtinyint(1unsigned NOT NULL DEFAULT '0',
  `
hascommentstinyint(1unsigned NOT NULL DEFAULT '0',
  `
hasnotificationtinyint(1unsigned NOT NULL DEFAULT '0',
  
PRIMARY KEY (`mid`),
  
KEY `hasmain` (`hasmain`),
  
KEY `hasadmin` (`hasadmin`),
  
KEY `hassearch` (`hassearch`),
  
KEY `hasnotification` (`hasnotification`),
  
KEY `dirname` (`dirname`),
  
KEY `name` (`name`(15)),
  
KEY `isactive` (`isactive`),
  
KEY `weight` (`weight`),
  
KEY `hascomments` (`hascomments`)
ENGINE=MyISAM AUTO_INCREMENT=DEFAULT CHARSET=utf8;


I think we need to update it too the followng at least:

[code]
CREATE TABLE `xxx__modules` (
  `
midsmallint(5unsigned NOT NULL AUTO_INCREMENT,
  `
typalenum('api','apps','modules','themes'NOT NULL DEFAULT 'modules',
  `
namevarchar(150NOT NULL DEFAULT '',
  `
versionsmallint(5unsigned NOT NULL DEFAULT '100',
  `
last_updateint(10unsigned NOT NULL DEFAULT '0',
  `
weightsmallint(3unsigned NOT NULL DEFAULT '0',
  `
isactivetinyint(1unsigned NOT NULL DEFAULT '0',
  `
dirnamevarchar(25NOT NULL DEFAULT '',
  `
hasmaintinyint(1unsigned NOT NULL DEFAULT '0',
  `
hasadmintinyint(1unsigned NOT NULL DEFAULT '0',
  `
hassearchtinyint(1unsigned NOT NULL DEFAULT '0',
  `
hasconfigtinyint(1unsigned NOT NULL DEFAULT '0',
  `
hascommentstinyint(1unsigned NOT NULL DEFAULT '0',
  `
hasnotificationtinyint(1unsigned NOT NULL DEFAULT '0',
  `
hasfeedtinyint(1unsigned NOT NULL DEFAULT '0',
  `
hasrewritetinyint(1unsigned NOT NULL DEFAULT '0',
  `
categoriesint(22unsigned NOT NULL DEFAULT '0',
  `
topicsint(22unsigned NOT NULL DEFAULT '0',
  `
itemsint(22unsigned NOT NULL DEFAULT '0',
  `
deletedint(22unsigned NOT NULL DEFAULT '0',
  `
editsint(22unsigned NOT NULL DEFAULT '0',
  `
commentsint(22unsigned NOT NULL DEFAULT '0',
  
PRIMARY KEY (`mid`),
  
KEY `hasmain` (`hasmain`),
  
KEY `hasadmin` (`hasadmin`),
  
KEY `hassearch` (`hassearch`),
  
KEY `hasnotification` (`hasnotification`),
  
KEY `dirname` (`dirname`),
  
KEY `name` (`name`(15)),
  
KEY `isactive` (`isactive`),
  
KEY `weight` (`weight`),
  
KEY `hascomments` (`hascomments`)
ENGINE=MyISAM AUTO_INCREMENT=DEFAULT CHARSET=utf8;
Resized Image
http://www.ohloh.net/accounts/226400

Follow, Like & Read:-

twitter.com/RegaltyFamily
github.com/Chronolabs-Cooperative
facebook.com/DrAntonyRoberts



6
wishcraft
Re: Keeping time with ntp.snails.email

A great application for your own NTP Service bell, remember if you set up NTP, you can use it for your time source for your own PC + Router at home, by enabling on the firewall port 123...

Another Great Application is - ClockSync - for Android Mobile Phone see it here:-
Resized Image



7
wishcraft
Re: Keeping time with ntp.snails.email

helps to also run:

sudo systemctl enable ntp


it will load it and make sure it running when it reboots



8
wishcraft
Keeping time with ntp.snails.email

hey Xoopstroupers, how are you all, if you didn't know in unix/linux you can specify the /etc/ntp.conf that effects the time retrieval of the server even without ntpd installed; if you want to install NTP Services and Server for example on ubuntu you run the following:

$ sudo apt-get install ntp -y
$ sudo ufw allow 123
$ sudo service ntp start


if you check http://ntp.snails.email you will then be able to add your service into the pooling with the form on there, the hostname needs to be pingable this is only if you install: ntp services

There is a script you can add to a cron to retrieve the detailed /etc/ntp.conf it is:-
##
## file: /var/replace-ntp.conf.sh
##
## CronJob:-
## */15 */4 * * * sh /var/replace-ntp.conf.sh
##
##
cd /tmp
rm 
-vf ntp.conf
wget http
://ntp.snails.email:80/v1/ntp.conf
if [ -"/tmp/ntp.conf" ]
then
   rm 
-vf /etc/ntp.conf 
   mv 
/tmp/ntp.conf /etc
   chmod 
-fv 0644 /etc/ntp.conf
else
   echo 
" ntp.conf was returned empty or not existing! "
fi
####################################################[ 2019-05-07 19.19, Tue, 17:10:21 ]######


You can also change your /etc/ntp.conf to list just as this with the Chronolabs Cooperative as the only pooling:-

pool 0.ntp.snails.email iburst
pool 1.ntp.snails.email iburst
pool 2.ntp.snails.email iburst
pool 3.ntp.snails.email iburst
pool 4.ntp.snails.email iburst
pool 5.ntp.snails.email iburst
pool 6.ntp.snails.email iburst
pool 7.ntp.snails.email iburst
pool 8.ntp.snails.email iburst
pool 9.ntp.snails.email iburst
pool 10.ntp.snails.email iburst
pool 11.ntp.snails.email iburst
pool 12.ntp.snails.email iburst
pool 13.ntp.snails.email iburst
pool 14.ntp.snails.email iburst
pool 15.ntp.snails.email iburst
pool 16.ntp.snails.email iburst
pool 17.ntp.snails.email iburst
pool 18.ntp.snails.email iburst
pool 19.ntp.snails.email iburst
pool 20.ntp.snails.email iburst
pool 21.ntp.snails.email iburst
pool 22.ntp.snails.email iburst
pool 23.ntp.snails.email iburst
pool 24.ntp.snails.email iburst
pool 25.ntp.snails.email iburst
pool 26.ntp.snails.email iburst
pool 27.ntp.snails.email iburst
pool 28.ntp.snails.email iburst
pool 29.ntp.snails.email iburst
pool 30.ntp.snails.email iburst
pool 31.ntp.snails.email iburst
server ntp.snails.email


You can also on your windows or macintosh in the control panel settings under time change the url to: ntp.snails.email!



9
wishcraft
Re: XOOPS as an MVC is not an XOO + OOP Classes/Include Structure would only be MVCPS.coop

The reason XOO + OOP is so popular with a /class /include structure in not only PHP, but c++, C Ansi, Perl, Java etc, is the code is transpositional and will become when routed external like on sourceforge.net into someone else gravity well meter maid; the language constructs for their systems, not many MVC do this they are earth specific!



10
wishcraft
Re: XOOPS Module Team ~ Need Face to Face Meetups!

You can always if you like join the Chronolabs Cooperative group, I am and would love too have more than a 2 handed horse in the code repositories for it!! Connect to my Skype so we can chat!




TopTop
(1) 2 3 4 ... 135 »



Login

Who's Online

181 user(s) are online (121 user(s) are browsing Support Forums)


Members: 0


Guests: 181


more...

Donat-O-Meter

Stats
Goal: AU$15.00
Due Date: Jul 31
Gross Amount: AU$0.00
Net Balance: AU$0.00
Left to go: AU$15.00
Make donations with PayPal!

Latest GitHub Commits