-
Posts
20 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by CenterWeb
-
I don't understand if the problem is with whmcs or whm. The client receives next to the password: HIDDEN as in the example below. Domain: domain.com IP Address: 1.2.2.1.1.2 CGI Access: Enabled Username: username Password: ***HIDDEN*** cPanel Theme: jupiter Home Directory Root: /home Quota: 10 GB Contact Email: email@email.com Package: name_business Feature List: default Locale: en
-
I’m working on a reviews page where only clients can post reviews. I created the .php page, the .tpl page, and a table in phpMyAdmin. I tested it, and the functionality works well, but the problem is with the rest of the content, such as the header and footer, which are not displaying. I’m getting the following error: --> Smarty Compiler: Syntax error in template "file:/home/xxxxx/public_html/templates/WHMCS-Dark/header.tpl" on line 106 "{lang key='notificationsnew'}" unknown tag 'lang' <-- Any changes to that error affect my CSS files, and the site turns into plain text. Here> https://www.centerweb.ro/parerea-clientului.php
-
Need help with Admin ticket notification on admin reply
CenterWeb replied to Airborne3D's topic in Developer Corner
Do you mean that no email is received when someone opens a ticket? -
My resources are good. I probably have to pay a developer to solve the problems.
-
Resources are beyond recommendations.
-
Result> We are aware of a potentially service impacting issue. I also had the above error when I accessed this community.
-
I don't understand what is happening, the pwreset.tpl file in the six theme is empty, and the one in the theme I use is with this continuous. Now I notice that a file named pwresetvalidation.tpl The theme has not received an update for 2 years, and the author removed the whmcs version from what I noticed. When I bought the theme it had no problems. <div class="logincontainer"> {include file="$template/includes/pageheader.tpl" title=$LANG.pwreset} {if $loggedin} {include file="$template/includes/alert.tpl" type="error" msg=$LANG.noPasswordResetWhenLoggedIn textcenter=true} {else} {if $success} {include file="$template/includes/alert.tpl" type="success" msg=$LANG.pwresetvalidationsent textcenter=true} <p>{$LANG.pwresetvalidationcheckemail}</p> {else} {if $errormessage} {include file="$template/includes/alert.tpl" type="error" msg=$errormessage textcenter=true} {/if} {if $securityquestion} <p>{$LANG.pwresetsecurityquestionrequired}</p> <form method="post" action="pwreset.php" class="form-stacked"> <input type="hidden" name="action" value="reset" /> <input type="hidden" name="email" value="{$email}" /> <div class="form-group"> <label for="inputAnswer">{$securityquestion}</label> <input type="text" name="answer" class="form-control" id="inputAnswer" autofocus> </div> <div class="form-group text-center"> <button type="submit" class="btn btn-primary">{$LANG.pwresetsubmit}</button> </div> </form> {else} <p>{$LANG.pwresetemailneeded}</p> <form method="post" action="{$systemsslurl}pwreset.php" role="form"> <input type="hidden" name="action" value="reset" /> <div class="form-group"> <label for="inputEmail">{$LANG.loginemail}</label> <input type="email" name="email" class="form-control" id="inputEmail" placeholder="{$LANG.enteremail}" autofocus> </div> <div class="form-group text-center"> <button type="submit" class="btn btn-primary">{$LANG.pwresetsubmit}</button> </div> </form> {/if} {/if} {/if} </div>
-
Does that help? System Smarty Error: Default handler: No template default content for 'file:WHMCS-Dark/password-reset-container.tpl'
-
Only with this theme I have errors
-
I have problems with some pages that do not display the content. -User Management -Payment Methods -Secundary Accounts Most importantly the password reset page https://centerweb.ro/pwreset.php How can I fix these problems? It is true that the theme used is from 2 years ago and without an update, but I cannot give it up.
-
I want create new contact form for another pages. How do I add a new form to my php and tpl pages
-
Now it works perfectly. THANK YOU!
-
WHERE CAN ADD TEXT!!!!!????
-
I found what needs to be added to mypage.tpl and it doesn't work. What am I doing wrong? <h3>This is my custom WHMCS page's content</h3> <p>I used the code found <a href="https://developers.whmcs.com/advanced/creating-pages/" target="_blank" title="Click here to navigate to WHMCS Support to obtain the code needed for creating a custom page.">here</a>.</p> <p>I put that code into a file named: </p> <p><code>termeni-si-conditii.php</code>, which resides in the root directory (where my WHMCS is installed).</p> <p>Now, I can write HTML into the file named:</p> <p><code>termeni-si-conditii.tpl</code>, located in the templates/six/ directory. Any HTML I save into that file, will be displayed on my new custom page.</p>
-
Thanks for the reply. I have nowhere to download the files. I want a community with the same customer base not to create 2 separate accounts
-
Hello. I created 2 pages: page.php /public_html page .tpl /temaplates/mytemplate It looks good, but where do I add the text? This is how it looks page.php and page.tpl <?php use WHMCS\Authentication\CurrentUser; use WHMCS\ClientArea; use WHMCS\Database\Capsule; define('CLIENTAREA', true); require __DIR__ . '/init.php'; $ca = new ClientArea(); $ca->setPageTitle('Termeni și Condiții '); $ca->addToBreadCrumb('index.php', Lang::trans('globalsystemname')); $ca->addToBreadCrumb('termeni-si-conditii.php', 'Termeni și Condiții'); $ca->initPage(); //$ca->requireLogin(); // Uncomment this line to require a login to access this page // To assign variables to the template system use the following syntax. // These can then be referenced using {$variablename} in the template. //$ca->assign('variablename', $value); $currentUser = new CurrentUser(); $authUser = $currentUser->user(); // Check login status if ($authUser) { /** * User is logged in - put any code you like here * * Use the User model to access information about the authenticated User */ $ca->assign('userFullname', $authUser->fullName); $selectedClient = $currentUser->client(); if ($selectedClient) { /** * If the authenticated User has selected a Client Account to manage, * the model will be available - put any code you like here */ $ca->assign( 'clientInvoiceCount', $selectedClient->invoices()->count() ); } } else { // User is not logged in $ca->assign('userFullname', 'Guest'); } /** * Set a context for sidebars * * @link http://docs.whmcs.com/Editing_Client_Area_Menus#Context */ //Menu::addContext(); /** * Setup the primary and secondary sidebars * * @link http://docs.whmcs.com/Editing_Client_Area_Menus#Context */ # Define the template filename to be used without the .tpl extension $ca->setTemplate('termeni-si-conditii.tpl'); $ca->output();
-
Any can post reply? I loocking for addon community ...???
-
Is there a community mode? I mean a discussion community for my registered clients. I searched and did not find it.
-
Its fine, te problem is template. DONE
-
After I choose the service and choose to order it, the BUY button sends me to the first page not to order the product. Solutions?
