-
Search
Categories
-
Linux, PHP, LAMP, The Web in a blog- Android – how to develop directly on a phone
- Android drawable default icons – they are free to use
- Android how to read and write files
- Uncompress on the fly when copying a file from a remove location with scp
- Setting up an encrypted volume on an external hard drive on CentOS
- Linux bash – tar tricks
- Implement Selenium tests
- Using a downloaded package without IDE in Java
- CSS selectors optimisation
- Ubuntu Linux on Acer Aspire AO751h
Tag Cloud
alarm array backup begin button character commercial constants coppermine CSV DVD eclipse ecommerce email email server expect firefox font foreach formatting fstab ftp GMail gnome keyboard Lucene marketing memcached mount plugin profiling protect regexp scp Selenium SEO sftp split svn tar utf utf8 Vbulletin Virtual Server Web Dev Security
Category Archives: PHP
PHP – Execute Linux Commands
There are 4 functions: _ exec _ system _ passthru _ shell_exec They basically differ for the return. The best seems to be the last one, if you need the whole command output in your PHP script.
Posted in Linux Command Line, PHP
Leave a comment
PHP Profiling – Profile / Performance
XDebug2 + KcacheGrind php-pecl-xdebug -> rami repository xdebug.profiler_enable=1 xdebug.show_mem_delta=1 xdebug.profiler_output_dir=/var/www/html/profiling/ xdebug.auto_trace=1 xdebug.trace_output_dir=/var/www/html/profiling/traces/
PHP HTML – Display Data in CSV or HTML Table Format
csv_html_dispay
PHP Ecommerce Shopping Cart
Magento: http://www.magentocommerce.com/ Presta: http://www.prestashop.com/
Trac – Integrated SCM & Project Management
http://trac.edgewall.org/
Posted in PHP, Web Development
Leave a comment
PHP Interacting with Google Maps – Points of Interest
You need a key that will be bound to a domain. Documentation http://code.google.com/apis/maps/index.html http://code.google.com/apis/maps/documentation/ http://code.google.com/apis/maps/documentation/staticmaps/ Interesting idea: http://fullmeasure.co.uk/mashups/ecsitemap.htm External Link To find out the latitude and longitude of a point Search for it on maps.google.com. Be sure that is centered … Continue reading
Posted in PHP, Web Service
Leave a comment
PHP Obfuscator and Encoder
Windows http://www.raizlabs.com/software/phpobfuscator/ phpobfuscator_setup
Posted in PHP
Leave a comment
PHP – Display All The Defined Constants
get_defined_constants(true)
