Results 1 to 5 of 5

Thread: Moved to Cirtex, now conversions problems!

  1. #1
    Join Date
    Jan 2008
    Posts
    216

    Default Moved to Cirtex, now conversions problems!

    Hi, I just moved my website to cirtex but now I'm experiencing some problems:

    1) Videos conversion problems with error "file less then 1 kb..."
    2) Unable to upload videos from url.
    3) Unable from admin panel to delete videos on flvvideo dir due to rewrite access problems (cmod of this dir is already 777 and already asked to cirtex rewrite mode on)

    As far as I know there is a basic problem of Php 5 not installed or installed in such a way that vshare has really big problems!
    I tried to put this line on the htaccess "AddType application/x-httpd-php5 .php5 .php" to use php5 but then I have an error Zend Optimizer not found!
    (zend optimizer working without that string in htaccess)

    Please, anyone here having Vshare installed and FULLY working on Cirtex server??
    Need some help or tips to solve these problems, please!
    Thank you in advance!

  2. #2
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default Re: Moved to Cirtex, now conversions problems!

    I moved to another host last night but had several vshare sites working on cirtex. My sites were fully working and video conversion problems ceased (with no explanation) and right as that happened, I was in the process of moving everything to another host. However, the last thing is that everything was working on cirtex just before I changed the nameservers on my domains to the new host. So, with that said......

    Here's my .htaccess I have over there at cirtex:

    Code:
    AddType application/x-httpd-php5 .php5 .php
    Options +FollowSymLinks
    RewriteEngine on
    
    RewriteRule ^admin$ - [L]
    RewriteRule ^admin/(.*) - [L]
    RewriteRule ^install$ - [L]
    RewriteRule ^install/(.*) - [L]
    RewriteRule ^$ index.php
    RewriteRule ^view/(.*)/(.*)/ view_video.php?id=$1  [L,QSA]
    RewriteRule ^tag/(.*)/(.*) tag.php?search_id=$1&page=$2  [L,QSA]
    RewriteRule ^channel/(.*)/(.*)/recent/(.*) video.php?category=recent&chid=$1&page=$3
    RewriteRule ^channel/(.*)/(.*)/viewed/(.*) video.php?category=viewed&chid=$1&page=$3
    RewriteRule ^channel/(.*)/(.*)/ channel_detail.php?id=$1
    
    RewriteRule ^detailed/recent/(.*) video.php?category=recent&page=$1&viewtype=detailed
    RewriteRule ^detailed/viewed/(.*) video.php?category=viewed&page=$1&viewtype=detailed
    RewriteRule ^detailed/discussed/(.*) video.php?category=discussed&page=$1&viewtype=detailed
    RewriteRule ^detailed/favorites/(.*) video.php?category=favorites&page=$1&viewtype=detailed
    RewriteRule ^detailed/rated/(.*) video.php?category=rated&page=$1&viewtype=detailed
    RewriteRule ^detailed/featured/(.*) video.php?category=featured&page=$1&viewtype=detailed
    RewriteRule ^detailed/random/(.*) video.php?category=random&page=$1&viewtype=detailed
    RewriteRule ^recent/(.*) video.php?category=recent&page=$1
    RewriteRule ^viewed/(.*) video.php?category=viewed&page=$1
    RewriteRule ^discussed/(.*) video.php?category=discussed&page=$1
    RewriteRule ^favorites/(.*) video.php?category=favorites&page=$1
    RewriteRule ^rated/(.*) video.php?category=rated&page=$1
    RewriteRule ^featured/(.*) video.php?category=featured&page=$1
    RewriteRule ^random/(.*) video.php?category=random&page=$1
    RewriteRule ^rss/new/ rss.php?type=new [L]
    RewriteRule ^rss/comments/ rss.php?type=comments [L]
    RewriteRule ^rss/views/ rss.php?type=views [L]
    RewriteRule ^group/(.*)/members/(.*) group_members.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/videos/(.*) group_videos.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/add/(.*) add_video.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/fav/(.*) add_favour.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/topic/(.*) group_posts.php?urlkey=$1&tid=$2
    RewriteRule ^group/(.*)/invite/ invite_members.php?urlkey=$1 [L,QSA]
    RewriteRule ^group/(.*)/ groups_home.php?urlkey=$1  [L,QSA]
    RewriteRule ^groups/(.*)/(.*)/(.*) groups.php?chid=$1&page=$3
    RewriteRule ^groups/(.*)/(.*) groups.php?category=$1&page=$2
    RewriteRule ^include/(.*) http://www.vshare.in
    RewriteRule ^pages/(.*).html$ show_page.php?name=$1 [QSA,L]
    RewriteRule ^([^/\.]+)/favorites/(.*) user_favorites.php?username=$1&page=$2
    RewriteRule ^([^/\.]+)/playlist/(.*) playlist.php?username=$1&page=$2
    RewriteRule ^([^/\.]+)/friends/(.*) user_friends.php?username=$1&page=$2
    RewriteRule ^([^/\.]+)/public/(.*)$ user_videos.php?username=$1&type=public&page=$2
    RewriteRule ^([^/\.]+)/private/(.*)$ user_videos.php?username=$1&type=private&page=$2 [L,QSA]
    RewriteRule ^([^/\.]+)/groups/(.*)$ user_groups.php?username=$1&page=$2 [L,QSA]
    RewriteRule ^([^/\.]+)?/?$ user.php?username=$1 [L,QSA]
    
    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>
    
    <IfModule mod_gzip.c>
    mod_gzip_on No
    </IfModule>
    
    php_value upload_max_filesize 100M 
    php_value post_max_size 100M 
    php_value output_buffering on 
    php_value max_execution_time 1000 
    php_value max_input_time 1000 
    php_value session.gc_maxlifetime 14400 
    
    <IfModule mod_security.c>
    SecFilterEngine Off
    
    php_value max_execution_time 6000000
    php_value max_input_time 600000
    php_value output_buffering On
    
    RewriteEngine On
    
    #php_flag register_globals off
    Order allow,deny
    Allow from all 
    
    Options All -Indexes
    Did you also include a php.ini in the same place that the .htaccess exists?

    Here's my php.ini...not sure if all that stuff in there is necessary, but this worked for me:

    Code:
    Options +FollowSymLinks
    RewriteEngine on
    
    RewriteRule ^admin$ - [L]
    RewriteRule ^admin/(.*) - [L]
    RewriteRule ^install$ - [L]
    RewriteRule ^install/(.*) - [L]
    RewriteRule ^$ index.php
    RewriteRule ^view/(.*)/(.*)/ view_video.php?id=$1  [L,QSA]
    RewriteRule ^tag/(.*)/(.*) tag.php?search_id=$1&page=$2  [L,QSA]
    RewriteRule ^channel/(.*)/(.*)/recent/(.*) video.php?category=recent&chid=$1&page=$3
    RewriteRule ^channel/(.*)/(.*)/viewed/(.*) video.php?category=viewed&chid=$1&page=$3
    RewriteRule ^channel/(.*)/(.*)/ channel_detail.php?id=$1
    
    RewriteRule ^detailed/recent/(.*) video.php?category=recent&page=$1&viewtype=detailed
    RewriteRule ^detailed/viewed/(.*) video.php?category=viewed&page=$1&viewtype=detailed
    RewriteRule ^detailed/discussed/(.*) video.php?category=discussed&page=$1&viewtype=detailed
    RewriteRule ^detailed/favorites/(.*) video.php?category=favorites&page=$1&viewtype=detailed
    RewriteRule ^detailed/rated/(.*) video.php?category=rated&page=$1&viewtype=detailed
    RewriteRule ^detailed/featured/(.*) video.php?category=featured&page=$1&viewtype=detailed
    RewriteRule ^detailed/random/(.*) video.php?category=random&page=$1&viewtype=detailed
    RewriteRule ^recent/(.*) video.php?category=recent&page=$1
    RewriteRule ^viewed/(.*) video.php?category=viewed&page=$1
    RewriteRule ^discussed/(.*) video.php?category=discussed&page=$1
    RewriteRule ^favorites/(.*) video.php?category=favorites&page=$1
    RewriteRule ^rated/(.*) video.php?category=rated&page=$1
    RewriteRule ^featured/(.*) video.php?category=featured&page=$1
    RewriteRule ^random/(.*) video.php?category=random&page=$1
    RewriteRule ^rss/new/ rss.php?type=new [L]
    RewriteRule ^rss/comments/ rss.php?type=comments [L]
    RewriteRule ^rss/views/ rss.php?type=views [L]
    RewriteRule ^group/(.*)/members/(.*) group_members.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/videos/(.*) group_videos.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/add/(.*) add_video.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/fav/(.*) add_favour.php?urlkey=$1&page=$2
    RewriteRule ^group/(.*)/topic/(.*) group_posts.php?urlkey=$1&tid=$2
    RewriteRule ^group/(.*)/invite/ invite_members.php?urlkey=$1 [L,QSA]
    RewriteRule ^group/(.*)/ groups_home.php?urlkey=$1  [L,QSA]
    RewriteRule ^groups/(.*)/(.*)/(.*) groups.php?chid=$1&page=$3
    RewriteRule ^groups/(.*)/(.*) groups.php?category=$1&page=$2
    RewriteRule ^include/(.*) http://www.vshare.in
    RewriteRule ^pages/(.*).html$ show_page.php?name=$1 [QSA,L]
    RewriteRule ^([^/\.]+)/favorites/(.*) user_favorites.php?username=$1&page=$2
    RewriteRule ^([^/\.]+)/playlist/(.*) playlist.php?username=$1&page=$2
    RewriteRule ^([^/\.]+)/friends/(.*) user_friends.php?username=$1&page=$2
    RewriteRule ^([^/\.]+)/public/(.*)$ user_videos.php?username=$1&type=public&page=$2
    RewriteRule ^([^/\.]+)/private/(.*)$ user_videos.php?username=$1&type=private&page=$2 [L,QSA]
    RewriteRule ^([^/\.]+)/groups/(.*)$ user_groups.php?username=$1&page=$2 [L,QSA]
    RewriteRule ^([^/\.]+)?/?$ user.php?username=$1 [L,QSA]
    
    <IfModule mod_security.c>
    SecFilterEngine Off
    In the meantime, the nameservers for the new host have resolved and they transfered everything from cirtex to their server and I'm getting nothing but 500 Internal server errors on all vshare sites or mysql errors on my ecommerce sites. I'm in touch with tech support.... I hope they get it working by tonight or I'm asking for a refund and going back to cirtex.
    If it's not fun, stop doing it!

  3. #3
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default Re: Moved to Cirtex, now conversions problems!

    UPDATE
    Things are back to normal and working just fine. It was a matter of tweaking .htaccess and restoring the databases (they didn't restore the databases when they moved my stuff). I am using the posted .htaccess and php.ini with the new host and things are working fine.

    So, ramius....have you tried the htaccess and php.ini I posted? I know for sure that it worked for me on cirtex.
    If it's not fun, stop doing it!

  4. #4
    Join Date
    Jan 2008
    Posts
    216

    Default Re: Moved to Cirtex, now conversions problems!

    Thank you, I also solved all the problem last week, now everything is working1 ;)

  5. #5
    Join Date
    May 2007
    Location
    Planet Earth
    Posts
    1,389

    Default Re: Moved to Cirtex, now conversions problems!

    Excellent.

    It has been very rough-going at my new host to say the least, but today things seem to be running smoothly and so far no outages today. That past 2 weeks have been insane. I am giving the new host until Friday to see how things go. If all is well before my 45 day trial period is over, then I'll probably stay...but if issues keep cropping up then I'll go back to Cirtex.
    If it's not fun, stop doing it!

Similar Threads

  1. Moving to cirtex
    By GARKIM in forum Installation Support
    Replies: 6
    Last Post: 08-03-2009, 04:03 AM
  2. moved to a new server import do not work
    By bhanuprasad1981 in forum Installation Support
    Replies: 8
    Last Post: 03-31-2009, 06:25 PM
  3. DON'T USE CIRTEX HOSTING AT ALL!!!!
    By ramius in forum General Discussions
    Replies: 6
    Last Post: 05-30-2008, 02:55 AM
  4. site messed up after cirtex hosting moved it
    By harvey in forum General Discussions
    Replies: 1
    Last Post: 09-13-2007, 10:09 PM
  5. somebody using cirtex hosting?
    By paolo in forum Installation Support
    Replies: 7
    Last Post: 05-26-2007, 03:30 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •