Looks as if you want something like this (plus I'm a big proponent of newlines and consistent indenting of SQL):
SELECT
ac.*,
di.*,
ip.*,
pa.*,
pb.*
FROM cms_active_starter ac
JOIN cms_dig_starter di ON di.date = ip.transaction_date
JOIN cms_parkeon_starter pa ON pa.terminal_date = di.date
JOIN cms_active_starter ac ON ac.paybyphone_number = pb.verrus_lot_id
JOIN cms_ips_starter ip ON ip.amount = pa.amount
WHERE ac.old_meter_number = ip.pole limit 0, 30;
In fact, since you apparently want every column of every table, you could replace all those <table_alias>.* instances in the SELECT clause with just a single "*" character.