CakePHP project Issue(FCKEditor and Broken links)

WoWAngela

New Member
I am working on a project which is auction site and it is actuallyclone of www.swoop.comthis clone is developed on CakePHP platform and I have a issues there.I purchase that script fromhttp://www.moneymakersnetwork.info/products/Swoopo-Clone-PHP-Script.htmland there is a demohttp://demo.bidscout.netusername- demopassword= password1In that cms there is FCKEditor integrated and it is not working. It isgives me that following error massage.The requested URL /js/fckeditor/editor/fckeditor.html was not found onthis server.Additionally, a 404 Not Found error was encountered while trying touse an ErrorDocument to handle the request.and if I add new category it is come to a drop down list box and thoselinks are brokenok my host is like thishttp://demosite.org/mysite/app and webroot folders are located inhttp://demosite.org/mysite/apphttp://demosite.org/mysite/app/webrootI have a cofig.php file and it is look like thishttp://demosite.org/mysite/app/config\[code\]<?php $config = array( 'Database' => array( 'driver' => 'mysql', 'persistent' => false, 'host' => 'localhost', 'login' => 'myuser', 'password' => 'mypassword', 'database' => 'mydb', 'prefix' => '' ), 'App' => array( 'encoding' => 'UTF-8', 'baseUrl' => '', 'base' => '', 'dir' => 'app', 'webroot' => 'webroot', 'name' => 'mysite', 'url' => 'http://demo.org/mysite/', 'timezone' => 'Asia/Jakarta', 'language' => 'en', 'email' => '[email protected]', 'theme' => 'ddbids', 'currency' => 'USD', 'pageLimit' => 100, 'bidHistoryLimit' => 10, 'remember_me' => '+30 days', 'auctionUpdateFrequency' => 1, 'timeSyncFrequency' => 9, 'gateway' => true, 'demoMode' => false, 'noAutobids' => false, 'cronTime' => 1, 'Image' => array( 'thumb_width' => 100, 'thumb_height' => 100, 'max_width' => 340, 'max_height' => 230 ), 'Dob' => array( 'year_min' => date('Y') - 100, 'year_max' => date('Y') - 17 ) ), 'Paypal' => array( 'url' => 'https://www.paypal.com/cgi-bin/webscr', 'email' => '', 'lc' => 'GB' ), 'Email' => array( 'delivery' => 'smtp', 'sendAs' => 'both', 'host' => 'localhost', 'port' => 25, 'timeout' => 60, 'username' => '', 'password' => '' ), 'Cache' => array( //'disable' => true, 'check' => false, 'time' => '' // relative time such as +1 day, +2 months,+3 minutes ), 'debug' => 1 );?>\[/code\]I am very new to the CakePHP and Please help me
 
Back
Top