Jump to content

Too Many Issues with 5.1.2


lance

Recommended Posts

  • WHMCS Support Manager
I have paid for an upgrade and integration of my template - they include a header/image carousel on the WHMCS pages? I mean why would they do that? the sub pages on my site dont have headers. When I tell them about this they don't know what a header is!!!

You were provided with a free revision of your custom template without the header image as you requested. We even uploaded file for you.

 

 

Then when a customer now pays successfully with paypal the success page is formatted badly - this didnt happen before I "upgraded" and yet the WHMCS "support" (They're not really support!!!!) say it's the reply from Worldpay and I need to speak to them - if this is the case why wasn't it happening before the "upgrade"?????

Again you were provided with an update to fix this (the problem was Worldpay changed some settings at their end so full HTML is no longer displayed on their payment pages) and again it was uploaded for you upon request.

 

If you have any further problems feel free to update the ticket so we can discuss them sensibly.

Link to comment
Share on other sites

  • Replies 117
  • Created
  • Last Reply

Top Posters In This Topic

I'm fairly confident I can say that for everyone person like you there are hundreds of others who don't feel the need to rant and attempt to slander the abilities of the WHMCS team.

 

If you're not happy with the product then toddle off to another solution, no one is going to stop you...

 

Agree! Really happy with the WHMCS! Both the product and staff! but nothing has caused us any major business issues.

 

We do only use a handful of the most used modules which all seem to be working correctly.

Link to comment
Share on other sites

  • 1 month later...

Well it appears that i have been forturnate here, i finally bit the bullet and upgraded from 503 to 512 and no disasters so far. It seems to be fairly solid but i still have to go in and xfer my template mods. But i dont see any real issue with that.

 

One thing i am surprised at is that the same issue with comparison order summary that existed when i first purchased this software still exists, even after bringing it to their attention in early 2012. And again i applied the same fix i did back then to fix this.

 

I have attached the order summary image showing before appearance and after my mod.

 

here is what i did.

 

in orderforms/comparison/viewcart.tpl

 

Original code:

 


<table width="100%" cellpadding="2">
<tr><td width="100">{$LANG.clientareafirstname}</td><td>{if $loggedin}{$clientsdetails.firstname}{else}<input type="text" name="firstname" style="width:80%;" value="{$clientsdetails.firstname}" />{/if}</td></tr>
<tr><td>{$LANG.clientarealastname}</td><td>{if $loggedin}{$clientsdetails.lastname}{else}<input type="text" name="lastname" style="width:80%;" value="{$clientsdetails.lastname}" />{/if}</td></tr>
<tr><td>{$LANG.clientareacompanyname}</td><td>{if $loggedin}{$clientsdetails.companyname}{else}<input type="text" name="companyname" style="width:80%;" value="{$clientsdetails.companyname}" />{/if}</td></tr>
<tr><td>{$LANG.clientareaemail}</td><td>{if $loggedin}{$clientsdetails.email}{else}<input type="text" name="email" style="width:90%;" value="{$clientsdetails.email}" />{/if}</td></tr>
<tr><td>{$LANG.clientareaaddress1}</td><td>{if $loggedin}{$clientsdetails.address1}{else}<input type="text" name="address1" style="width:80%;" value="{$clientsdetails.address1}" />{/if}</td></tr>
<tr><td>{$LANG.clientareaaddress2}</td><td>{if $loggedin}{$clientsdetails.address2}{else}<input type="text" name="address2" style="width:80%;" value="{$clientsdetails.address2}" />{/if}</td></tr>
<tr><td>{$LANG.clientareacity}</td><td>{if $loggedin}{$clientsdetails.city}{else}<input type="text" name="city" style="width:80%;" value="{$clientsdetails.city}" />{/if}</td></tr>
<tr><td>{$LANG.clientareastate}</td><td>{if $loggedin}{$clientsdetails.state}{else}<input type="text" name="state" style="width:80%;" value="{$clientsdetails.state}" />{/if}</td></tr>
<tr><td>{$LANG.clientareapostcode}</td><td>{if $loggedin}{$clientsdetails.postcode}{else}<input type="text" name="postcode" size="15" value="{$clientsdetails.postcode}" />{/if}</td></tr>

 

MY Mod - (this is not the whole section that exists there - this is just the part that i changed)

I added size attribute such as size="30" and removed the style="width:80%;" entirely.

 

<table width="100%" cellpadding="2"> 
<tr><td width="100">{$LANG.clientareafirstname}</td><td>{if $loggedin}{$clientsdetails.firstname}{else}<input type="text" name="firstname" size="30" value="{$clientsdetails.firstname}" />{/if}</td></tr>
<tr><td>{$LANG.clientarealastname}</td><td>{if $loggedin}{$clientsdetails.lastname}{else}<input type="text" name="lastname" size="30" value="{$clientsdetails.lastname}" />{/if}</td></tr>
<tr><td>{$LANG.clientareacompanyname}</td><td>{if $loggedin}{$clientsdetails.companyname}{else}<input type="text" name="companyname" size="30" value="{$clientsdetails.companyname}" />{/if}</td></tr>
<tr><td>{$LANG.clientareaemail}</td><td>{if $loggedin}{$clientsdetails.email}{else}<input type="text" name="email" size="30" value="{$clientsdetails.email}" />{/if}</td></tr>
<tr><td>{$LANG.clientareaaddress1}</td><td>{if $loggedin}{$clientsdetails.address1}{else}<input type="text" name="address1" size="30" value="{$clientsdetails.address1}" />{/if}</td></tr>
<tr><td>{$LANG.clientareaaddress2}</td><td>{if $loggedin}{$clientsdetails.address2}{else}<input type="text" name="address2" size="30" value="{$clientsdetails.address2}" />{/if}</td></tr>
<tr><td>{$LANG.clientareacity}</td><td>{if $loggedin}{$clientsdetails.city}{else}<input type="text" name="city" size="30" value="{$clientsdetails.city}" />{/if}</td></tr>
<tr><td>{$LANG.clientareastate}</td><td>{if $loggedin}{$clientsdetails.state}{else}<input type="text" name="state" size="25" value="{$clientsdetails.state}" />{/if}</td></tr>
<tr><td>{$LANG.clientareapostcode}</td><td>{if $loggedin}{$clientsdetails.postcode}{else}<input type="text" name="postcode" size="15" value="{$clientsdetails.postcode}" />{/if}</td></tr>

 

As you can see it looks great now.

ordersummary.jpg

Link to comment
Share on other sites

Ok all done and looks good, the only other thing so far was that it still did not pass W3C validation because of two items in which again i notified whmcs of in the beginning of 2012. But they are very easy fixes, so its not a major deal, although i do hope they fix these going forward.

 

 

In the lang file.

 

It is the use of the "&" that triggered instead of using & or just typing the word "and"

 

Original:

 

$_LANG['clientareadescription'] = "View & update your account details";
$_LANG['announcementsdescription'] = "View our latest news & announcements";

 

My changes:

 

$_LANG['clientareadescription'] = "View & update your account details";
$_LANG['announcementsdescription'] = "View our latest news & announcements";

 

Validates fine now, :)

Link to comment
Share on other sites

Maybe not yet.

 

I finally updated a couple days ago to v5.1.2. Everything seemed to be fine except for the database backups I was getting empty back ups with no names. Found the fix in the V5.1 Patches thread. Patch worked fine. Point here is that patch came out in July 2012 it is now January 2013. Why wouldn't the fix be in the most current download? Was this an over site or do all patches in July need to be added?

Link to comment
Share on other sites

Thank you needed that info. As a side note don't you think it would be easy enough to take fixes form 6 months ago and add them to the current download? A fix is a fix and should be included. I should not have to go and apply a patch that was released 6 months ago.

 

Besides that 5.1.2 is running just fine.

Link to comment
Share on other sites

Yes not only that but also i wish they would make it manditory that during development, before a project section is ever approved by any management or lead tech, that they require the techs to compare their work with the documentation so that the doc are always up to date. Theres not much that leaves you lost that visiting the docs to find out they were written several versions ago.

 

If they piece meal it alittle at a time with each project they work on and each tech doing alittle bit, heck in a year they could redo the whole doc section and it would be wonderful. :)

Link to comment
Share on other sites

Thank you needed that info. As a side note don't you think it would be easy enough to take fixes form 6 months ago and add them to the current download? A fix is a fix and should be included. I should not have to go and apply a patch that was released 6 months ago.

 

Besides that 5.1.2 is running just fine.

 

5.1.2 was patched and is now 5.1.3

Link to comment
Share on other sites

Yes not only that but also i wish they would make it manditory that during development, before a project section is ever approved by any management or lead tech, that they require the techs to compare their work with the documentation so that the doc are always up to date. Theres not much that leaves you lost that visiting the docs to find out they were written several versions ago.

 

If they piece meal it alittle at a time with each project they work on and each tech doing alittle bit, heck in a year they could redo the whole doc section and it would be wonderful. :)

 

We're currently moving towards this. The first step for us right now is finishing the update utility and moving from there. I apologize for any inconvenience this may have caused.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated