Items filtered by date: December 2015

Tuesday, 12 December 2017 10:42

My Composer Notes

What is Composer?

This needs to be cleared up for us newbies. and to start with you will come across the following statements which are both true.

  • Composer is not a package manager
  • Composer is a dependency manager

Composer is not a package manager because you are not downloading complete software packages but dependencies/libraries for your own software package.

Composer is a cross-platform software package that can is used to manage libraries for your PHP software project allowing you to install, update and remove libraries/dependencies from a single point reducing the need to manually update all of the dependecies individually which reduces time and makes it easier to keep things upto date. composer calls on its own library to get the latest updates of the various depencies. A vendor of software can make their software available from this library for others to use.

It is composer of the program mentioned above to manage your dependecies and also a small library to control autoloading of classes and other things.

Composer is useful because some packages use mulitple dependancies to get them to work and composer allows you to always get the latest version of all of the packages, or specify package numbers for your project. This process also correctly sets up all the required includes up as needed. This can reduce the time needed to update all of the packages.

The Wonderful World of Composer - YouTube - This is brilliant video that will explain Composer completely.

How does it Work?

  • Installing Windows Composer  does the following
    • Installs Composer
    • Puts the Composer binary into path
    • autodetects your php.exe and allows you to choose which if you have more than one.
  • Files
    • Composer installs all of the libraries usually to a folder called /vendor/ and is controlled by a single JSON text file which is parsed by the particular version of Composer you are using.
    • Each package that is downloaded is registered with the Composer framework.
    • There is sha-1 string for both the whole 'Composer vendor library' and for the inidividual dependencies which are stored in the composer.lock file. this allows the tracking of the various assets to see if they have been updated or just to compare against packages withing the Packagist repository.
    • composer.json - Is the control files used for the composer packages used within your project. This file allows multiple packages to be downloaded and combined
    • The standard folder to use is /vendor/
    • All dependecies will be installed into the vendor folder. they all have a unique name so collisions will not be an issue.
  • Commands
    • Run the command  composer install in the folder where you want you dependencies to be installed and if the composer.json file is present it will use it for instruction.
    • I can install motranslator by navigating to where i want it and typing composer require phpmyadmin/motranslator as you can see this has the require command in the string.
    • This gets the latest stable version of the called software, in the case motranslator - composer require phpmyadmin/motranslator
    • composer require phpmyadmin/motranslator from the Windows commandline will add this dependency to your Composer library, or build a new library if there is not one already there.
  • You only need to include the autoload.php once in your software project and composer will load all dependancies. This is all you need in your PHP project to get Composer.
    require vendor/autoload.php
Published in PHP

When using mPDF to generate a PDF from a template it renders one or more tables and the fonts within them smaller than what they are in the template.

Cause

Look at the code below:

<!-- Invoice details -->
<td valign="top" align="right" width="200">
    <table border="0" cellpadding="3" cellspacing="0" style="border-collapse: collapse;">
        <tr>
            <td valign="top" width="90%" align="right"></td>
            <td align="top" class="olotd5" width="200">
                <table width="180" border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse;">
                    <tr>
                        <td>
                            <b>{t}Invoice ID{/t} - </b>{$invoice_details.invoice_id}<br>
                            <b>{t}Status{/t} - </b>{$workorder_details.status}<br>
                            <b>{t}Date{/t} - </b>{$invoice_details.date|date_format:$date_format} <br>
                            <b>{t}Due Date{/t} - </b>{$invoice_details.due_date|date_format:$date_format}<br>
                            <b>{t}Work Order{/t} - </b>{$invoice_details.workorder_id}<br>
                            <b>{t}Technician{/t} - </b>{$employee_details.display_name}<br>                                        
                            <b>{t}Credit Terms{/t} - </b>{$customer_details.credit_terms}<br>                                       
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
</td>

 and you can see this line.

<td valign="top" width="90%" align="right"></td>

mPDF cannot handle this empty cells with sizing statements.

Solution

I removed this line and then the template was rendered correctly.

Published in PHP
Sunday, 10 December 2017 13:27

Netbeans search

Search is not working

  • make sure there is nothing in the 'File Name Patterns' box
  • mark text can cauyse some issues so go to options->editor->marked occurances, then off/on
  • reboot netbeans
  • make sure you have the correct scope selected

Regex search

These are some examples of searches in netbeans using a Regex pattern

So i want to change some <input> tags.

<input .....>
to
<input ..... />

 The following will search for all <input strings that do not terminate in />

Search String:
<input(.*)([^\/])>

Replacement String:
<input$1$2 />

However this does not take into account of whether there is a space at the end so I need to do another search for:

<input(.*)({space}){2}\/>  - needs finishing

Notes

  • ^ is a 'not' character when within []
    [^\/]
Published in Netbeans
Sunday, 10 December 2017 13:04

My dhtmlxCombo Notes

These are some notes I made while integrating dhtmlxCombo into QWcrm.

  • in the package the code you want is ../codebase/
  • this codebase is prefilled with the dhxcombo_material skin
  • you don't need ../codebase/dhtmlxcombo_deprecated.js
  • you dont need ../codebase/fonts/ ? - doesnt seem to be called for what i use
  • fontawesome, dunno what this is for, again, something else
  • to add a new skin goto ../skins/ and into the folder of the skin you want. copy these files to ../codebase/ - the css will be overwritten
  • for QWcrm I use skyblue
  • only these JS and CSS are needed
    <script src="/{$theme_js_dir}dhtmlxcombo/dhtmlxcombo.js"></script>
    <link rel="stylesheet" href="/{$theme_js_dir}dhtmlxcombo/fonts/font_roboto/roboto.css"/>
    <link rel="stylesheet" href="/{$theme_js_dir}dhtmlxcombo/dhtmlxcombo.css">
  • roboto.css is for foreign characters, it might be used - cant be sure. i have not needed it yet
  • If existing select object was defined as parent - dhtmlxCombo will take all data from it (list of options, sizes, tabindex, name)

Example code I used in QWcrm

// This Call Transforms the Select Element by ID to a real Combo Box
var combo = dhtmlXComboFromSelect('description['+ iteration+']');

// This Call Transforms the Select Element by ID to a real Combo Box
 var combo = dhtmlXComboFromSelect('rate['+ iteration+']');
  • The code above auto resizes the combobox
  • var combo = can be removed unless you want to add options
var combo = dhtmlXComboFromSelect('rate['+ iteration+']');
combo.setSize(90);             // This sets the width of the combo box and drop down options width
//combo.setOptionWidth(200);    // this sets the width of the options drop down ONLY

Links

Published in Javascript
Sunday, 10 December 2017 12:50

My Keep a Changelog Notes

These are my note for Keep a Changelog

Version Number Links

The links on the version number [1.0.0] will not work unless they have the corresponding link below i.e.

[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.3.0...v1.0.0
[0.3.0]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.2.0...v0.3.0
Published in General
Saturday, 09 December 2017 14:47

Joomla White Screen of Death

Published in Joomla
Saturday, 09 December 2017 13:18

Blockquote

Centered Blockquotes

Option 1

This is an example blockquote.
<div style="text-align: center;">
    <blockquote style="display: inline-block; width: 200px;">This is an example blockquote.</blockquote>
</div>

Option 2

This is an example blockquote.

<div style="text-align: center;">
    <blockquote style="display: inline-block; max-width: 450px;">
        <p>This is an example blockquote.</p>
    </blockquote>
</div>

Option 3

This is an example blockquote.
<blockquote style="display: table; max-width: 450px; margin: 0 auto;">This is an example blockquote.</blockquote>

Notes

These width settings work aswell:

  • width: 50%
  • max-width: 450px;

 Links

Published in Styled Elements
Saturday, 09 December 2017 13:11

Divi - Basic client usage instructions

These ar the absolute basic instructions I give out to client who insist on editing their website.


Hi Client,

Here are the details for editing the website.

Your website is powered by WordPress that uses the Divi builder by elegant themes.

Help Sources

How to get to a page and edit it (quick start)

  • Use Google Chrome browser
  • Login to the admin section with the details above
  • Open up a new tab and navigate to the page in question
  • Click on enable visual builder
  • You can now drag, drop and edit the page
  • To save the page
    • At the bottom there is a ball with 3 dots in it, click it
    • Then click on the save button that has appeared
    • Now exit the visual builder by clicking the button at the top ‘exit visual builder’
    • You can now navigate to another page and repeat the process
  • Done
  • Now logout

Thanks

QuantumWarp

Published in Wordpress
Saturday, 09 December 2017 12:29

Responsive Menu Layout

This is a standard menu layout that ustilises the Joomlashine framework for its fluid structure but could easily be adapted to bootstrap.

Demo

This will not look right because the columns are not fluid due to theri being no JSN Framework installed, but it will give you an idea.

The Example Menu

Starters

This is a tag line

Soup of the day
Served with a roll and butter
£4.25
Prawn Cocktail
Greenland prawns on a bed of crisp lettuce and topped with a marie rose sauce
£4.95
Ardennes Pate
Served with a salad garnie & toast
£5.75

Main Course

Steaks from the Grill
Cooked to your liking

8 oz Rib-Eye Steak £14.95
Steak sauce
Pepper - a cracked black peppercorn sauce
Creamy Stilton Sauce
£2.25
Gammon Steak with Pineapple & egg

Large
£11.95

Small
£6.95

Fish

This is a tag line

Breaded Golden Scampi & Chips

Large
£9.25

Small
£5.75

Fresh Fish & Chips Peas/Salad

Large
£9.25

Small
£5.75

Vegetarian

This is a tag line

Vegetarian Lasagne
Served with Slices of garlic bread topped with grilled mozzarella chees
£8.25
Vegetable Curry.
Served with Boiled rice or 1/2 & 1/2
Curry’s served with a puppodum
£8.25

English

Main courses served with a choice of potatoes and vegetables

Roast Beef & Yorkshire pudding £8.95
Steak and Ale Pie £8.75
Cumberland Sausages & onion gravy £8.25
Beef Burger and Chips
Served with a salad garnish and a salsa dip
£6.95
Cheeseburger and Chips
Served with a salad garnish and a salsa dip
£7.25
Bacon Cheeseburger and Chips
Served with a salad garnish and a salsa dip
£7.75
3 Sausages Chips and beans £5.50
2 Sausages 2 Bacon Chips and beans £5.80

If you have any allergy requirements ask to speak to the chef.

All our meals are cooked to order so during busy times there may be a wait, this is because everything is as fresh as possible and has been sourced locally where possible.

Continental

This is a tag line

Lasagne Classico (Meat)
Served with Salad & garlic bread
£9.25
Chilli and Rice or Chips £8.75
Chicken Tikka Masala (Medium/Hot) £9.25
Beef Madras (Hot) £9.25

Main courses served with Boiled rice or 1/2 & 1/2
Curry’s served with a puppodum

Salads

This is a tag line

Home Roast Ham Salad £7.25
Breast of Chicken Salad £7.25
Roast Beef Salad £7.25
Tuna and Prawn Salad £7.65

Jacket Potatoes

Served with a salad garnish and coleslaw

Chilli £7.25
Prawn & Tuna £7.75
Ham, Pineapple and Cheese £7.25
Cheese and Pineapple £6.95
Cheese and Beans £6.95

Side Orders

This is a tag line

Chips £2.50
Side Salad £2.25
Onion rings £2.50
Deli roll and butter £1.40
Garlic Bread with Cheese £4.25
Egg £0.95

Soup of the day and a sandwich on brown or white bread served with a salad garnish & coleslaw..£5.00 *

Sandwichs

On brown or white bread
Served with a salad & coleslaw

Home Cooked Gammon Ham £4.25
Roast Topside of Beef £4.25
Breast of Chicken £4.25
Tuna £4.25
Cheese and Tomato or Onion or Branston £4.25
Prawn £4.50

If you have any allergy requirements ask to speak to the chef.

All our meals are cooked to order so during busy times there may be a wait, this is because everything is as fresh as possible and has been sourced locally where possible.

Code

<h1>The Example Menu</h1>

<div class="grid-layout">
<div>

    <h2 style="margin-top: 20px;">Starters</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">This is a tag line</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Soup of the day</strong><br>Served with a roll and butter</td>
                <td><strong>£4.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Prawn Cocktail</strong><br>Greenland prawns on a bed of crisp lettuce and topped with a marie rose sauce</td>
                <td><strong>£4.95</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Ardennes Pate</strong><br>Served with a salad garnie & toast</td>
                <td><strong>£5.75</strong></td>
            </tr>
        </tbody>
    </table>

    <h2 style="margin-top: 20px;">Main Course</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">Steaks from the Grill<br>Cooked to your liking</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>8 oz Rib-Eye Steak</strong></td>
                <td><strong>£14.95</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Steak sauce</strong><br><strong>Pepper</strong> - a cracked black peppercorn sauce<br><strong>Creamy Stilton Sauce</strong></td>
                <td><strong>£2.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Gammon Steak with Pineapple & egg</strong></td>
                <td><p><strong>Large<br>£11.95</strong></p><p><strong>Small<br>£6.95</strong></td>
            </tr>
        </tbody>
    </table>
    
    <h2 style="margin-top: 20px;">Fish</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">This is a tag line</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Breaded Golden Scampi & Chips</strong></td>
                <td><p><strong>Large<br>£9.25</strong></p><p><strong>Small<br>£5.75</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Fresh Fish & Chips Peas/Salad</strong></td>
                <td><p><strong>Large<br>£9.25</strong></p><p><strong>Small<br>£5.75</strong></td>
            </tr>
        </tbody>
    </table>    
    
</div>
<div>

    <h2 style="margin-top: 20px;">Vegetarian</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">This is a tag line</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Vegetarian Lasagne</strong><br>Served with Slices of garlic bread topped with grilled mozzarella chees</td>
                <td><strong>£8.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Vegetable Curry.</strong><br>Served with Boiled rice or 1/2 & 1/2<br>Curry’s served with a puppodum</td>
                <td><strong>£8.25</strong></td>
            </tr>
        </tbody>
    </table>
    
    <h2 style="margin-top: 20px;">English</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">Main courses served with a choice of potatoes and vegetables</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Roast Beef & Yorkshire pudding</strong></td>
                <td><strong>£8.95</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Steak and Ale Pie</strong></td>
                <td><strong>£8.75</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Cumberland Sausages & onion gravy</strong></td>
                <td><strong>£8.25</strong></td>
            </tr>            
            <tr style="height: 30px;">
                <td><strong>Beef Burger and Chips</strong><br>Served with a salad garnish and a salsa dip</td>
                <td><strong>£6.95</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Cheeseburger and Chips</strong><br>Served with a salad garnish and a salsa dip</td>
                <td><strong>£7.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Bacon Cheeseburger and Chips</strong><br>Served with a salad garnish and a salsa dip</td>
                <td><strong>£7.75</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>3 Sausages Chips and beans</strong></td>
                <td><strong>£5.50</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>2 Sausages 2 Bacon Chips and beans</strong></td>
                <td><strong>£5.80</strong></td>
            </tr>                        
        </tbody>
    </table>

</div>
</div>

<p style="margin-bottom: 20px; padding: 20px; text-align: center; background-color: #878887;"><strong><em><span style="font-size: 11pt; color: #fffefd;">If you have any allergy requirements ask to speak to the chef.<br /><br />All our meals are cooked to order so during busy times there may be a wait, this is because everything is as fresh as possible and has been sourced locally where possible.</span></em></strong></p>

<div class="grid-layout">
<div>

    <h2 style="margin-top: 20px;">Continental</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">This is a tag line</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Lasagne Classico (Meat)</strong><br>Served with Salad & garlic bread</td>
                <td><strong>£9.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Chilli and Rice or Chips</strong></td>
                <td><strong>£8.75</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Chicken Tikka Masala (Medium/Hot)</strong></td>
                <td><strong>£9.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Beef Madras (Hot)</strong></td>
                <td><strong>£9.25</strong></td>
            </tr>
        </tbody>
    </table>
    
    <p><span style="font-size: 14pt; color: #878887;">Main courses served with Boiled rice or 1/2 & 1/2<br>Curry’s served with a puppodum</span></p>

    <h2 style="margin-top: 20px;">Salads</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">This is a tag line</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Home Roast Ham Salad</strong></td>
                <td><strong>£7.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Breast of Chicken Salad</strong></td>
                <td><strong>£7.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Roast Beef Salad</strong></td>
                <td><strong>£7.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Tuna and Prawn Salad</strong></td>
                <td><strong>£7.65</strong></td>
            </tr>
        </tbody>
    </table>
    
    <h2 style="margin-top: 20px;">Jacket Potatoes</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">Served with a salad garnish and coleslaw</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Chilli</strong></td>
                <td><strong>£7.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Prawn & Tuna</strong></td>
                <td><strong>£7.75</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Ham, Pineapple and Cheese</strong></td>
                <td><strong>£7.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Cheese and Pineapple</strong></td>
                <td><strong>£6.95</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Cheese and Beans</strong></td>
                <td><strong>£6.95</strong></td>
            </tr>
        </tbody>
    </table>    
    
</div>
<div>

    <h2 style="margin-top: 20px;">Side Orders</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">This is a tag line</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Chips</strong></td>
                <td><strong>£2.50</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Side Salad</strong></td>
                <td><strong>£2.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Onion rings</strong></td>
                <td><strong>£2.50</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Deli roll and butter</strong></td>
                <td><strong>£1.40</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Garlic Bread with Cheese</strong></td>
                <td><strong>£4.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Egg</strong></td>
                <td><strong>£0.95</strong></td>
            </tr>
        </tbody>
    </table>
    
    <p><span style="font-size: 14pt; color: #878887;">Soup of the day and a sandwich on brown or white bread served with a salad garnish & coleslaw..£5.00 *</span></p>
    
    <h2 style="margin-top: 20px;">Sandwichs</h2>
    
    <p><span style="font-size: 14pt; color: #878887;">On brown or white bread<br>Served with a salad & coleslaw</span></p>
    
    <table border="0" cellspacing="0" cellpadding="10">    
        <colgroup>
            <col style="width: 300px; height: 16.4pt;" valign="top">
            <col style="width: 40px; height: 16.4pt;" valign="top">
        </colgroup>
        <tbody>
            <tr style="height: 30px;">
                <td><strong>Home Cooked Gammon Ham</strong></td>
                <td><strong>£4.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Roast Topside of Beef</strong></td>
                <td><strong>£4.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Breast of Chicken</strong></td>
                <td><strong>£4.25</strong></td>
            </tr>            
            <tr style="height: 30px;">
                <td><strong>Tuna</strong></td>
                <td><strong>£4.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Cheese and Tomato or Onion or Branston</strong></td>
                <td><strong>£4.25</strong></td>
            </tr>
            <tr style="height: 30px;">
                <td><strong>Prawn </strong></td>
                <td><strong>£4.50</strong></td>
            </tr>                                    
        </tbody>
    </table>

</div>
</div>

<p style="margin-bottom: 20px; padding: 20px; text-align: center; background-color: #878887;"><strong><em><span style="font-size: 11pt; color: #fffefd;">If you have any allergy requirements ask to speak to the chef.<br /><br />All our meals are cooked to order so during busy times there may be a wait, this is because everything is as fresh as possible and has been sourced locally where possible.</span></em></strong></p>

 

Published in Joomlashine

After upgrading your Joomla install you get the one of following or similiar error:

  • Error displaying the error page: Unknown column 'a.client_id' in 'where clause': Unknown column 'a.client_id' in 'where clause'
  • 1054 Unknown column 'client_id' in 'field list'

Cause

This is cause by the finalising scripts being run for some reason. I think the joomla team know about this and is probably fixed by now.

Solution

I ran the Joomla upgrade and then the error 1054 occurs

Menu Items are missing

Done

Links

Published in Joomla
Page 12 of 96