Archive for php

converting a website from windows to linux / asp to php

Module mod_rewrite URL Rewriting Engine
Most dynamic website pages built on windows platform will have a .asp or .aspx extension.
If your converting a site from windows platform to php and intend on hosting the new site on an apache server then you will probably want to honour the .asp or .aspx pages that have already been [...]

Read more

email marketing – php list

phplist is an open-source newsletter manager.
Its free to download from here
easy to install and use
phplist offers
double opt-in subscription mechanism
scheduling
RSS
list segmentation
click-tracking
attachments
bounce management
bizante customers have been using phplist for several years.
We have found it to be reliable and offer all the functionality to ensure you can send email whilst also staying within European Law.
This means
1) If the [...]

Read more

lost admin password for osTicket

osTicket is is a widely-used open source support ticket system. It seamlessly integrates inquiries created via email, phone and web-based forms into a simple easy-to-use multi-user web interface.
I use osTicket and sometimes I forget my admin password.
Since there is no automated password receovery for the admin user it is necessary to run a MYSQL query [...]

Read more

how to display php errors from within script

Self-Help Troubleshooting
If you can not find any solutions to a php problem you are having, you can enable the “Show Errors” flag in your php script:
#Don’t display errors
ini_set(‘display_errors’,0);
ini_set(‘display_startup_errors’,0);
Change the 0 value to 1

Read more