I’m Adam Palmer, and I’m a UK based PHP Programmer. I represent APNIC Solutions Ltd – we’re a well established London, UK based firm with a massive amount of experience building clean and powerful solutions for web businesses. We specialize in secure, high traffic applications, specifically ecommerce.
As head of the firm, I come from a background of extensive experience in a huge variety of different technologies. Bespoke solutions are our core competency. We work with our own dedicated team of offshore developers, built and shaped over the last 5 years, who deliver professional PHP/MySQL code and SEO at a fraction of the regular cost.
We offer you a single point of contact in the UK who will manage your solution from conception to delivery. You need never deal with foreign developers, missed deadlines and broken or incomplete software again!
Contact us to discuss your ideas today.
| Discuss & Collaborate Discuss your ideas with us, and we will shape the future of your solution. Should you have a team of developers already, we are more than happy to work along side them, or even just provide the consultancy, ground work and technical direction for your project. |
||
| Plan & Install Once the final points of your solution are documented, we’re ready to start setting up and installing the framework and identifying any potential issues that haven’t been located yet. This ensures that major bugs are considered and accounted for now and not after your solution goes live. |
||
| Build, Configure & Test Now the big part.. building your solution for you, configuring and accounting for every aspect, and testing rigorously as we go. We pride ourselves on our extensive testing and SEO facilities, an often overlooked key part of solution design. Not only do we design a fantastic solution, but unlike many other providers, we make sure that it actually works when your users start pouring in. |
||
| Finalize & Deliver Now your solution is built, it needs some polishing off, further testing, and evaluation to ensure that it meets all of your initial needs. Expect an ideas document at this point, informing you of all the great things your system can and in future could do that you didn’t even think of! |
||
| Support & Maintain Your ideas have evolved into a final product now and are ready to go. You’ll be fully equipped with all the interfaces that you need to utilize this solution and all the reporting you need to enable you to make informed and successful business decisions in future. We’ll support you all the way through, happy to maintain, and get ready to take your initial successes and build upon them. |
Contact us to discuss your ideas today.
Tags: adam palmer, apnic solutions, php programmer, php programming
Yesterday, I offered a free website security scan. Why would you need a scan? I went into a little detail then, but I’d like to expand on what I wrote about, that being my offering my services as a PHP programmer.
If you’re an online merchant, your server needs to be PCI compliant. Otherwise, you not only run the risk of being hacked and losing customer data, but you also run the risk of facing major fines. One fine would be enough to wipe just about any small business out.
New security challenges arise every day. In fact, they arise every hour, it seems. Will your site stand up to the challenge? Will it meet that challenge? Only by regular security scans will you know. Even if you’re not a merchant, you need scans, because I am willing to bet that you don’t want to be hacked. All sorts of unsavory things can occur if that happens.
You could lose your databases. You could lose all data on your server. Your users’ information could be compromised. There are many things that could happen, and none of them are pleasant.
So, contact me for your free security scan today. As I wrote earlier, all I ask in return is that you have a sincere intent of using my services.
Yesterday, I discussed how you can redirect your HTML files to PHP files. Why is it important to do so?
There are certainly no security concerns involved here, but you probably don’t want to lose your visitors who may bookmark certain pages, nor do you want to lose search engine traffic, because the HTML links will still show up in those engines until they crawl your changes.
That’s where the 301 redirect comes in. This is the best sort of redirect to use, because it is search engine friendly. What it tells search engines is that the page has moved permanently to the forwarding location you provide, which in this case is a PHP file. Essentially, if you do it this way, the search engines won’t skip a beat, and you’ll keep your traffic. The last thing you want to do is let search engines crawl 404 errors.
If you need help with these sorts of things, or if you need a skilled PHP programmer to help you sort out your conversion, I would be more than happy to take a look at your specific needs, and devise a plan for you. This includes making sure that your PHP code and your setup is secure, as PHP is a valuable tool, but a potential security risk if not handled correctly.
My rates are reasonable, and I offer a wealth of experience that can benefit you. Simply get in touch with me for a custom quote!
Tags: 301 redirects, html, php programmer, search engine, traffic
You may be browsing through my site, or maybe you came here because you’re looking for a PHP programmer. Allow me to introduce myself. I am Adam Palmer, and I’m a freelance website security consultant, developer, and, of course, a PHP programmer. I’m willing and able to do most any web, Linux, or hosting-related project.
If you have something along those lines that needs to be done, simply contact me, and we can discuss your needs in greater detail.
In addition to doing this sort of work, I run APNIC Solutions, Ltd., which is a leader in network and business integration. You can be confident that when you hire me for your PHP, web, or other needs, you are getting a competent, skilled industry leader who will do a smashing job for a reasonable fee.
Feel free to browse through my blog and read my articles on a variety of PHP and security topics. Then, get in touch with me to see what I can do for you! If all you need is a consultant to point you in the right direction and help you get to to the finish line, I would be more than happy and honoured to be that person.
Tags: Linux, PHP, php programmer, web, website security consultant
While it’s all well and good to spend considerable time securing your PHP applications, there is something else that you can do, or rather not do. As a PHP programmer, I see people do one alarming thing: they download and install PHP applications from questionable sources.
While there are a lot of honourable programmers who offer their scripts for free, there are plenty of hackers who enjoy deploying applications that cause harm to others. I discussed this earlier, but it bears repeating: trust your source. Know your source.
(more…)
Tags: php programmer, php programmer resume, safety, script, security, trust
An important thing to consider when accepting input from users is validation. When PHP is used, powerful functions can be performed. The problem is that it can also do powerful and bad things if a malicious user is entering data which isn’t validated.
Consider this: you accept input asking for a month or year. The problem is that a user decides to enter “”;rm -rf *” after the year, and in so doing could cause the deletion of your whole website. Obviously, this is not a good thing, so what to do? Data validation is the answer. As the name suggests, it validates or verifies data, ensuring that it complies to form.
(more…)
Tags: injection, malicious code, php programer, php programmer resume, sql, validation
In recent days, I’ve talked about the importance of server hardening and security, but there’s another aspect of the integrity of your server that must not be ignored: PHP code.
If you don’t have secure PHP code, you may find yourself the victim of numerous type of attacks, including SQL injection attacks, which as the name suggest, goes directly after your database, which in most cases is the very heart of your website or application.
(more…)
Tags: compromised, php programmer, resume, security, sql injection
Base64 is a type of encoding (NOT encryption). Essentially, you can take any binary data and encode it into one of 64 characters for more information on the encoding process and how this is done, visit http://en.wikipedia.org/wiki/Base64.
It is useful for a variety of things, specifically encoding non standard characters that may not be safe to pass around such as in a browser address bar or in a plaintext email..
Here’s one example..
<?php
$obj = new stdClass();
$obj->a = “test”;
$obj->b = “string”;
$obj->c = 12345;
$output = base64_encode(serialize($obj));
echo $output;
?>
This returns ‘Tzo4OiJzdGRDbGFzcyI6Mzp7czoxOiJhIjtzOjQ6InRlc3QiO3M6MToiYiI7
czo2OiJzdHJpbmciO3M6MToiYyI7aToxMjM0NTt9′
We could now pass this as an HTTP safe string between pages; decoding using $v = unserialize(base64_decode());
This is obviously not an optimal way of storing or passing this example data between various pages however is one example of how base64 encoding can be used.
According to memcached is a distributed object memory caching system. It can be used to set and get data by keys by any application that supports sockets.
As a website security consultant I advise you to ensure that your memcache server runs on 127.0.0.1 only and that you secure your server. Anyone with access to the server can telnet to the server’s local interface and get/set your memcache data.
I’ve used memcached for a number of PHP/MySQL projects, where I want greater cache control on database queries, than just relying on MySQL’s inbuilt caching abilities.
Now, whilst memcached should not be used to mask bad database design and optimization, or badly written SQL queries, it can help dramatically with queries that simply take a long time and have already been optimized as far as possible.
Assume that you had a simple database query wrapper:
(more…)
Tags: memcache, memcached, MySQL, PHP
Using curl with PHP is incredibly easy. Firstly you’ll need to make sure that you have the PHP curl library installed on your system. On Debian, this is as easy as apt-get install php5-curl
Now you can try the following:
<?php
$handle = curl_init();
curl_setopt($handle, CURLOPT_URL, “http://www.google.com/”);
curl_setopt($handle, CURLOPT_HEADER, 0);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($handle);
curl_close($handle);
print_r($output);
?>
You can also check http://uk.php.net/manual/en/function.curl-setopt.php to take a look at the other options that curl_setopt can take.
curl can also post data to the remote server via POST or GET and also has the ability to save and retransmit cookies.