• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC Gesior Newsticker not working

Azerty

Active Member
Joined
Apr 15, 2022
Messages
307
Solutions
4
Reaction score
31
Good morning, I try to add newsticker by gesior but it is not adding. I've added these sql commands and it still doesn't work.

PHP:
CREATE TABLE `newsticker` (
  `id` int(11) NOT NULL,
  `date` int(11) NOT NULL,
  `text` varchar(255) NOT NULL,
  `icon` varchar(50) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


ALTER TABLE `newsticker`
  ADD PRIMARY KEY (`id`);


ALTER TABLE `newsticker`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
 
Good morning, I try to add newsticker by gesior but it is not adding. I've added these sql commands and it still doesn't work.

PHP:
CREATE TABLE `newsticker` (
  `id` int(11) NOT NULL,
  `date` int(11) NOT NULL,
  `text` varchar(255) NOT NULL,
  `icon` varchar(50) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


ALTER TABLE `newsticker`
  ADD PRIMARY KEY (`id`);


ALTER TABLE `newsticker`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
Where did you download acc. maker?
Gesior2012 ( GitHub - gesior/Gesior2012: Gesior 2012 - Account Maker [website] for OTSes, account maker you can find in BRANCHES. Select 'branch'. (https://github.com/gesior/Gesior2012) ) loads posts from acc. maker forum board 'News' with title News Ticker as news tickers. Their content is shown as news ticker, all news tickers must have same title News Ticker.
 
Where did you download acc. maker?
Gesior2012 ( GitHub - gesior/Gesior2012: Gesior 2012 - Account Maker [website] for OTSes, account maker you can find in BRANCHES. Select 'branch'. (https://github.com/gesior/Gesior2012) ) loads posts from acc. maker forum board 'News' with title News Ticker as news tickers. Their content is shown as news ticker, all news tickers must have same title News Ticker.
I downloaded this GitHub - Riicksouzaa/ferobrinha: gesior de qualidade (https://github.com/Riicksouzaa/ferobrinha)
 
It uses Gesior acc. maker from 2008. Not supported anymore :(
I've checked it's code and it should show your 'news ticker' from table newsticker. Just add there some record ex. using phpmyadmin.
how do I do that " Just add there some record ex. using phpmyadmin." ?
 
how do I do that " Just add there some record ex. using phpmyadmin." ?
Access ur database (phpmyadmin its one of most popular ways, with GUI), if u have installed, just access with http://your_ip/phpmyadmin (use dabatase credentials), then you go into news_ticker table and put ur news there, filling necessary fields. U can do it using CLI (if Linux) too, but its harder, need to know entire SQL script, something like this:

SQL:
INSERT INTO `z_news_tickers` (`id`, `date`, `author`, `image_id`, `text`, `hide_ticker`) VALUES (NULL, '1668103025', '10008736', '1', 'Add News Ticker on Site. ae', '0');
 
Last edited:
Access ur database (phpmyadmin its one of most popular ways, with GUI), if u have installed, just access with http://your_ip/phpmyadmin (use dabatase credentials), then you go into news_ticker table and put ur news there, filling necessary fields. U can do it using CLI (if Linux) too, but its harder, need to know entire SQL script, something like this:

SQL:
INSERT INTO `z_news_tickers` (`id`, `date`, `author`, `image_id`, `text`, `hide_ticker`) VALUES (NULL, '1668103025', '10008736', '1', 'Add News Ticker on Site. ae', '0');
I need a solution for this... '1668103025' what date is this? i know it's just a SQL error but i don't know how to solve it
 
Back
Top