|
Protection against PHP Injections, SQL injections and flood attacks for Joomla 1.5 |
|
|
Indexer Component in Action- Adding Keywords |
|
|
Wednesday, 14 November 2007 |
|
See this Video showing the Content Indexer in action. Here we just show how to create keywords and how the extension works..
|
|
Last Updated ( Friday, 14 March 2008 )
|
|
Sample configuration of our Joomla/PHPlist extensions |
|
|
Tuesday, 23 October 2007 |
|
Install the PHPlist Registration Component - If you wish to only use the module you don't need to use this as your default registration component but you need to have it installed.
- PHPlist ID = ID for the MAIN list Id (in PHPlist) Where you want your users to subscribe to
-PHPlist Events List ID = ID for the second list (if required)
(should call it "Second list" for the next release)
-Attribute
ID = In order for you to insert the name of the subscriber you need to
create what's known in phplist as an attribute. Here you insert the ID
for that attribute
In order for our extensions to work your Joomla and Phplist Database users must be the same!
Step 1: Sample Configuration of PHP list Component

Step 2: After installation of the Subscriber Module, you need to fill out the basic configuration parameters.

After you've published the module go to the Joomla's Frontend and test it:


In PHPlist Backend:


Hope it helps!
|
|
Last Updated ( Friday, 14 March 2008 )
|
|
Constant "Admin Session Expired" error or no sessions persist in Joomla |
|
|
Wednesday, 10 October 2007 |
|
Many of us have encountered an issue with the admin session in web servers that are not optimized to run Joomla. Please read below to find out more details about the admin session expired problem.
Problem:
- You can login to the front end but not the backend or
- Your admin session doesn't persist
You do NOT receive an incorrect username/password message - you are just dumped back to login screen.
Cause:
This may be due to save_session_path not being writable on the webserver.
Solution:
To overcome this issue,
1. request your web host to allow save_session_path, or
2. Create a folder chmod (777); put it above your /public_html/ or /wwwroot/ folder and add to your .htaccess file this line:
php_value session.save_path '/herepath/to/Jooma/newwriteablefolder'
the path to Joomla should be the same as your mosConfig_absolute_path with the additional folder added. No trailing backslash added
|
|
|
Turning Register Globals Emulation Off in Joomla 1.0.13 |
|
|
Wednesday, 10 October 2007 |
|
In Joomla 1.0.13 the Register Globals Emulation is switched off through the Global Configuration, Server Tab > Turn off Register Globals Off.
To see how to turn RG emulation OFF in previous versions go here: INSERT ARTICLE ADDRESS.
|
|
|
Resetting you Joomla admin password |
|
|
Wednesday, 10 October 2007 |
|
To reset your Joomla Admin Password you need access to the Joomla installation Database. Once you're inside find the admin account in the #_users table and in the password field write any of the MD5 hash of passwords:
admin = 21232f297a57a5a743894a0e4a801fc3
secret = 5ebe2294ecd0e0f08eab7690d2a6ee69
OU812 = 7441de5382cf4fecbaa9a8c538e76783
Once you've regained access to your backend remember to set a new password for your admin account.
|
|
|
Renaming the Joomla admin account |
|
|
Wednesday, 10 October 2007 |
|
By default the Joomla administrator account is called "admin". To protect youself, and make it harder for anyone trying to guess your account details is also recomended to change the admin's username to something more difficult.
To accomplish this:
1. Log into the Back End
2. Select User Manager
3. Select the 'admin' user record
4. Change the value in username. (Good user names contain a mix of letters and numbers.)
5. Save
6. Remember the new user name!
If you ever forget the admin user password (or someone breaks in and changes it on you), see this article. INSERT ARTICLE ADDRESS
|
|
Last Updated ( Tuesday, 16 October 2007 )
|
|
|
Turning Register Globals Emulation Off in Joomla 1.0.12 and older Versions |
|
|
Wednesday, 10 October 2007 |
By Default, Joomla also used to come with Register Globals emulation ON, this is to avoid compatibility problems with many poor written third party extensions available for Joomla. This setting has been To turn off this setting Edit the file /globals.php and change the line: define( ‘RG_EMULATION’, 1 ); to define( ‘RG_EMULATION’, 0 ); As you can see you only need to change from number 1 to 0. that's all! |
|
|
|