-
Yes, there is. Obtain a connection to the MySQL server (e.g. via phpMyAdmin, from the command line or through a simple script) and enter the following query:
update accounts set password = md5('your_new_password') where id = 1;
The name "accounts" may differ if you specified a table name prefix; it may, for instance, be "chirpy_accounts". The query "show tables;" will tell you the table...
2010-01-01 16:04:32 UTC in Chirpy!
-
If you look under src/templates, you'll find the source HTML files for any theme. You'll probably want to insert your AdSense code into _head.html or _foot.html.
That won't suffice though, since AdSense isn't compatible with XHTML 1.1, which Chirpy! uses by default. However, you can easily switch to another document type, by (again) opening _head.html and changing the first lines, which...
2010-01-01 15:53:35 UTC in Chirpy!
-
Perhaps there are more descriptive error logs somewhere?.
2009-09-22 17:49:02 UTC in Chirpy!
-
I ran a quick trace of the HTTP request, which indeed confirms the 406 error. 406 is the code for "Not Acceptable", which usually seems to be caused by the mod_security Apache module.
If the server indeed has that module enabled, are you at all able to configure or possibly even disable it? I must admit I don't have any experience with it myself.
If the module isn't enabled, we'll have to...
2009-09-19 23:03:36 UTC in Chirpy!
-
ceetee committed revision 326 to the Chirpy! SVN repository, changing 1 files.
2009-09-12 16:59:14 UTC in Chirpy!
-
At least we're making progress. :-)
I'm attaching a modified version of res/themes/default/js/live_rating.js. Please make a backup of your own live_rating.js (or extract it from the Chirpy! download when you're done) and replace the file with the attached one.
The modified script has a few descriptive JavaScript alerts, at all points where the error may be occurring. Upon an error, a...
2009-09-07 13:35:54 UTC in Chirpy!
-
The HTML::Template Perl module isn't installed. If you administer the machine yourself, you can use the `cpan` command to install it. If not, you can either get HTML/Template.pm from http://search.cpan.org/ or ask your host to install it for you.
More information can be found in Chirpy!'s installation instructions. There are a few other prerequisite modules that may not be installed on the...
2009-08-03 22:35:55 UTC in Chirpy!
-
I've also committed a fix for this pretty common issue to the Subversion repository. If you're feeling adventurous, you can install the trunk version using the instructions at http://chirpy.sourceforge.net/svn/.
2009-07-31 11:06:37 UTC in Chirpy!
-
ceetee committed revision 325 to the Chirpy! SVN repository, changing 1 files.
2009-07-31 10:51:06 UTC in Chirpy!
-
First off, sorry about the long wait.
The problem seems to be that some INI files (specifically, src/locales/en-US.ini) contain superfluous carriage returns (CR). Windows uses CR+LF for line endings, whereas UNIX only uses LF. If you put a Windows text file (such as an INI file) on a UNIX machine (such as your server), the CR characters get in the way. In Chirpy!'s case, you can verify this...
2009-07-30 12:51:21 UTC in Chirpy!