WHMCS Services- SMS Manager 7.3.0 Not Nulled

No permission to download
yuan First Sergeant
Bronze Member
10 Referrals 1,000 Reaction Score 500 Reaction Score 100 Reaction Score
Nov 14, 2020
718
2,073
$1,143
yuan submitted a new resource:

WHMCS Services- SMS Manager - an advanced SMS System that offers you the ability to automatically send SMS messages to your client


Read more about this resource...
 
your picture was offline.
It showing me this error below,..

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'a_newmy.ws_smsmanager_logs' doesn't exist (SQL: select * from `ws_smsmanager_logs` order by `id` desc limit 5)
 
It showing me this error below,..

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'a_newmy.ws_smsmanager_logs' doesn't exist (SQL: select * from `ws_smsmanager_logs` order by `id` desc limit 5)
This is an obsolete plug-in for whmcs , require ~php7.2
It is mainly used to test the decoding content of dynamic Key encryption technology with ioncube 11 .so maybe have bug.now you can run this sql for create full table
SQL:
--
-- Table structure for table `ws_smsmanager_config`
--

CREATE TABLE `ws_smsmanager_config` (
  `setting` text COLLATE utf8_unicode_ci,
  `value` text COLLATE utf8_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ws_smsmanager_confirmations`
--

CREATE TABLE `ws_smsmanager_confirmations` (
  `id` int(10) UNSIGNED NOT NULL,
  `userid` int(11) DEFAULT NULL,
  `recipent` text COLLATE utf8_unicode_ci,
  `confirmed` int(11) DEFAULT NULL,
  `timestamp` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ws_smsmanager_hooks`
--

CREATE TABLE `ws_smsmanager_hooks` (
  `id` int(10) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8_unicode_ci,
  `description` text COLLATE utf8_unicode_ci,
  `class` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `hook` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `groupname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `isadmin` tinyint(1) NOT NULL DEFAULT '0',
  `orderid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ws_smsmanager_logs`
--

CREATE TABLE `ws_smsmanager_logs` (
  `id` int(10) UNSIGNED NOT NULL,
  `userid` int(11) DEFAULT NULL,
  `relid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8_unicode_ci,
  `type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `isadmin` tinyint(1) NOT NULL DEFAULT '0',
  `send_at` datetime DEFAULT NULL,
  `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ws_smsmanager_multiconfig`
--

CREATE TABLE `ws_smsmanager_multiconfig` (
  `id` int(10) UNSIGNED NOT NULL,
  `country` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `countrycode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `gateway` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `setting` text COLLATE utf8_unicode_ci,
  `value` text COLLATE utf8_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ws_smsmanager_multilanguages`
--

CREATE TABLE `ws_smsmanager_multilanguages` (
  `id` int(10) UNSIGNED NOT NULL,
  `lang` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `value` text COLLATE utf8_unicode_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `ws_smsmanager_preferences`
--

CREATE TABLE `ws_smsmanager_preferences` (
  `id` int(10) UNSIGNED NOT NULL,
  `userid` int(11) DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `value` text COLLATE utf8_unicode_ci,
  `status` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `ws_smsmanager_confirmations`
--
ALTER TABLE `ws_smsmanager_confirmations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ws_smsmanager_hooks`
--
ALTER TABLE `ws_smsmanager_hooks`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ws_smsmanager_logs`
--
ALTER TABLE `ws_smsmanager_logs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ws_smsmanager_multiconfig`
--
ALTER TABLE `ws_smsmanager_multiconfig`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ws_smsmanager_multilanguages`
--
ALTER TABLE `ws_smsmanager_multilanguages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ws_smsmanager_preferences`
--
ALTER TABLE `ws_smsmanager_preferences`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `ws_smsmanager_confirmations`
--
ALTER TABLE `ws_smsmanager_confirmations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ws_smsmanager_hooks`
--
ALTER TABLE `ws_smsmanager_hooks`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ws_smsmanager_logs`
--
ALTER TABLE `ws_smsmanager_logs`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ws_smsmanager_multiconfig`
--
ALTER TABLE `ws_smsmanager_multiconfig`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ws_smsmanager_multilanguages`
--
ALTER TABLE `ws_smsmanager_multilanguages`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ws_smsmanager_preferences`
--
ALTER TABLE `ws_smsmanager_preferences`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
COMMIT;
 
thanks to dear member @netman updated WHMCS Services- SMS Manager with a new update entry:

January 12th, 2023


Read the rest of this update entry...
 
Hello when i try to activate the addon it returns an error.

Fatal error: The file /home/cpanelusername/public_html/whcmsfolder/modules/addons/smsmanager/smsmanager.php cannot be run by the ionCube Loader. Please ask the script provider to supply an encoded file that can run on your version of PHP, 7.3. in Unknown on line 0

Oops!​

Something went wrong and we couldn't process your request.​

Please go back to the previous page and try again.
For additional assistance, please reference the WHMCS TroubleShooting Guide »

Whoops\Exception\ErrorException: The file /home/cpanelusername/public_html/whcmsfolder/modules/addons/smsmanager/smsmanager.php cannot be run by the ionCube Loader. Please ask the script provider to supply an encoded file that can run on your version of PHP, 7.3. in Unknown:0
Stack trace:
#0 /home/fiberhostco/public_html/sys/vendor/whmcs/whmcs-foundation/lib/Utility/Error/Run.php(0): WHMCS\Utility\Error\Run->handleError(16, 'The file /home/...', 'Unknown', 0)
#1 [internal function]: WHMCS\Utility\Error\Run->handleShutdown()
#2 {main}
 
Might you know what could be causing this error?
 
i also tried the old one and it returns this error.

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'whcmsdatabasename.ws_smsmanager_logs' doesn't exist (SQL: select * from `ws_smsmanager_logs` order by `id` desc limit 5)
 
I also have an issue where the module does not show any place to enter details of the sms gateway provider.

Can anyone direct me how to resolve this. The section under global configuration does not have fields to enter api details. All of them are just blanked out
 
enter config page to set it