403 forbidden error - post an ad button solution
for all non .com tlds .. we get error while pressing post an ad button .. so i have tried a different method to tackle it
in header. php
replace the line with
<a href="<?php echo CP_ADD_NEW_URL; ?>" class="obtn btn_orange"><?php _e( 'Post an Ad', APP_TD ); ?></a>
to
<?php if ( $user_ID ) { ?>
<!-- to anyone logged in -->
<a href="siteurl/add-new/" class="obtn btn_orange"><?php _e( 'Post an Ad', APP_TD ); ?></a>
<?php } else { ?>
<!-- to anyone not logged in -->
<a href="siteurl/login/" class="obtn btn_orange"><?php _e( 'Post an Ad', APP_TD ); ?></a>
<?php } ?>
with permalinks on replace siteurl with your site name
and it will work properly.. no mod_security.. nothing
cheers